diff --git a/.eslintignore b/.eslintignore index 53d45fbf5..121ed2ed4 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,5 +4,6 @@ test.js bench.js packages/turf/turf.js packages/turf/turf.min.js +marchingsquares-isobands.js rollup.config.js simplepolygon.js diff --git a/packages/turf-isobands/LICENSE b/packages/turf-isobands/LICENSE new file mode 100644 index 000000000..f3f1eedc5 --- /dev/null +++ b/packages/turf-isobands/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 turf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-isobands/README.md b/packages/turf-isobands/README.md new file mode 100644 index 000000000..edd3817d6 --- /dev/null +++ b/packages/turf-isobands/README.md @@ -0,0 +1,59 @@ +# turf-isobands + +# isobands + +Takes a grid [FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects) of [Point](http://geojson.org/geojson-spec.html#point) features with z-values and an array of +value breaks and generates filled contour isobands. + +**Parameters** + +- `points` **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Point](http://geojson.org/geojson-spec.html#point)>** a FeatureCollection of [Point](http://geojson.org/geojson-spec.html#point) features +- `breaks` **[Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)<[number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)>** where to draw contours +- `zProperty` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)** the property name in `points` from which z-values will be pulled (optional, default `'elevation'`) + - `options` **[Object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object)** options on output + + `isobandProperties` **[Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)<[Object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object)>** GeoJSON properties passed, in order, to the correspondent isoband (order defined by breaks) + + `commonProperties` **[Object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object)** GeoJSON properties passed to ALL isobands + +**Examples** + +```javascript +// create random points with random +// z-values in their properties +var extent = [-70.823364, -33.553984, -69.823364, -32.553984]; +var cellWidth = 5; +var units = 'miles'; +var pointGrid = turf.pointGrid(extent, cellWidth, units); +for (var i = 0; i < pointGrid.features.length; i++) { + pointGrid.features[i].properties.elevation = Math.random() * 10; +} +var breaks = [0, 5, 8.5]; +var isobands = turf.isobands(pointGrid, breaks, 'elevation'); +//=isobands +``` + +Returns **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[MultiPolygon](http://geojson.org/geojson-spec.html#multipolygon)>** a FeatureCollection of [MultiPolygon](http://geojson.org/geojson-spec.html#multipolygon) features representing isobands + + + +--- + +This module is part of the [Turfjs project](http://turfjs.org/), an open source +module collection dedicated to geographic algorithms. It is maintained in the +[Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create +PRs and issues. + +### Installation + +Install this module individually: + +```sh +$ npm install turf-isobands +``` + +Or install the Turf module that includes it as a function: + +```sh +$ npm install @turf/turf +``` diff --git a/packages/turf-isobands/bench.js b/packages/turf-isobands/bench.js new file mode 100644 index 000000000..3c5dc5cde --- /dev/null +++ b/packages/turf-isobands/bench.js @@ -0,0 +1,64 @@ +const path = require('path'); +const Benchmark = require('benchmark'); +const load = require('load-json-file'); +const fs = require('fs'); +const matrixToGrid = require('matrix-to-grid'); +const isobands = require('./'); + +// Define Fixtures +const directory = path.join(__dirname, 'test', 'in') + path.sep; +const fixtures = fs.readdirSync(directory).map(filename => { + return { + filename, + name: path.parse(filename).name, + jsondata: load.sync(directory + filename) + }; +}); + +/** + * Benchmark Results + * + * bigMatrix x 73.43 ops/sec ±2.12% (62 runs sampled) + * matrix1 x 5,205 ops/sec ±3.13% (78 runs sampled) + * matrix2 x 2,333 ops/sec ±9.38% (71 runs sampled) + * pointGrid x 3,201 ops/sec ±1.81% (78 runs sampled) + */ +const suite = new Benchmark.Suite('turf-isobands'); +for (const {name, jsondata, filename} of fixtures) { + + let breaks, points, zProperty, isobandProperties, commonProperties; + // allow geojson featureCollection... + if (filename.includes('geojson')) { + breaks = jsondata.properties.breaks; + zProperty = jsondata.properties.zProperty; + commonProperties = jsondata.properties.commonProperties; + isobandProperties = jsondata.properties.isobandProperties; + points = jsondata; + } else { + // ...or matrix input + const matrix = jsondata.matrix; + const cellSize = jsondata.cellSize; + const origin = jsondata.origin; + breaks = jsondata.breaks; + zProperty = jsondata.zProperty; + points = matrixToGrid(matrix, origin, cellSize, {zProperty, units: jsondata.units}); + commonProperties = jsondata.commonProperties; + isobandProperties = jsondata.isobandProperties; + } + + isobands(points, breaks, zProperty, { + commonProperties, + isobandProperties + }); + + // isobands(geojson, 'elevation', [5, 45, 55, 65, 85, 95, 105, 120, 180]); + suite.add(name, () => isobands(points, breaks, zProperty, { + commonProperties, + isobandProperties + }) + ); +} +suite + .on('cycle', e => console.log(String(e.target))) + .on('complete', () => {}) + .run(); diff --git a/packages/turf-isobands/index.d.ts b/packages/turf-isobands/index.d.ts new file mode 100644 index 000000000..67a422437 --- /dev/null +++ b/packages/turf-isobands/index.d.ts @@ -0,0 +1,8 @@ +import {Points, MultiPolygons} from '@turf/helpers' + +/** + * http://turfjs.org/docs/#isobands + */ +declare function isobands(points: Points, breaks: Array, property?: string): MultiPolygons; +declare namespace isobands { } +export = isobands; diff --git a/packages/turf-isobands/index.js b/packages/turf-isobands/index.js new file mode 100644 index 000000000..c38b61437 --- /dev/null +++ b/packages/turf-isobands/index.js @@ -0,0 +1,271 @@ +var marchingsquares = require('marchingsquares'); +var helpers = require('@turf/helpers'); +var featureCollection = helpers.featureCollection; +var polygon = helpers.polygon; +var multiPolygon = helpers.multiPolygon; +var explode = require('@turf/explode'); +var inside = require('@turf/inside'); +var area = require('@turf/area'); +var invariant = require('@turf/invariant'); +var collectionOf = invariant.collectionOf; +var bbox = require('@turf/bbox'); +var gridToMatrix = require('grid-to-matrix'); + +/** + * Takes a grid {@link FeatureCollection} of {@link Point} features with z-values and an array of + * value breaks and generates filled contour isobands. + * + * @name isobands + * @param {FeatureCollection} points a FeatureCollection of {@link Point} features + * @param {Array} breaks where to draw contours + * @param {string} [zProperty='elevation'] the property name in `points` from which z-values will be pulled + * @param {Object} [options={}] options on output + * @param {Array} [options.isobandProperties=[]] GeoJSON properties passed, in order, to the correspondent + * isoband (order defined by breaks) + * @param {Object} [options.commonProperties={}] GeoJSON properties passed to ALL isobands + * @returns {FeatureCollection} a FeatureCollection of {@link MultiPolygon} features representing isobands + * @example + * // create random points with random + * // z-values in their properties + * var extent = [-70.823364, -33.553984, -69.823364, -32.553984]; + * var cellWidth = 5; + * var units = 'miles'; + * var pointGrid = turf.pointGrid(extent, cellWidth, units); + * for (var i = 0; i < pointGrid.features.length; i++) { + * pointGrid.features[i].properties.elevation = Math.random() * 10; + * } + * var breaks = [0, 5, 8.5]; + * var isobands = turf.isobands(pointGrid, breaks, 'temp'); + * + * //addToMap + * var addToMap = [isobands]; + */ +module.exports = function (points, breaks, zProperty, options) { + // Input validation + var isObject = function (input) { + return (!!input) && (input.constructor === Object); + }; + collectionOf(points, 'Point', 'Input must contain Points'); + if (!breaks || !Array.isArray(breaks)) throw new Error('breaks is required'); + if (options.commonProperties && !isObject(options.commonProperties)) { + throw new Error('commonProperties is not an Object'); + } + if (options.isobandProperties && !Array.isArray(options.isobandProperties)) { + throw new Error('isobandProperties is not an Array'); + } + if (zProperty && typeof zProperty !== 'string') { throw new Error('zProperty is not a string'); } + + zProperty = zProperty || 'elevation'; + options = options || {}; + var commonProperties = options.commonProperties || {}; + var isobandProperties = options.isobandProperties || []; + + // Isoband methods + var matrix = gridToMatrix(points, zProperty, true); + var contours = createContourLines(matrix, breaks, zProperty); + contours = rescaleContours(contours, matrix, points); + + var multipolygons = contours.map(function (contour, index) { + if (isobandProperties[index] && !isObject(isobandProperties[index])) { + throw new Error('Each mappedProperty is required to be an Object'); + } + // collect all properties + var contourProperties = Object.assign( + {}, + commonProperties, + isobandProperties[index] + ); + contourProperties[zProperty] = contour[zProperty]; + var multiP = multiPolygon(contour.groupedRings, contourProperties); + return multiP; + }); + + return featureCollection(multipolygons); +}; + +/** + * Creates the contours lines (featuresCollection of polygon features) from the 2D data grid + * + * Marchingsquares process the grid data as a 3D representation of a function on a 2D plane, therefore it + * assumes the points (x-y coordinates) are one 'unit' distance. The result of the IsoBands function needs to be + * rescaled, with turfjs, to the original area and proportions on the map + * + * @private + * @param {Array>} matrix Grid Data + * @param {Array} breaks Breaks + * @param {string} [property='elevation'] Property + * @returns {Array} contours + */ +function createContourLines(matrix, breaks, property) { + + var contours = []; + for (var i = 1; i < breaks.length; i++) { + var lowerBand = +breaks[i - 1]; // make sure the breaks value is a number + var upperBand = +breaks[i]; + + var isobandsCoords = marchingsquares.isoBands(matrix, lowerBand, upperBand - lowerBand); + // as per GeoJson rules for creating a Polygon, make sure the first element + // in the array of LinearRings represents the exterior ring (i.e. biggest area), + // and any subsequent elements represent interior rings (i.e. smaller area); + // this avoids rendering issues of the MultiPolygons on the map + var nestedRings = orderByArea(isobandsCoords); + var groupedRings = groupNestedRings(nestedRings); + var obj = {}; + obj['groupedRings'] = groupedRings; + obj[property] = lowerBand + '-' + upperBand; + contours.push(obj); + } + return contours; +} + +/** + * Transform isobands of 2D grid to polygons for the map + * + * @private + * @param {Array} contours Contours + * @param {Array>} matrix Grid Data + * @param {Object} points Points by Latitude + * @returns {Array} contours + */ +function rescaleContours(contours, matrix, points) { + + // get dimensions (on the map) of the original grid + var gridBbox = bbox(points); // [ minX, minY, maxX, maxY ] + var originalWidth = gridBbox[2] - gridBbox[0]; + var originalHeigth = gridBbox[3] - gridBbox[1]; + + // get origin, which is the first point of the last row on the rectangular data on the map + var x0 = gridBbox[0]; + var y0 = gridBbox[1]; + // get number of cells per side + var matrixWidth = matrix[0].length - 1; + var matrixHeight = matrix.length - 1; + // calculate the scaling factor between matrix and rectangular grid on the map + var scaleX = originalWidth / matrixWidth; + var scaleY = originalHeigth / matrixHeight; + + var resize = function (point) { + point[0] = point[0] * scaleX + x0; + point[1] = point[1] * scaleY + y0; + }; + + // resize and shift each point/line of the isobands + contours.forEach(function (contour) { + contour.groupedRings.forEach(function (lineRingSet) { + lineRingSet.forEach(function (lineRing) { + lineRing.forEach(resize); + }); + }); + }); + return contours; +} + + +/* utility functions */ + + +/** + * Returns an array of coordinates (of LinearRings) in descending order by area + * + * @private + * @param {Array} ringsCoords array of closed LineString + * @returns {Array} array of the input LineString ordered by area + */ +function orderByArea(ringsCoords) { + var ringsWithArea = []; + var areas = []; + ringsCoords.forEach(function (coords) { + // var poly = polygon([points]); + var ringArea = area(polygon([coords])); + // create an array of areas value + areas.push(ringArea); + // associate each lineRing with its area + ringsWithArea.push({ring: coords, area: ringArea}); + }); + areas.sort(function (a, b) { // bigger --> smaller + return b - a; + }); + // create a new array of linearRings coordinates ordered by their area + var orderedByArea = []; + areas.forEach(function (area) { + for (var lr = 0; lr < ringsWithArea.length; lr++) { + if (ringsWithArea[lr].area === area) { + orderedByArea.push(ringsWithArea[lr].ring); + ringsWithArea.splice(lr, 1); + break; + } + } + }); + return orderedByArea; +} + +/** + * Returns an array of arrays of coordinates, each representing + * a set of (coordinates of) nested LinearRings, + * i.e. the first ring contains all the others + * + * @private + * @param {Array} orderedLinearRings array of coordinates (of LinearRings) in descending order by area + * @returns {Array} Array of coordinates of nested LinearRings + */ +function groupNestedRings(orderedLinearRings) { + // create a list of the (coordinates of) LinearRings + var lrList = orderedLinearRings.map(function (lr) { + return {lrCoordinates: lr, grouped: false}; + }); + var groupedLinearRingsCoords = []; + while (!allGrouped(lrList)) { + for (var i = 0; i < lrList.length; i++) { + if (!lrList[i].grouped) { + // create new group starting with the larger not already grouped ring + var group = []; + group.push(lrList[i].lrCoordinates); + lrList[i].grouped = true; + var outerMostPoly = polygon([lrList[i].lrCoordinates]); + // group all the rings contained by the outermost ring + for (var j = i + 1; j < lrList.length; j++) { + if (!lrList[j].grouped) { + var lrPoly = polygon([lrList[j].lrCoordinates]); + if (isInside(lrPoly, outerMostPoly)) { + group.push(lrList[j].lrCoordinates); + lrList[j].grouped = true; + } + } + } + // insert the new group + groupedLinearRingsCoords.push(group); + } + } + } + return groupedLinearRingsCoords; +} + +/** + * @private + * @param {Polygon} testPolygon polygon of interest + * @param {Polygon} targetPolygon polygon you want to compare with + * @returns {boolean} true if test-Polygon is inside target-Polygon + */ +function isInside(testPolygon, targetPolygon) { + var points = explode(testPolygon); + for (var i = 0; i < points.features.length; i++) { + if (!inside(points.features[i], targetPolygon)) { + return false; + } + } + return true; +} + +/** + * @private + * @param {Array} list list of objects which might contain the 'group' attribute + * @returns {boolean} true if all the objects in the list are marked as grouped + */ +function allGrouped(list) { + for (var i = 0; i < list.length; i++) { + if (list[i].grouped === false) { + return false; + } + } + return true; +} diff --git a/packages/turf-isobands/package.json b/packages/turf-isobands/package.json new file mode 100644 index 000000000..5172f892c --- /dev/null +++ b/packages/turf-isobands/package.json @@ -0,0 +1,56 @@ +{ + "name": "turf-isobands", + "version": "3.0.0", + "description": "turf isobands module", + "main": "index.js", + "types": "index.d.ts", + "files": [ + "index.js", + "index.d.ts", + "marchingsquares-isobands.js" + ], + "scripts": { + "test": "node test.js", + "bench": "node bench.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf.git" + }, + "keywords": [ + "turf", + "geojson", + "contours", + "isobands", + "elevation", + "topography", + "filled" + ], + "author": "stebogit", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf/issues" + }, + "homepage": "https://github.com/Turfjs/turf", + "devDependencies": { + "@turf/envelope": "4.2.0", + "@turf/point-grid": "^3.14.0", + "@turf/random": "^3.13.0", + "benchmark": "^2.1.3", + "chroma-js": "1.3.3", + "load-json-file": "^2.0.0", + "matrix-to-grid": "3.0.0", + "tape": "^4.6.3", + "write-json-file": "^2.0.0" + }, + "dependencies": { + "@turf/area": "^3.7.0", + "@turf/bbox": "^3.14.0", + "@turf/explode": "^3.7.0", + "@turf/helpers": "^3.6.3", + "@turf/inside": "^3.7.0", + "@turf/invariant": "^3.13.0", + "grid-to-matrix": "^1.2.0", + "marchingsquares": "^1.2.0" + } +} diff --git a/packages/turf-isobands/test.js b/packages/turf-isobands/test.js new file mode 100644 index 000000000..dded0438a --- /dev/null +++ b/packages/turf-isobands/test.js @@ -0,0 +1,76 @@ +const test = require('tape'); +const path = require('path'); +const fs = require('fs'); +const load = require('load-json-file'); +const write = require('write-json-file'); +const random = require('@turf/random'); +const envelope = require('@turf/envelope'); +const helpers = require('@turf/helpers'); +const lineString = helpers.lineString; +const getCoords = require('@turf/invariant').getCoords; +const matrixToGrid = require('matrix-to-grid'); +const pointGrid = require('@turf/point-grid'); +const isobands = require('./'); + +const directories = { + in: path.join(__dirname, 'test', 'in') + path.sep, + out: path.join(__dirname, 'test', 'out') + path.sep +}; + +const fixtures = fs.readdirSync(directories.in).map(filename => { + return { + filename, + name: path.parse(filename).name, + jsondata: load.sync(directories.in + filename) + }; +}); + +test('isobands', t => { + fixtures.forEach(({name, jsondata, filename}) => { + + let breaks, points, zProperty, isobandProperties, commonProperties; + // allow geojson featureCollection... + if (filename.includes('geojson')) { + breaks = jsondata.properties.breaks; + zProperty = jsondata.properties.zProperty; + commonProperties = jsondata.properties.commonProperties; + isobandProperties = jsondata.properties.isobandProperties; + points = jsondata; + } else { + // ...or matrix input + const matrix = jsondata.matrix; + const cellSize = jsondata.cellSize; + const origin = jsondata.origin; + breaks = jsondata.breaks; + zProperty = jsondata.zProperty; + points = matrixToGrid(matrix, origin, cellSize, { zProperty, units: jsondata.units }); + commonProperties = jsondata.commonProperties; + isobandProperties = jsondata.isobandProperties; + } + + const results = isobands(points, breaks, zProperty, { + commonProperties, + isobandProperties + }); + + const box = lineString(getCoords(envelope(points))[0]); + box.properties['stroke'] = '#F00'; + box.properties['stroke-width'] = 1; + results.features.push(box); + + if (process.env.REGEN) write.sync(directories.out + filename, results); + t.deepEqual(results, load.sync(directories.out + filename), name); + }); + + t.end(); +}); + +test('isobands -- throws', t => { + const points = pointGrid([-70.823364, -33.553984, -70.473175, -33.302986], 5); + + t.throws(() => isobands(random('polygon'), [1, 2, 3]), 'invalid points'); + t.throws(() => isobands(points, ''), 'invalid breaks'); + t.throws(() => isobands(points, [1, 2, 3], 'temp', { isobandProperties: 'hello' }), 'invalid options'); + + t.end(); +}); diff --git a/packages/turf-isobands/test/in/bigMatrix.json b/packages/turf-isobands/test/in/bigMatrix.json new file mode 100644 index 000000000..e0ce5d81e --- /dev/null +++ b/packages/turf-isobands/test/in/bigMatrix.json @@ -0,0 +1,33 @@ +{ + "origin": [ 6.5, 46 ], + "cellSize": 10, + "breaks": [0, 0.24, 0.5, 1.5, 2.5, 100], + "zProperty": "pressure", + "commonProperties": { + "stroke-width": 4, + "fill-opacity": 0.4 + }, + "isobandProperties": [ + { + "stroke": "grey", + "fill": "grey" + }, + { + "stroke": "blue", + "fill": "blue" + }, + { + "stroke": "green", + "fill": "green" + }, + { + "stroke": "yellow", + "fill": "yellow" + }, + { + "stroke": "red", + "fill": "red" + } + ], + "matrix": [[0.754816323768,0.0192104697805,0.0755640895933,0.162215587333,0.267950411633,0.380900771041,0.491544382473,0.593906626031,0.685266592708,0.765202340943,0.834615850466,0.895008654071,0.948034954329,0.995264760092,1.03807922487,1.07763915535,1.1148893148,1.15057748954,1.18527770736,1.21941299466,1.25327620796,1.28704892645,1.32081889084,1.35459648117,1.38833052607,1.42192349543,1.45524594313,1.4881499762,1.52048153551,1.55209136178,1.58284465416,1.61262956931,1.64136481734,1.66900665389,1.69555551758,1.72106240417,1.74563480623,1.76944170768,1.79271677157,1.815758593,1.83892683251,1.86263330886,1.88732776844,1.91347899987,1.94155302698,1.97199098527,2.00518965296,2.04148728682,2.08115644818,2.12440417382,2.17137854124,2.22217975027,2.27687346733,2.33550432796,2.39810799098,2.46472076518,2.53538640645,2.61016010681,2.68910994092,2.77231611964,2.85986836779,2.95186163737,3.04839022734,3.14954023961,3.2553801885,3.36594952824,3.48124489906,3.60120404326,3.72568762201,3.85445956725,3.98716710137,4.12332208928,4.26228586482,4.40325998761,4.54528542294,4.68725230409,4.82792168542,4.96595955259,5.09998193596,5.22860847339,5.35052044051,5.46451836937,5.56957411184,5.66487266244,5.74984018447,5.82415629486,5.88775047397,5.94078416729,5.98362147499,6.01679211687,6.04095057545,6.05683502667,6.06522901002,6.06692794183,6.06271169478,6.05332367777],[0.0190236070377,0.0385999271506,0.0947957400738,0.180524048614,0.284354871517,0.39438504785,0.501273442842,0.599359856829,0.686256401169,0.761815524864,0.827128435869,0.883807556173,0.933559660473,0.977969770145,1.01841280298,1.05603292629,1.09175397163,1.12630111673,1.16022445572,1.19392090141,1.22765378699,1.26157074476,1.2957206964,1.33007057339,1.364522001,1.39892781263,1.43310801472,1.46686473476,1.49999574718,1.53230634678,1.56361957456,1.59378504098,1.62268678373,1.65025069457,1.67645201114,1.70132316613,1.72496190488,1.74753904943,1.7693046771,1.79059094408,1.81180952501,1.83344188445,1.85602149532,1.88010863445,1.90626020702,1.93499863326,1.96678456493,2.00199770408,2.04092833787,2.08377990849,2.13068076686,2.18170184982,2.23687663917,2.29622026442,2.35974561448,2.4274754117,2.49945008841,2.57573187067,2.6564057268,2.74157785488,2.83137224858,2.92592566526,3.0253810736,3.1298794166,3.2395493235,3.35449427841,3.47477674743,3.60039892071,3.73128007393,3.86723110113,4.00792748809,4.15288280778,4.30142560185,4.45268310435,4.60557548418,4.75882397008,4.91097527253,5.06044313902,5.20556581785,5.34467595263,5.47617737915,5.59862186856,5.71077839461,5.81168815837,5.90070030622,5.97748571974,6.04202897785,6.09460109447,6.13571750575,6.16608678652,6.18655568627,6.19805544231,6.20155320662,6.19801109809,6.18835410471,6.17344697778],[0.0740492769371,0.093829427076,0.14735600539,0.227811443267,0.32446389556,0.426278918138,0.524706373396,0.614664625462,0.694112379507,0.763061806146,0.82263908342,0.874420721412,0.920044959285,0.961019544951,0.998646535999,1.03400747738,1.06797487086,1.10123197939,1.13429296376,1.1675208765,1.2011437201,1.23526973067,1.26990302393,1.30496024613,1.3402882535,1.37568232319,1.41090409367,1.44569837545,1.4798081343,1.5129872635,1.54501115006,1.57568542778,1.60485362843,1.63240463143,1.6582808148,1.68248757152,1.70510433536,1.72629645476,1.7463262401,1.76556048576,1.78447107479,1.80362534186,1.82366407028,1.84526740536,1.86911212982,1.89582668208,1.92595179694,1.95991388127,1.99801528304,2.04044152356,2.08728185593,2.13855738396,2.1942507913,2.25433303816,2.31878433954,2.38760858032,2.46084162166,2.53855462467,2.62085368555,2.70787692614,2.79978987086,2.89677956499,2.99904749995,3.10680103837,3.22024270479,3.33955646982,3.46489006787,3.59633251962,3.73388644168,3.87743544859,4.02670796628,4.18123999189,4.3403405859,4.5030649331,4.66820037683,4.83427063856,4.9995622783,5.16217528189,5.32009665708,5.47129250424,5.61381082343,5.74588501518,5.86602720876,5.97310149718,6.06636976417,6.14550655243,6.21058357753,6.26202821892,6.30056296543,6.32713402293,6.34283712723,6.34884735303,6.34635782586,6.33653019051,6.32045782881,6.29914136679],[0.157034978462,0.17658032134,0.22517427108,0.296713566809,0.381907932596,0.471303323761,0.557602347409,0.636484575319,0.706242706617,0.766940910261,0.819607348834,0.865660049868,0.906569598921,0.94369246162,0.978206056181,1.01109554936,1.04316205088,1.07503646033,1.10719248999,1.13995761741,1.17352317516,1.20795543948,1.24320917345,1.27914418601,1.31554451703,1.35213913284,1.38862265798,1.42467468981,1.45997657344,1.49422504368,1.52714275156,1.55848628769,1.58805281336,1.61568674362,1.64128802301,1.66482330389,1.68634068452,1.70598751476,1.72402916098,1.74086476564,1.75703446036,1.77321198941,1.79017812237,1.80877400608,1.8298391731,1.85414451071,1.88233363434,1.91488493308,1.95210109621,1.99412537408,2.04097732202,2.09259763188,2.14889225697,2.20976911286,2.27516436332,2.34505830981,2.41948265417,2.4985215146,2.58230844199,2.6710211947,2.7648754362,2.86411793201,2.96901926519,3.07986556009,3.19694821238,3.3205502181,3.45092746024,3.58828336202,3.73273576252,3.88427579133,4.04271991984,4.20765815352,4.37840328595,4.55394792754,4.7329372169,4.91366525692,5.0941019971,5.27195433642,5.44476082914,5.61001415125,5.76530041222,5.90844062421,6.03761817431,6.15147751541,6.24918334707,6.33043545858,6.39544085449,6.44485040587,6.4796710187,6.50116571521,6.51075323742,6.5099164165,6.50012541687,6.48277880907,6.45916277822,6.43042688849],[0.255539967582,0.274105267923,0.316142519243,0.37652813048,0.447790344706,0.522401720013,0.594540601807,0.660734463541,0.719597973044,0.771184232905,0.81634481069,0.856264948132,0.892186153575,0.925267613017,0.956531235552,0.986848370649,1.01694214946,1.0473921757,1.0786369509,1.11097447506,1.1445637063,1.17942978874,1.21547494117,1.25249536236,1.29020304219,1.32825035918,1.36625495163,1.40382253727,1.44056597093,1.47611968144,1.51014954935,1.54235915468,1.57249406068,1.60034634509,1.62576186709,1.64865263751,1.66901595208,1.68696043682,1.70273671035,1.71676715126,1.72966597268,1.74223883604,1.75545241148,1.77037001303,1.78805932439,1.80948915725,1.83543897712,1.8664432107,1.90278185216,1.94451434684,1.99154200092,2.04367980399,2.10072152925,2.16248887872,2.22886236619,2.29979627736,2.37532202978,2.45554432532,2.54063362358,2.63081737419,2.72637146094,2.82761249247,2.93489085883,3.04858378088,3.16908688369,3.29680217167,3.43211979799,3.57539088492,3.72688906127,3.88675949882,4.0549561148,4.23117017895,4.41475656177,4.60466682759,4.79940066983,4.99698804347,5.19501304043,5.39068663082,5.58096897108,5.76273391892,5.93296025754,6.0889278582,6.22839437016,6.34973001552,6.45199448581,6.53494936058,6.59900965298,6.64514668694,6.67475981172,6.68953583034,6.69131292358,6.68196150139,6.66328923844,6.63697275763,6.60451474656,6.56722297228],[0.356595980746,0.373250225721,0.407870901979,0.456380389165,0.513129362205,0.572497876591,0.630126416182,0.683384527264,0.731201872661,0.77360647909,0.811252273638,0.845067066976,0.876039513977,0.905112797542,0.933142751588,0.960885914704,0.988995407408,1.01801396216,1.04836199261,1.08032380146,1.11403707659,1.14949033478,1.18653088455,1.22488324232,1.26417564807,1.30397093367,1.34379764677,1.38317786018,1.42164918526,1.45877983592,1.49417691891,1.52748932496,1.55840761583,1.58666413066,1.6120371199,1.63436290022,1.65355949033,1.66966346133,1.68287831636,1.69362743015,1.70259814703,1.71075826192,1.71932550808,1.72967870743,1.74321683291,1.76119419184,1.78457519647,1.81395002548,1.84953139295,1.89122338459,1.9387315827,1.99167867928,2.04969929224,2.11250275563,2.17990507835,2.25183770558,2.32834195952,2.40955645941,2.49570247922,2.58707018102,2.68400724157,2.78691041866,2.89621981735,3.01241479734,3.13600952146,3.26754512992,3.40757461808,3.5566359859,3.71520944848,3.88365574908,4.06213506682,4.25050962725,4.44823761648,4.65427078667,4.86697230959,5.08407376457,5.30268930745,5.51940003923,5.73041223207,5.93178053132,6.11967402461,6.29065246494,6.44191512006,6.57148759078,6.6783222797,6.76230354021,6.82416493125,6.86533934692,6.88777023642,6.8937128895,6.88555002063,6.86563801002,6.83619168557,6.7992083594,6.75642691151,6.70931512351],[0.449936181049,0.463751877347,0.490741367556,0.527796135674,0.570852467511,0.615941322666,0.659989091157,0.70112933377,0.738594371018,0.772401395023,0.803022375779,0.831135227847,0.857475874242,0.882769839313,0.907709886876,0.932949858718,0.959095050922,0.986680922234,1.01614159504,1.04777570866,1.0817190819,1.11793184984,1.15620367431,1.1961760554,1.23737717384,1.27926284486,1.3212570846,1.36278700383,1.40330862187,1.44232220683,1.47937758131,1.51407137951,1.54603954211,1.5749494892,1.60049746343,1.62241735389,1.64050744538,1.65468012112,1.66503536402,1.67195084807,1.67616957488,1.67885331198,1.68156351441,1.68614059594,1.69448329786,1.70827518672,1.72874103521,1.75651458327,1.7916547097,1.83378515095,1.88229159969,1.93650806584,1.99585119825,2.05989332217,2.1283858822,2.20125180287,2.27856298338,2.3605137227,2.44739597783,2.53957918278,2.63749568849,2.74163204725,2.85252572954,2.97076601209,3.0969965492,3.23191559251,3.37626822674,3.53082378709,3.69633137264,3.8734475946,4.06263374963,4.26402454545,4.47727706315,4.7014161604,4.93469980904,5.17453304288,5.41745987812,5.65925657399,5.89513606258,6.12005372915,6.32908293554,6.51781045593,6.68269308109,6.8213207171,6.93254825244,7.01648399375,7.07434941943,7.10824602454,7.12087532057,7.11525679987,7.09447866827,7.06150203909,7.01902553045,6.96940673673,6.91463087409,6.85631458234],[0.529333176276,0.539533681044,0.559091988372,0.585724792152,0.616631682569,0.649152934089,0.681257573747,0.711726174088,0.740068875987,0.766310206274,0.790765009828,0.813875870608,0.836128936884,0.858031104983,0.880117505257,0.902958947093,0.927148914462,0.953263713228,0.981802594559,1.01312319252,1.04738944341,1.08454483166,1.12431594375,1.16624326707,1.20973055029,1.25410185187,1.2986561937,1.34271231556,1.38563919818,1.42687097662,1.46590724542,1.50230156652,1.53564245308,1.56553253133,1.5915732424,1.61336436073,1.63052929442,1.64277727933,1.65000980263,1.65246776142,1.6508957007,1.64667217308,1.64183229748,1.63891206114,1.64059562363,1.64924222232,1.66645672845,1.69287408334,1.72822887128,1.77164277506,1.82198276261,1.87815928742,1.93930554193,2.00484481547,2.07448389782,2.14817120363,2.2260458627,2.30839110539,2.39559681031,2.48813210144,2.58652770329,2.69136770495,2.80329030323,2.9229963795,3.0512632003,3.18895820861,3.33704516736,3.49657250068,3.66863244931,3.85428051837,4.05440827967,4.26956909133,4.49976553507,4.74421879982,5.00115257448,5.26763455505,5.53952318663,5.81156117343,6.077637996,6.33121268897,6.56585178198,6.77580548543,6.95652843243,7.10505681124,7.22018198483,7.30240410538,7.35369455012,7.37712968104,7.37647217381,7.35576965261,7.31901999177,7.26992753385,7.21175245059,7.14724077233,7.0786157998,7.00761089131],[0.592269610438,0.598285011829,0.610803101305,0.628212377784,0.648673111774,0.670516066207,0.692519187426,0.713990477114,0.734685663434,0.754646032321,0.774042687401,0.793081184085,0.811980586141,0.831008579849,0.85053585689,0.871070551259,0.893245482376,0.917751871274,0.945234859361,0.976180362592,1.01082471349,1.04910893406,1.09068396253,1.13495876991,1.18117478771,1.22848832576,1.27604576059,1.32304147959,1.36875376179,1.41255789688,1.45391866271,1.49236607067,1.52745958302,1.55874746038,1.58573016155,1.60784023018,1.62445567891,1.63496800233,1.63892580372,1.63626387955,1.62759714812,1.61450524401,1.59967071709,1.58670682605,1.57958670088,1.58178826916,1.59549352099,1.62122131307,1.65803888687,1.70416706224,1.75763960688,1.81676789297,1.88034866398,1.94768026494,2.01848341882,2.09279747653,2.17088753798,2.25317309703,2.3401773028,2.43249304099,2.53076306184,2.63567321285,2.74795887945,2.86842434548,2.99797280252,3.13764129975,3.2886305001,3.45231463971,3.63021401722,3.82391223149,4.03490429773,4.26436995952,4.51287886287,4.78005080037,5.0642143933,5.36212800719,5.66883992665,5.97776130608,6.2809985657,6.56994274784,6.83605202046,7.07170715235,7.27098770075,7.43022336042,7.54822279542,7.62615788281,7.66715947393,7.67573570533,7.65714093231,7.61680428849,7.55988611442,7.49098608811,7.41399233514,7.33204156654,7.24755497775,7.16231835297],[0.638839378139,0.640286548119,0.646182840122,0.655455261978,0.666987338569,0.679854547074,0.693463644757,0.707558545629,0.722116588106,0.737198925984,0.752826180429,0.768930943744,0.785403200854,0.802205452744,0.819504538294,0.837758110962,0.857709642033,0.880281112852,0.90639290469,0.936767889968,0.971779051589,1.01137833469,1.05511255002,1.10220605365,1.15167816811,1.20246481651,1.25352249222,1.30390263451,1.35279251566,1.39952399627,1.44355432105,1.48442430021,1.52169970687,1.55490259965,1.58344176694,1.60655682116,1.62329946137,1.63258731782,1.63337604588,1.62499247399,1.60763530717,1.58295694094,1.55449037601,1.52755397001,1.50833362158,1.50226587969,1.51244671176,1.53897388219,1.57953869864,1.6307378713,1.68929275262,1.75272396997,1.81950162493,1.88890336985,1.96078863387,2.03539776446,2.11320716089,2.19483451955,2.28097896646,2.37238389531,2.46981652762,2.57406338711,2.68594360685,2.80634202734,2.93626151532,3.07688899021,3.22966266716,3.39632017693,3.57890082798,3.77967318104,4.00096309106,4.24486724187,4.51285233028,4.80526199251,5.1207850292,5.45597698721,5.8049594749,6.1594274253,6.50905840996,6.84233963482,7.14772395075,7.41492534322,7.63610194981,7.80668024009,7.92565607553,7.99534347955,8.0206807829,8.00829521403,7.96554446384,7.89970572773,7.81740185786,7.72427633432,7.62487641671,7.52268216241,7.42022073443,7.31921913868],[0.670619780898,0.667246283019,0.666866435338,0.668840732047,0.672609594761,0.677830655523,0.684430839522,0.692549735602,0.702393647769,0.714056911148,0.727386452935,0.741958257104,0.757196700246,0.77260914063,0.788052578074,0.8039231011,0.821177598491,0.841159156637,0.865279730545,0.894674281757,0.929944052385,0.971054898171,1.01738740714,1.06788827587,1.12126065841,1.17614432166,1.23125726156,1.28548795652,1.33793850055,1.38792439532,1.43493857881,1.47858684675,1.51850049914,1.5542312582,1.58513510573,1.61025812118,1.62825158121,1.6373677101,1.63561943671,1.62121324296,1.59334614254,1.55332828553,1.50568374495,1.45845516833,1.42180283272,1.40481040999,1.41208730868,1.44252245908,1.4909279619,1.55097337017,1.61740333183,1.68684181112,1.75761502731,1.82923535587,1.90192394609,1.97628527666,2.05311736047,2.13330872121,2.21778143901,2.30745710814,2.40323761611,2.5060023455,2.61662790586,2.73603678176,2.86527806224,3.0056367226,3.15875746442,3.32675580739,3.51227671071,3.71845521927,3.94873793111,4.20653608171,4.49469666192,4.81480162136,5.16635056746,5.54595408705,5.94673879872,6.35819618703,6.76666034148,7.15647318328,7.51171817155,7.81822246392,8.06540406213,8.24753572274,8.36413892828,8.41946959496,8.42131227293,8.37945519029,8.30422521712,8.20534786428,8.09123744974,7.96868763077,7.84285821399,7.7174388442,7.59489162903,7.47670861233],[0.689844001429,0.681469237036,0.675033941998,0.670250471822,0.667006981505,0.665453234195,0.666001912099,0.669218879009,0.675610310221,0.685361108706,0.698124634476,0.712980211442,0.728633145724,0.74383503197,0.757893889652,0.771075784116,0.784706224437,0.800882869213,0.821891570421,0.849570449559,0.88487297669,0.927744598317,0.977267829384,1.03194972797,1.09003251474,1.14975514849,1.20953796234,1.26808891179,1.3244415665,1.37793826445,1.42817095278,1.47488902349,1.51787909076,1.55681760264,1.59109570349,1.6196206236,1.64061520094,1.65147556471,1.64881429756,1.62890716658,1.58882838025,1.52846457461,1.45308353462,1.37500624234,1.31183783655,1.2799234645,1.28649344376,1.32715373843,1.390581662,1.46526549808,1.54327110388,1.62059010963,1.69596098116,1.7696249915,1.84250446606,1.91577469588,1.9906761414,2.06844070703,2.15025910033,2.23725801233,2.33048195717,2.43088845693,2.53937050254,2.65681989889,2.7842411319,2.92291744476,3.07461640215,3.24180023677,3.42778241369,3.63675904156,3.87365097514,4.143710567,4.45185696271,4.80171232165,5.19436559275,5.62702490554,6.09188716501,6.57564435845,7.05998364026,7.52322988394,7.94298096737,8.2992650359,8.57750069488,8.77049439556,8.87895149092,8.91044906357,8.87730673187,8.79406327315,8.67522782842,8.53371011766,8.38001797091,8.22208255874,8.0654801109,7.91383551742,7.7692608383,7.63275253031],[0.698911239617,0.685384628493,0.672972021101,0.661666749167,0.651729129582,0.643761220664,0.638694110257,0.637640356994,0.641588292352,0.650979138858,0.665308010839,0.682966768732,0.701510665566,0.7183632843,0.731769250012,0.741649420542,0.749939845058,0.760121267024,0.776073362026,0.800833414471,0.835847524032,0.880896453506,0.934490713253,0.994422410906,1.05826074572,1.12371060034,1.18883220762,1.25214647772,1.31265328792,1.36978640507,1.42332353198,1.47326319821,1.51967176019,1.56249457189,1.60131750087,1.63506265726,1.66161469025,1.67741952384,1.677205365,1.6541769028,1.60131504478,1.51459875352,1.39846099366,1.27142763925,1.1654925024,1.11249536491,1.1243776056,1.18784013498,1.27837785628,1.37586280781,1.46964555021,1.55633160273,1.63626592677,1.71119408393,1.7831573269,1.85410482228,1.92581735181,1.9999248604,2.07792472289,2.16117504764,2.25087137995,2.34803007635,2.45350472268,2.56805890753,2.69251402908,2.82798426672,2.97619450848,3.13984196014,3.32291474994,3.53085208281,3.77045026951,4.04946307235,4.37583848263,4.75647016571,5.19536744557,5.69140816429,6.23622975572,6.81303869558,7.39701066488,7.95759490264,8.46255770541,8.88305369761,9.19850452889,9.39987243797,9.49031746107,9.48315816331,9.39803688037,9.25667726007,9.0794329878,8.883215973,8.68076978594,8.48088779986,8.2891026614,8.10848602653,7.94036222891,7.78487128366],[0.700152686016,0.681339281849,0.662898066351,0.645025587969,0.628281036992,0.613693261602,0.602787673223,0.597445686136,0.599500090778,0.610042854547,0.628624444016,0.652760729171,0.678178464589,0.699919845819,0.714064735137,0.719573280007,0.719361635616,0.719582445355,0.727165907757,0.747196978031,0.781664159849,0.829741253192,0.888816222724,0.955524465576,1.02648142634,1.09871371331,1.16987500327,1.23831883833,1.30307461545,1.36375901097,1.42044693481,1.47351666488,1.52347087271,1.57071930219,1.61529089307,1.65642544945,1.69198611505,1.71765979286,1.72603411267,1.70596677888,1.64332636248,1.52516254512,1.34989160018,1.14292554791,0.964176721708,0.880648423374,0.912794123925,1.02291700282,1.15892361449,1.28867238892,1.40139218835,1.49740358224,1.5805793841,1.65507068769,1.72437908089,1.79132827242,1.85826367786,1.92723045085,2.00006085107,2.07837591029,2.16353848035,2.25660566517,2.35832449389,2.46920372927,2.58968882004,2.72046945922,2.86294128431,3.01979195783,3.19558265126,3.39712109067,3.63347906622,3.91565677764,4.25587447155,4.66615669472,5.15571041933,5.72714091334,6.37252610543,7.07087562963,7.78818583781,8.48063182583,9.10077236047,9.60580988309,9.96587822771,10.1696575989,10.2252243429,10.1559735707,9.99354452277,9.77056988094,9.51542450939,9.24973082609,8.98816738032,8.739599256,8.5086221633,8.29696438046,8.10454107572,7.93017294773],[0.695754212266,0.671553467369,0.646952537722,0.622247700904,0.598187426976,0.57615865488,0.55833809906,0.547674312981,0.547462375096,0.560278482436,0.586392426482,0.622436890339,0.661361523535,0.693997416727,0.711913219471,0.711333693667,0.696617365711,0.679505933407,0.673167254017,0.686100087133,0.720354305175,0.773304622423,0.840185968339,0.915856121088,0.995681226747,1.07590682256,1.15378441418,1.22756689984,1.29641643792,1.36025554314,1.41959038417,1.47532611995,1.52857670728,1.58044831529,1.63174564079,1.68251015751,1.73124696771,1.77365002291,1.8006744449,1.79615555945,1.73528944997,1.58775847091,1.33317390341,0.997341853556,0.691277043579,0.563883348028,0.649436542372,0.845125267733,1.0475223145,1.21522380795,1.34561147195,1.44770631695,1.53084936498,1.60208075244,1.6663370217,1.72718445007,1.78743568138,1.84952237722,1.9156403132,1.98772651386,2.06734948901,2.15559898563,2.25304286067,2.35978650021,2.47565728226,2.60056453987,2.73511977715,2.88154620311,3.04469403136,3.23275076058,3.45736258676,3.73341667065,4.07881669205,4.51347389716,5.05575493424,5.71590076871,6.48862187905,7.34810040513,8.24735797175,9.12255958181,9.90233767548,10.5213098322,10.934634651,11.1282178605,11.119877897,10.9510394315,10.6732981136,10.3358341432,9.97762693991,9.62510251632,9.29357008943,8.99024488653,8.71723444383,8.47375467446,8.25750889258,8.06546345994],[0.687755099654,0.658154310766,0.627279037648,0.59538476881,0.563226022091,0.532355229411,0.505506571509,0.486932677907,0.482266266506,0.497149812219,0.534234504109,0.58987872672,0.653194191266,0.708060801177,0.736828419531,0.727764939194,0.686588042906,0.637974759568,0.608823100754,0.612646624152,0.649035770523,0.71071262648,0.78912884817,0.876753231503,0.967567701703,1.05706915423,1.14220315205,1.22125445139,1.29367069862,1.35983700561,1.42084142572,1.4782633395,1.53399294548,1.59006016258,1.64841319034,1.71052661332,1.77661085157,1.84401180747,1.9041594862,1.93743129131,1.90652799943,1.75350374126,1.41611376775,0.895429562691,0.380112003129,0.194657570252,0.385961296704,0.703413347947,0.975870286532,1.17216342583,1.31001376955,1.41043726699,1.48816314699,1.55234367169,1.60866702713,1.6609954152,1.71238115146,1.76558771517,1.82323585894,1.88768663559,1.96079716697,2.04369885844,2.1367043133,2.23936042301,2.35061840006,2.46917223985,2.59418338622,2.72662655495,2.8710627079,3.03692031721,3.23847458346,3.49450842012,3.82962119794,4.27562521291,4.86724190003,5.62978278539,6.56475849427,7.64095640556,8.79313552117,9.92746689059,10.9345668125,11.7113356156,12.1875063334,12.3455988224,12.2228290226,11.8936497826,11.4433473199,10.9459394518,10.4533637215,9.99515741463,9.58391472328,9.22192248498,8.90635309374,8.63235926498,8.39453324608,8.18746635305],[0.678064464792,0.643219976134,0.60611778945,0.566807087546,0.525783511101,0.484378761144,0.445439894228,0.414341613181,0.399880357563,0.413355794684,0.463418800796,0.548118166652,0.651799820684,0.748660575119,0.804542752594,0.785206057338,0.693103676139,0.585753460633,0.52188254088,0.518731007303,0.564685305795,0.64226661358,0.737590390637,0.840830972883,0.944919876514,1.04485018435,1.13745702067,1.22125624444,1.29618693858,1.36328805238,1.42438819089,1.48186618216,1.5385016096,1.59739994772,1.66194267578,1.73565495148,1.82174876966,1.92177837074,2.03215598009,2.13617574806,2.18898962599,2.09947814926,1.73702377388,1.03603103383,0.265130419595,0.00874508689224,0.299546829172,0.692155799556,0.983682291916,1.17368856937,1.29869048366,1.38608886771,1.45188727307,1.50494219719,1.55037182948,1.59164475119,1.63175654896,1.67377868311,1.72091373382,1.776169943,1.84185424122,1.91915879256,2.00803732127,2.10733042726,2.21492681416,2.32790849986,2.44312434379,2.55900253841,2.67873033053,2.81276686675,2.97778619728,3.19455042506,3.49308097976,3.9229474104,4.54938453179,5.42696444208,6.57044421032,7.94182737232,9.45076340326,10.9600627909,12.3001795833,13.3028660075,13.8517223231,13.9247189883,13.598367536,13.0093094922,12.3003718711,11.5817568151,10.9184714018,10.3372141752,9.84070438454,9.42065610513,9.06585636888,8.76566714982,8.5108166551,8.29318241315],[0.668456079739,0.628780577359,0.585832736487,0.539315632501,0.489187274298,0.436024397464,0.381875893301,0.332101069688,0.298446670055,0.301043058102,0.361355905111,0.482976584929,0.642987693573,0.805043490729,0.915898213884,0.890594999167,0.70399047038,0.493994421664,0.389663327378,0.39580898875,0.467865031049,0.571883627875,0.690182713637,0.81261259525,0.931951241729,1.04300949715,1.14271852284,1.23006681438,1.30574721053,1.37168216163,1.43060040379,1.48576018874,1.54084568001,1.60002726622,1.66816480958,1.75112038939,1.85607904996,1.99149505696,2.16531127078,2.37722886327,2.5947622781,2.70288002878,2.47372921988,1.73831484727,0.819372521696,0.430897543652,0.597763517866,0.875214892753,1.08243851494,1.21747679211,1.30717688937,1.37087482738,1.41927290444,1.45792439301,1.4899405052,1.51770264091,1.54389454397,1.57198114775,1.60609683778,1.65034446046,1.70777836139,1.77963479269,1.86526884942,1.96264100161,2.06862961011,2.17868564903,2.28653145284,2.38600746434,2.47679398959,2.57036612838,2.68595924574,2.83962058699,3.05762042537,3.41652854313,4.04327367061,5.0480676634,6.46386310102,8.2398641878,10.2541385524,12.3132518691,14.1552013291,15.4951533942,16.1259871652,16.0175252341,15.3282012224,14.3152675927,13.2200658025,12.2018449802,11.3313850997,10.6176005924,10.0396730175,9.56999925712,9.18489817688,8.86668377132,8.60210193748,8.38040772351],[0.660521915487,0.6167400358,0.568796669543,0.516016336732,0.457692052611,0.393256967111,0.322955419763,0.250045236578,0.186643268878,0.163151957394,0.223754876832,0.38181347839,0.595298909187,0.813267556083,0.976135135066,0.949038034921,0.645500501257,0.314864418919,0.196954319745,0.251670129049,0.371576492732,0.510261014803,0.655112591222,0.798890159434,0.934576244217,1.05664553005,1.16217732296,1.25090837022,1.32463118437,1.38643703451,1.4401136635,1.4898156608,1.54001428951,1.59570378179,1.6628691105,1.7492899544,1.86586278745,2.02872997136,2.26225880055,2.60016620724,3.06690702942,3.57279661698,3.70032096387,3.01029671017,1.9630129893,1.31790574298,1.1441359835,1.16597304881,1.22479059408,1.27833513091,1.32186637431,1.35726931783,1.38606664396,1.40880850817,1.42575401146,1.43774201184,1.44699840181,1.45762789006,1.47537644726,1.50632942421,1.55485968385,1.62207405515,1.70602677007,1.80338538881,1.91052918773,2.02236333309,2.12961487059,2.21886941222,2.2817772315,2.3308254988,2.39132102077,2.45803717717,2.52135206532,2.7035091766,3.26861623428,4.42422070147,6.20502861652,8.52838183922,11.2448536673,14.1082132308,16.7250114934,18.5955157351,19.3186143607,18.8429677237,17.5042694638,15.7998324569,14.1363267941,12.728408525,11.6267281419,10.7906240026,10.1522699308,9.65301233706,9.25351427213,8.92966015623,8.66549127522,8.44840763074],[0.655589256377,0.608720050378,0.557109539362,0.499837691511,0.435728200297,0.363287402255,0.280936734843,0.188738249805,0.0956885432131,0.0389802441299,0.0903381230992,0.269552752598,0.496737595929,0.702830136198,0.831571750615,0.77328131832,0.462807344156,0.117947037733,0.0239336677667,0.144502508391,0.307393236111,0.473812900672,0.643080617423,0.808469548555,0.960601571985,1.09247815363,1.20125311127,1.28784304012,1.35565857788,1.40933746512,1.45388564322,1.49429569468,1.53556594285,1.58303774417,1.64304399344,1.72400394323,1.83836792417,2.00641288965,2.26431700292,2.68170107304,3.38908556339,4.49288198875,5.24813583604,4.27593060595,2.84525264426,1.96949428388,1.55948202068,1.39394924855,1.33576970111,1.32194165385,1.32620954794,1.33696018656,1.34803531722,1.35548167565,1.35672751793,1.35087091878,1.33954677415,1.32784007052,1.32428087409,1.33872281987,1.37809698882,1.44282517973,1.52767232331,1.62668524445,1.73684505663,1.85580588144,1.97439843773,2.07060132431,2.11956689692,2.13078422758,2.14793161893,2.11483951315,1.90146472088,1.72475264195,2.16085384514,3.54008980116,5.80974284547,8.82552876892,12.4551392366,16.4557513502,20.2797624713,23.0326397843,23.8725850638,22.6808081135,20.1896249192,17.3775529192,14.9095525349,13.0320599347,11.7125352948,10.8023154838,10.150850544,9.65628233554,9.2650549589,8.9514830255,8.70038151748,8.49872886038],[0.654632008943,0.605880352187,0.552236889513,0.492799244673,0.426412196872,0.351578135362,0.266559875453,0.170719552936,0.0714092288762,0.00592789962876,0.0513639513333,0.212917791639,0.394490493447,0.540284224469,0.607908479757,0.542173989943,0.339946647814,0.120877953118,0.051180460362,0.148867152887,0.297268425337,0.473018813495,0.664082475409,0.851951596086,1.02026835551,1.15937987422,1.26690873671,1.34588126562,1.4021758222,1.44248507483,1.47317569903,1.49992399383,1.52786442197,1.56204822119,1.60813742248,1.67341470557,1.76842304461,1.91007316597,2.12862724465,2.48662546973,3.13889395012,4.46374656109,5.8669748553,4.35302774017,2.84693092282,2.07080027099,1.67050079003,1.46772264488,1.36952561532,1.32556615141,1.30883905997,1.3042864353,1.3025716342,1.29710960741,1.28303744539,1.25751226619,1.22112075929,1.18000947237,1.14721367932,1.13995971334,1.1708091477,1.23829313678,1.32871321263,1.4296623672,1.5403278129,1.66759929938,1.810643645,1.94375851289,2.01739212955,2.01900698087,2.02154897653,1.90067567314,1.28837085045,0.583546345076,0.913645034754,2.63542665335,5.45742751134,9.19394284198,13.8407396186,19.2997697396,24.9301371464,29.1819644492,30.2246363218,27.7208281913,23.2829969618,18.8088211093,15.2969414628,12.9308622201,11.4822924075,10.6052739814,10.019919709,9.57607104301,9.21887348,8.93287910674,8.7093410427,8.53616257786],[0.658220210397,0.608806897529,0.554763933182,0.495453324849,0.430212743483,0.358482437517,0.28027900491,0.197879629324,0.121306944839,0.0802929736971,0.116344588776,0.21087484374,0.313255205446,0.406690864883,0.454125780433,0.414014230131,0.293763575099,0.166721649725,0.111304106601,0.162461714131,0.30537866778,0.505146522006,0.728327695579,0.943710179834,1.12785614966,1.26933921558,1.36804345722,1.43100079802,1.46789883607,1.48810330335,1.49938581137,1.50779559124,1.51808789724,1.53434249673,1.56061038634,1.60154478726,1.66299001843,1.752340338,1.87775279349,2.04236116589,2.2178270203,2.25003357333,2.02379830113,2.18393929652,2.01723532144,1.7387335724,1.53005227066,1.39964199327,1.325143699,1.28603026256,1.26724338695,1.25789079875,1.24947136013,1.23463027327,1.20672374217,1.16045255494,1.09408036403,1.01375102352,0.93864870186,0.900180498921,0.924579538259,1.00678540929,1.11212571941,1.21245900912,1.31165335806,1.43613619739,1.60531318891,1.80135494045,1.95415009684,1.99970692296,1.99927883563,1.83806072244,1.05221534351,0.102679277712,0.42747893776,2.36420317714,5.49238073777,9.68258350697,15.140111391,22.0684564989,29.9548966954,36.4637375282,37.9198879166,33.3933537985,26.1755332916,19.6186815944,14.9884647425,12.2493241387,10.8661460758,10.1940285515,9.77416354598,9.42449647961,9.1215442946,8.87868312416,8.69881049581,8.57001339857],[0.666539116827,0.617539578616,0.564440240984,0.506957374084,0.44504087569,0.379194392431,0.311182790022,0.245500775943,0.191654342597,0.163452763616,0.163176580458,0.174824193115,0.215098914736,0.29594015882,0.362531188622,0.355959203537,0.264265868051,0.115744438953,0.00756039497288,0.0984085787236,0.317787787206,0.582220788094,0.856988481506,1.10700338111,1.30435418696,1.43860145461,1.51564123841,1.54979228983,1.55641521074,1.54808168393,1.53369785296,1.51908255478,1.50794059049,1.50273706313,1.5052996928,1.51705459562,1.53864563143,1.56809845249,1.59486064219,1.58130585171,1.40738880806,0.775889496913,0.00504509227403,0.74179796658,1.19709108317,1.27943396673,1.27429957311,1.2506312055,1.22876197011,1.21423487995,1.20601598067,1.20003985816,1.19057351177,1.17057361167,1.13186999275,1.06593398064,0.966483624965,0.836221121773,0.699495466266,0.611876303157,0.63268387939,0.753449623921,0.890895244996,0.982761988549,1.0439310728,1.13702371094,1.31226442305,1.56340984405,1.8126854983,1.95129200984,1.984605201,1.89594912703,1.4631394669,0.955048589513,1.35043039224,3.09544640949,6.03022261361,10.1532446891,15.8071156431,23.459590495,32.9048169018,41.4006273353,43.3651218828,36.9788998583,27.3716706268,19.2273010776,13.8566554928,11.0235539179,9.95774435474,9.66458137661,9.47466326926,9.22866966664,8.98369336277,8.79660581323,8.67989054353,8.61613068393],[0.679473998887,0.631731533558,0.580502829241,0.525774509112,0.467865511093,0.407703105564,0.347218303809,0.289596043054,0.238074466914,0.190262529651,0.132598532381,0.0738056655197,0.0875377885818,0.195541649809,0.307435076281,0.344304848811,0.286915791069,0.159963106038,0.0699557210265,0.166919991938,0.426449367744,0.755482128082,1.09101620513,1.37820861596,1.57927158985,1.68762835428,1.72166136502,1.70807678459,1.66999516162,1.62310837758,1.57646484568,1.53454970178,1.49912726454,1.47045423407,1.4478771203,1.42984721928,1.41320228567,1.3911556662,1.34868603089,1.25355749938,1.04832741346,0.70112899241,0.44320072123,0.498963432398,0.677269271375,0.884860024108,1.01717446932,1.08248509384,1.11192218268,1.12565487236,1.13264314758,1.13460238304,1.1285845804,1.10816496789,1.06389114615,0.983736480034,0.855056896738,0.672081386142,0.457229397445,0.29557029864,0.312230552689,0.504516532892,0.693664948317,0.758182212528,0.738140275974,0.761464261419,0.919048525617,1.1941583814,1.51779736262,1.78535232986,1.95523759421,2.04912562599,2.0486029494,2.11161779135,2.69975115697,4.17953444976,6.65653018507,10.2617116918,15.3350004509,22.3136518742,31.0338239459,38.9677602053,40.791488538,34.64669658,25.4136632005,17.5722136283,12.4005633332,9.8243921558,9.17772126112,9.2444003789,9.20797577463,9.01063712115,8.81080428924,8.69532171182,8.67018412494,8.70055154359],[0.696723036728,0.650853524776,0.602069456371,0.550473537064,0.496424583459,0.440614331826,0.383971722723,0.326920693064,0.267057122692,0.195462265265,0.101869464236,0.0137990121553,0.0205283219995,0.146032627894,0.290779483655,0.370772355802,0.369679047706,0.318733743227,0.300756452817,0.418245941652,0.696577472392,1.08032770829,1.48062636794,1.80227174504,1.98644891028,2.03623806354,1.99441396403,1.90736520761,1.8072805637,1.71129767603,1.62639684662,1.55398163807,1.4927686402,1.44026259667,1.3932967378,1.3479459957,1.29893063156,1.23851935199,1.15507271121,1.03231815347,0.853395731739,0.613274931878,0.302077479717,0.0591023740476,0.298433320667,0.616787890771,0.821292492958,0.935814917153,0.998066449843,1.03293386545,1.05362103227,1.06493694968,1.06567272347,1.04991382827,1.00752749413,0.924241370742,0.782562909344,0.568061730087,0.294496356532,0.0637429430724,0.0722411383513,0.335438906692,0.561429623656,0.56572325062,0.416978320875,0.343452095201,0.499503608801,0.764786353325,1.12917894931,1.53275653129,1.88145071215,2.1756282765,2.46278163076,2.86136279968,3.59308105566,4.88275425748,6.88757070252,9.7677424276,13.7513805101,19.0231216395,25.217924822,30.4550072161,31.5368914431,27.4909983817,21.1468509196,15.4193528892,11.4535442033,9.45348029543,9.02088704235,9.09149912981,8.97972106395,8.74921824079,8.5937575767,8.5846905947,8.69800915489,8.86590707316],[0.717893234182,0.674345622223,0.628381493793,0.58010851434,0.529752269969,0.477573076811,0.42353735559,0.366488237468,0.302794684979,0.226378487214,0.137492597568,0.0669040448854,0.0776368495599,0.18643974372,0.326456042688,0.431814808414,0.487360758414,0.520205520801,0.590271088192,0.770813703206,1.10465778996,1.56683995482,2.05079928146,2.40590133449,2.54190409471,2.48637829219,2.3269526167,2.13812497454,1.95982501827,1.80654614528,1.67977535395,1.57572061618,1.48897539616,1.413910762,1.34495645878,1.27635599509,1.20170537647,1.11358749564,1.00391312491,0.866002434055,0.698208248006,0.500171314641,0.254956171117,0.0864219550076,0.257366651695,0.516252615806,0.705679516793,0.825112022175,0.897353248071,0.942196848734,0.972148572119,0.992473783187,1.00239853878,0.996255468662,0.964123579329,0.892080908139,0.763200363553,0.563632358039,0.306695297707,0.0899772609116,0.0993721651335,0.340804467534,0.521289784924,0.451420608519,0.189278688141,0.0257930581651,0.214024564016,0.362164635581,0.744514901425,1.27068596091,1.76716954634,2.20937183574,2.65078809543,3.18322638212,3.93113571883,5.02663157466,6.58932830523,8.73419411882,11.5614031307,15.0501807163,18.7863257109,21.6551548477,22.2222048862,20.1517803702,16.6921287661,13.3302066534,10.8748161984,9.55921681703,9.12036818687,8.91782707498,8.62579611409,8.37133894737,8.31158112709,8.47936766287,8.80914024763,9.18212443458],[0.742554852239,0.701674813442,0.658833961268,0.614117824265,0.567634659065,0.519394682978,0.469042811238,0.415458218301,0.356659923923,0.291654054426,0.227111141453,0.186948318985,0.205491938382,0.291101590232,0.410314700654,0.524683238188,0.623639353491,0.727879939167,0.883048961643,1.14847712108,1.57207908035,2.14337852715,2.73517189995,3.12707004058,3.18708460566,2.98601516121,2.67832171302,2.37159352976,2.10905069305,1.8975894771,1.73021973884,1.59659408997,1.48675267426,1.39198669408,1.30464072864,1.21758375941,1.12367211171,1.01549414966,0.88593295569,0.730677763235,0.55501621018,0.387664573949,0.283259157959,0.26857995098,0.356890592981,0.506096272181,0.643260602336,0.742115648283,0.807585181916,0.85267811795,0.887527757064,0.916263390561,0.937390912338,0.945078347798,0.930241750291,0.881474719721,0.787057373241,0.641652459343,0.464958794981,0.330876965037,0.342822210753,0.480257805071,0.562378786209,0.464960127931,0.235897059212,0.107562213121,0.0924941492279,0.0614861758669,0.50808885705,1.10866268227,1.67353422578,2.17795114678,2.66421301626,3.19765981884,3.85570013504,4.72185846408,5.87846399978,7.39311661213,9.2853673639,11.4585110753,13.5987478346,15.1398889411,15.5115997492,14.6225907119,12.9827215058,11.2688726273,9.93339714591,9.11718073254,8.66791719749,8.31187120908,7.97783764821,7.8088221508,7.94138150133,8.39820249445,9.07409666803,9.76491586624],[0.770258279095,0.732322632727,0.69288190883,0.652030102331,0.609862529692,0.566401926658,0.521500563816,0.474845480372,0.426471985386,0.378560779305,0.338891487568,0.323150343137,0.348805497155,0.420196855578,0.523257499456,0.640491256324,0.768613194187,0.925096506091,1.14708869341,1.48552055493,1.98706883982,2.64539114221,3.3197823668,3.73797467341,3.7291141125,3.39970845507,2.96445045591,2.55909153317,2.22772470015,1.96946166932,1.7696692558,1.61247788866,1.48430019589,1.37412134035,1.27285544062,1.17253983673,1.06560871902,0.944355569766,0.800746624542,0.627121775869,0.42041613021,0.203260527059,0.0894800982378,0.191870064085,0.352703557909,0.489196889711,0.595358466346,0.669122535208,0.71921341778,0.758518454595,0.795886662223,0.833462613528,0.867921055355,0.892616005604,0.899264591854,0.879403714611,0.826821501825,0.742982951797,0.646821976227,0.580865783862,0.585304362755,0.637958548577,0.654297067001,0.576258199003,0.437058619332,0.32922871664,0.211194243795,0.213175332753,0.588128922639,1.12283492368,1.64855468883,2.12448117219,2.56571733301,3.00785363896,3.50114419695,4.11286167624,4.91639093061,5.95685140709,7.21361105313,8.57981090602,9.85222614352,10.7560774434,11.0639129741,10.7571377135,10.0507120508,9.24175159857,8.54715910933,8.03556345158,7.64657563845,7.30208353996,7.04188464423,7.02893834304,7.4394538845,8.34259230569,9.59401998744,10.8121192419],[0.800533165012,0.765752994796,0.729943639856,0.693250763768,0.655850002978,0.617937705115,0.579765805351,0.541836078532,0.505468050625,0.473933401036,0.453809809297,0.454905688528,0.486598383229,0.552032943014,0.646803588962,0.765493635944,0.910618825078,1.0979687182,1.35756460166,1.72987431455,2.25040235202,2.90602650389,3.56181782125,3.95999564185,3.92961537634,3.56789512222,3.09333440512,2.65107768632,2.28970103569,2.00833205615,1.79076158622,1.61947408672,1.47962262964,1.35936609983,1.24917755035,1.14099033021,1.02741214143,0.901025038125,0.753741919671,0.576499117816,0.362288536177,0.130757059544,0.00802466047829,0.130221716785,0.326783749635,0.464496231059,0.545781299789,0.590863554219,0.620326399507,0.651293645649,0.691832439109,0.740692023838,0.791272241949,0.835310514058,0.864877005554,0.873685256519,0.858906928156,0.824139743761,0.782550716035,0.754914340641,0.754927251187,0.769702929143,0.764644581115,0.716734104299,0.639564688788,0.566743345021,0.521821608777,0.591204200406,0.861106729015,1.25796607296,1.67542592,2.05939840319,2.39253969213,2.67845474119,2.9514342466,3.29470310277,3.81390179972,4.55009874229,5.43958378917,6.36902928815,7.2148912252,7.8391756433,8.12938936071,8.07579118195,7.78363380127,7.40252491645,7.04212118139,6.72876515772,6.42824084161,6.12328600216,5.89692855544,5.97220286582,6.67066909329,8.23438897047,10.5034152378,12.6788524059],[0.832888424982,0.801396506338,0.769363949357,0.737014620059,0.704645386509,0.672661191366,0.64166854258,0.612692305491,0.587585068893,0.569595684171,0.563755231299,0.576362192244,0.613109493175,0.676913536684,0.767870741319,0.886417056048,1.0378338629,1.23548885127,1.5013828761,1.86223397073,2.33566293083,2.89734330361,3.43565983084,3.76151816489,3.7470993838,3.45054609159,3.03542076468,2.62874903887,2.28376440461,2.00762785212,1.78961910169,1.61523814172,1.47121214757,1.34659168446,1.23250530897,1.12157468328,1.00732587771,0.883704203109,0.744837202919,0.585800628684,0.407876255609,0.238596064275,0.160260969238,0.231479288585,0.360189042274,0.450032141987,0.488004921583,0.495089002348,0.49945219939,0.522957653884,0.571214928862,0.636373998579,0.706668155376,0.771747264254,0.823821369577,0.858000161822,0.873065067719,0.872472841167,0.86447884242,0.859307663425,0.862429249977,0.868687989049,0.865662416985,0.845923433765,0.816472624125,0.796544135116,0.814324885146,0.91203314502,1.11605228011,1.39789594487,1.70032120145,1.97096128781,2.16597896041,2.25422981037,2.25645512821,2.31113078379,2.62592641147,3.2364815104,3.96512694867,4.67651806805,5.33946838317,5.88847133085,6.20982394659,6.25672073489,6.09553322425,5.85837911667,5.65386170742,5.48342534635,5.26691530814,4.94987951229,4.59673346577,4.50270999416,5.31834768525,7.794156846,11.9349357376,15.9744991244],[0.866821540191,0.838660691386,0.810436313549,0.782453145215,0.755122835805,0.729016546673,0.704963495111,0.684219779248,0.668709305561,0.661262577297,0.665653060522,0.686174903109,0.726756979791,0.790192574521,0.878394095082,0.993991703768,1.14250842358,1.33382394902,1.58167350068,1.89944744828,2.28918967794,2.72136803847,3.11494685275,3.3529605184,3.35760903342,3.15524119733,2.8439424448,2.51541603936,2.21936854645,1.97086118384,1.76727490972,1.59974559735,1.45851035982,1.33481279791,1.22130193064,1.11189845371,1.0015637788,0.886207458991,0.763036198716,0.632100207704,0.500730043932,0.391620401658,0.341642253424,0.362718717798,0.409566950322,0.430565690029,0.412501527588,0.37385153195,0.350073070536,0.370999119157,0.435933040331,0.524142588024,0.617315643803,0.703899386722,0.776699551094,0.831860857521,0.86895592647,0.891003008317,0.903633235698,0.912944781795,0.922521948377,0.931728891606,0.937565864997,0.9394117924,0.942936624894,0.960630714608,1.01031857268,1.11098339126,1.27046188588,1.47386300349,1.68584396022,1.85615738796,1.9188734894,1.80122154987,1.49249434205,1.21667038125,1.41301783919,2.09139133925,2.77619121165,3.33032243536,3.93853468471,4.59234773069,5.05475135586,5.16015514394,4.93440304638,4.59935811995,4.42081557172,4.38861746443,4.27681249948,3.91413061141,3.26691287856,2.5642172996,2.98722548063,6.48484626507,13.6637110402,21.0671714216],[0.901836133002,0.876957442913,0.852453832451,0.82869573132,0.806177165552,0.785567290566,0.767789798429,0.754133249408,0.746374752816,0.746860338536,0.758447497435,0.784237779918,0.827171464641,0.889768345672,0.974353017371,1.08382159038,1.222546266,1.39669425444,1.61308497452,1.87549873208,2.1773288747,2.49135748197,2.7639551842,2.928531062,2.94220511086,2.8153743221,2.60044931676,2.35528868945,2.11891674357,1.90893908347,1.72880800081,1.57509612984,1.44197664513,1.32339238258,1.21391841573,1.10903468419,1.00522453306,0.900163521337,0.793251948165,0.686800973036,0.587920851148,0.509296077895,0.463008797479,0.445124081002,0.430261839724,0.39169809429,0.321725445075,0.236527719396,0.181575118762,0.2082782033,0.301155966712,0.416080549757,0.531321355173,0.637064037965,0.727172113902,0.798355421555,0.850506070602,0.886438354382,0.910821411117,0.928552320523,0.943193271452,0.956386887796,0.968845223804,0.982431798612,1.00195631237,1.03558549515,1.09364342086,1.18545549241,1.31389373828,1.46939833056,1.62511147628,1.73115385884,1.70691281632,1.44368764198,0.880106947873,0.289753884421,0.433173060306,1.28992687874,1.85345855941,2.10720940519,2.72723883336,3.74516596589,4.59635878414,4.85169516088,4.32031336003,3.46187622539,3.19958458221,3.41718380024,3.49967796728,3.14879383521,2.29303186038,0.895319983662,0.466636358838,4.54249454618,13.7692322189,24.1692319262],[0.937462419935,0.915734393579,0.894760466548,0.874953144804,0.856849460825,0.841152720598,0.828787696786,0.820964518101,0.819233900687,0.82550050959,0.841955856511,0.870919771425,0.914648814003,0.975240589846,1.05474983646,1.15548707803,1.28025518325,1.43210589013,1.61311462535,1.8217066009,2.0484861816,2.2719790305,2.45839827391,2.57068847394,2.58581432037,2.50767909548,2.36331607254,2.18679096724,2.00533039831,1.83468635671,1.68101844765,1.54459126506,1.42281282289,1.31211337048,1.20894061199,1.11025385848,1.01381004664,0.918439431279,0.824432587463,0.734022305024,0.651541830128,0.582041797016,0.526976524573,0.478923746217,0.422529985059,0.344356606072,0.242061234326,0.125628235508,0.0380151783344,0.0785724577277,0.199341047663,0.330515597567,0.45918097916,0.577998742373,0.680235444551,0.761868993581,0.82247301048,0.864785571132,0.893460837497,0.913520292117,0.929039779975,0.942603770045,0.955819040797,0.970623347009,0.990618914018,1.02171058716,1.0717171648,1.14857791323,1.25644985165,1.38955243915,1.52480109913,1.61415630421,1.57769618686,1.30855905973,0.746503931514,0.153086147863,0.278429412282,1.02232361357,1.12134050924,0.795745024652,1.47835370355,3.1917477593,4.8203588717,5.66030477513,4.47731021581,1.92355987776,1.75283107274,2.56385212303,2.94583015262,2.68820722075,1.94731921544,1.02257593697,0.928063139629,3.70594366495,10.4013108669,18.5914121236],[0.973275264755,0.954500509824,0.936787466515,0.920566194305,0.90638142754,0.894922466634,0.887057440071,0.883865924639,0.886657654551,0.896960151747,0.916461380871,0.946911695566,0.990019070115,1.04739083654,1.12055213213,1.21099431737,1.32010442364,1.44875036196,1.59629197342,1.75891616011,1.92758590728,2.08667581669,2.21522902421,2.29239764706,2.3056278009,2.25636019862,2.15867738082,2.03220597888,1.89477496426,1.75863763319,1.63023401693,1.51168746649,1.40254663387,1.30113518121,1.2054274007,1.11357597306,1.02424206444,0.936833810332,0.851681086494,0.77004143667,0.693627574667,0.623230109083,0.556537004642,0.486843405708,0.405387438118,0.307502260728,0.198270910735,0.092790192447,0.0174955356068,0.0534579889319,0.155247703327,0.277717920157,0.407558093382,0.531966683406,0.640343856637,0.726430948919,0.788838239584,0.830252012842,0.855946045538,0.871974655885,0.883364709262,0.892908506714,0.901310825,0.90876378255,0.916997992737,0.93089612861,0.959501981352,1.01542368076,1.10960232857,1.24104750287,1.38789844391,1.50444387169,1.52336503409,1.37242172942,1.04302952843,0.740269374562,0.835306421843,1.11475543125,0.732426800817,0.020337946505,0.731009790089,2.91194804358,5.14524838038,6.82488425059,5.30223953475,0.230113869868,0.76231670118,2.10137117012,2.63732439389,2.43288239632,1.73853950259,0.739802602449,0.436127325818,2.63764227364,6.57337318182,11.1379030547],[1.00890673675,0.99284178546,0.978071692064,0.965022948872,0.954221075227,0.946309828515,0.94206991221,0.942432183875,0.948477730687,0.961416447236,0.982539654965,1.01315197651,1.05449897982,1.10770936747,1.17375230511,1.25337096721,1.34690858092,1.45392091126,1.5725006673,1.69836097126,1.82397141907,1.93837658704,2.02850298502,2.082289521,2.09265865825,2.0601145144,1.99221370791,1.90032660381,1.79582725175,1.68757740703,1.58115769719,1.47928335138,1.38266928709,1.29087674379,1.20296460686,1.1179353081,1.03502121489,0.953848188833,0.874466531286,0.797171563958,0.721988941345,0.647798484327,0.571489886947,0.488180199215,0.393577236463,0.28813525012,0.180300754315,0.0849883659292,0.0218094620587,0.0513592771986,0.137209569252,0.249313618252,0.376123259471,0.501215470103,0.610331253191,0.694833912276,0.752175952552,0.785057454256,0.800026807595,0.805412415635,0.808289252973,0.811430349895,0.812772647877,0.808503873375,0.797209765876,0.782667375111,0.77668970729,0.801865847489,0.883989293576,1.02949187843,1.21266951124,1.38521500741,1.49119855119,1.48772987257,1.38743134693,1.30051945319,1.34133050172,1.35974737132,1.03972880097,0.685889879341,1.30877502793,2.95213172678,4.63425781195,5.56845125184,4.36632821794,1.79126969572,1.57687356896,2.26393385822,2.56603487324,2.33334288139,1.70724322149,0.831784885284,0.606393586167,2.03319036891,4.17954068628,6.68801023317],[1.04405236764,1.03042707945,1.01825883904,1.00795453802,1.00000237363,0.994982629573,0.993575712258,0.996563836576,1.00482183908,1.0192930521,1.0409488645,1.07073513187,1.10951221388,1.15799338241,1.21667506869,1.28573386459,1.36484905255,1.45291103428,1.54761204902,1.64499887412,1.73919350562,1.82260459478,1.88693009271,1.92494015399,1.93246952892,1.90965042643,1.86067915346,1.79226518026,1.71163366669,1.62497153644,1.5366984283,1.44944471693,1.3644175124,1.28187666702,1.20156408445,1.1230284174,1.04583641864,0.969670661202,0.894298256268,0.81937860659,0.744098529849,0.666738105433,0.584505691365,0.494199329001,0.394090326092,0.286551213319,0.179573806381,0.0849619522687,0.0224734454332,0.04728424715,0.125548604237,0.23608274266,0.362564013168,0.486232020217,0.591511890924,0.66851911782,0.713697734533,0.729689818855,0.724980251978,0.712307271039,0.703611194425,0.702243833114,0.700208004491,0.685863872426,0.653372453212,0.604779182141,0.552303249687,0.5314887276,0.598187557013,0.770641998275,1.00672881822,1.2469664618,1.44068893196,1.55847297949,1.6085898393,1.63878769015,1.68373571181,1.69383948498,1.61699137411,1.6432019118,2.13333273415,3.06262563625,3.95276993857,4.29721634735,3.77910260212,2.88819553744,2.54344210197,2.62520501161,2.62230769353,2.33809768954,1.82995610923,1.27074380566,0.908434274534,1.40207058369,2.73482074092,4.33466694634],[1.07847182618,1.0670062123,1.05709649519,1.04911910544,1.04351434022,1.04079098718,1.04152741339,1.04636666305,1.05600289459,1.07115707709,1.09254141423,1.12081390993,1.15652533234,1.20005869261,1.25155550746,1.31081574813,1.37715517635,1.44921255011,1.52472684978,1.60035239463,1.67163502542,1.73330002723,1.77994696159,1.80707269837,1.81210830026,1.79502908299,1.75823867116,1.70578686706,1.64229629757,1.57202603346,1.4983177389,1.42343807902,1.34869363681,1.27467090638,1.20149239259,1.12902828752,1.05703612128,0.985214799976,0.913162876454,0.840239280986,0.765359635578,0.686840922313,0.602515945522,0.510385496003,0.409903482183,0.30351989369,0.197621587752,0.101899689059,0.0242786468896,0.0230628942058,0.11770360745,0.239295064383,0.367854441012,0.48751666843,0.584266108064,0.648042896773,0.674075258321,0.664132399105,0.628611469828,0.58778635414,0.565046442694,0.567409385751,0.574073319487,0.55767487367,0.509263596413,0.432615103192,0.33288018603,0.248801648066,0.296731718403,0.5100945802,0.802788299157,1.10432737401,1.36936922813,1.57437791181,1.72109433357,1.831018753,1.92300551184,1.99748368012,2.07185994598,2.23698447869,2.59909324732,3.11466740204,3.57025227742,3.74144982507,3.55948924006,3.21719537753,2.98111665111,2.86531794269,2.70387593638,2.38182287494,1.88174425569,1.16239529163,0.13950215189,0.852185865847,2.06425553809,3.15758970912],[1.11198541535,1.10240294985,1.09442154024,1.0883807858,1.08466829283,1.08372005498,1.08601724139,1.09207775519,1.10244095826,1.11764441641,1.13819235299,1.16451631256,1.19692862516,1.23556800154,1.2803341663,1.33080648157,1.38614310841,1.44496589393,1.50525375876,1.56429131904,1.61873961295,1.6648933536,1.69914379888,1.71857558472,1.72152657908,1.70790238514,1.67911271931,1.63765681715,1.58652865576,1.52865300104,1.46649762468,1.40190111006,1.33607510467,1.26970831588,1.20310496602,1.13631054699,1.06919697554,1.00149258508,0.932752817234,0.862282888275,0.78905290314,0.711690307134,0.628674211592,0.538839362666,0.442157886862,0.34048068857,0.23755526903,0.13780760891,0.0548627300115,0.0544653115377,0.148962806091,0.272053408774,0.395706772764,0.505392490593,0.588327842513,0.633948083113,0.635298476159,0.591282118875,0.511997314951,0.427375384712,0.384922701496,0.406713820246,0.444753622988,0.437277353719,0.380177435937,0.296736345001,0.182858856289,0.0456869117992,0.0831737026007,0.33299785938,0.654335397939,0.989779020113,1.29908840836,1.55999891309,1.76943217297,1.93823661685,2.08118906655,2.21230907528,2.35459999622,2.54734398054,2.81735073693,3.13018305375,3.39033887831,3.50467810628,3.45273186996,3.3043812176,3.14726978969,2.99401923325,2.78788449462,2.4738648171,2.0365107587,1.51477442841,1.2473772067,1.95731784581,2.03861421272,2.71208787084],[1.14446789327,1.1365052057,1.13014523512,1.12568792959,1.12346755387,1.12385031051,1.12722865312,1.13401121084,1.14460734691,1.15940569534,1.17874648542,1.2028878549,1.23196638351,1.26595162447,1.30459381775,1.34736425026,1.39339037484,1.44139408962,1.48965140193,1.53600224002,1.57794410236,1.61283387617,1.63819231467,1.65205966228,1.65330896068,1.64181471201,1.61841536643,1.58468331257,1.5425844672,1.49413469454,1.44113680387,1.38503331355,1.3268657375,1.26730662052,1.20672571789,1.14525843909,1.0828551215,1.01930013207,0.954200671438,0.886959337126,0.816764100547,0.742650912448,0.663703562277,0.579428448916,0.490260696117,0.39805814716,0.306560127618,0.223169436605,0.166770342299,0.170206123463,0.238698457524,0.340082972623,0.445984155418,0.538278050493,0.602904815923,0.627825762032,0.603111795165,0.522845349921,0.392373545089,0.247230811957,0.171448843312,0.229578332208,0.327884916614,0.333763504352,0.260413512398,0.191613043396,0.114787257425,0.0406938016429,0.0899945642968,0.294627663623,0.595481511183,0.929740245108,1.25338056619,1.54187069446,1.78777972245,1.99575227441,2.17653878454,2.34356653574,2.51320973719,2.70226566201,2.91530788094,3.1304159236,3.30341862664,3.39398623989,3.39247749185,3.32276749043,3.21498241907,3.07470936266,2.88216203241,2.61816155622,2.29345336556,1.98631440178,1.87991900064,1.98954269336,2.17408729678,2.69678647041],[1.17584090895,1.169254216,1.16423817289,1.16105287516,1.15998137112,1.1613256255,1.16539959913,1.17251874266,1.18298531768,1.19706919136,1.21498404845,1.23685922632,1.26270751218,1.29238927888,1.32557355428,1.36169755951,1.39992853655,1.43913559193,1.47788416344,1.51446951262,1.54700494703,1.5735717042,1.5924194035,1.60218292583,1.60206388401,1.59192460326,1.57226495016,1.54408948209,1.50870638384,1.46751450098,1.42182661332,1.37275454828,1.32115780842,1.26764112512,1.21258003312,1.15615484573,1.09837884794,1.03911387136,0.97807516802,0.914838055046,0.848870683724,0.779627022981,0.706734370621,0.63029288561,0.551276671926,0.472036139544,0.397081313176,0.334701475827,0.298870742203,0.304682267797,0.353524849707,0.429355782099,0.511529593456,0.582375198617,0.627136593541,0.632741042804,0.587312116462,0.481416129653,0.315261963983,0.122949664215,0.0131443108096,0.100652688914,0.254901615756,0.26074078953,0.139030694249,0.0647751017678,0.0902983952297,0.0209215889103,0.131706399707,0.339979614593,0.615743461036,0.928926390167,1.24400532591,1.53723036502,1.79827671003,2.02715550715,2.23010692764,2.41635563294,2.59585009453,2.77596331336,2.95598503709,3.12312156598,3.2560136643,3.33579544629,3.35643638508,3.32522525093,3.2525988205,3.14131640858,2.98633729862,2.7864016878,2.56029849916,2.35985259191,2.25629755636,2.28626802629,2.48347833568,2.88416837961]] +} \ No newline at end of file diff --git a/packages/turf-isobands/test/in/matrix1.json b/packages/turf-isobands/test/in/matrix1.json new file mode 100644 index 000000000..16ea0b2af --- /dev/null +++ b/packages/turf-isobands/test/in/matrix1.json @@ -0,0 +1,14 @@ +{ + "matrix": [ + [ 1, 1, 1, 1, 1, 1, 1], + [ 1, 5, 5, 5, 5, 5, 1], + [ 1, 5, 15, 15, 15, 5, 1], + [ 1, 5, 10, 10, 10, 5, 1], + [ 1, 5, 5, 5, 5, 5, 1], + [ 1, 1, 1, 1, 1, 1, 1] + ], + "origin": [ 10.8, 44.1 ], + "cellSize": 20, + "breaks": [2, 4, 8, 12], + "zProperty": "temperature" +} \ No newline at end of file diff --git a/packages/turf-isobands/test/in/matrix2.json b/packages/turf-isobands/test/in/matrix2.json new file mode 100644 index 000000000..12e1b6e81 --- /dev/null +++ b/packages/turf-isobands/test/in/matrix2.json @@ -0,0 +1,32 @@ +{ + "matrix": [ + [18, 13, 10, 9, 10, 13, 18], + [13, 8, 5, 4, 5, 8, 13], + [10, 5, 2, 1, 2, 5, 10], + [10, 5, 2, 1, 2, 5, 10], + [ 9, 4, 1, 12, 1, 4, 9], + [10, 5, 2, 1, 2, 5, 10], + [10, 5, 2, 1, 2, 5, 10], + [13, 8, 5, 4, 5, 8, 13], + [18, 13, 10, 9, 10, 13, 18] +], + "origin": [ 10.85, 44 ], + "cellSize": 20, + "breaks": [0, 4.5, 9, 13.5, 18], + "commonProperties": { + "stroke-width": 3, + "stroke": "darkred", + "fill": "darkred" + }, + "isobandProperties": [ + { + "fill-opacity": 0.4 + },{ + "fill-opacity": 0.5 + },{ + "fill-opacity": 0.7 + },{ + "fill-opacity": 0.8 + } + ] +} diff --git a/packages/turf-isobands/test/in/pointGrid.geojson b/packages/turf-isobands/test/in/pointGrid.geojson new file mode 100644 index 000000000..08ddffca5 --- /dev/null +++ b/packages/turf-isobands/test/in/pointGrid.geojson @@ -0,0 +1,485 @@ +{ + "type": "FeatureCollection", + "properties": { + "breaks": [0, 20, 40, 80, 160], + "isobandProperties": [ + { + "fill-opacity": 0.5 + }, + { + "fill-opacity": 0.6 + }, + { + "fill-opacity": 0.7 + }, + { + "fill-opacity": 0.8 + } + ], + "zProperty": "people" + }, + "features": [ + { + "type": "Feature", + "properties": { "people": 4 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.823364, + -33.553984 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 42 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.823364, + -33.50903203113676 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 65 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.823364, + -33.464080062273524 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 6 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.823364, + -33.419128093410286 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 56 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.823364, + -33.37417612454705 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 155 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.823364, + -33.32922415568381 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 15 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76942368848808, + -33.553984 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 0 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76942368848808, + -33.50903203113676 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 34 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76942368848808, + -33.464080062273524 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 3 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76942368848808, + -33.419128093410286 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 3 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76942368848808, + -33.37417612454705 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 36 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76942368848808, + -33.32922415568381 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 67 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71548337697615, + -33.553984 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 7 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71548337697615, + -33.50903203113676 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 17 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71548337697615, + -33.464080062273524 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 27 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71548337697615, + -33.419128093410286 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 37 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71548337697615, + -33.37417612454705 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 78 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71548337697615, + -33.32922415568381 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 10 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66154306546423, + -33.553984 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 0 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66154306546423, + -33.50903203113676 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 53 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66154306546423, + -33.464080062273524 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 53 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66154306546423, + -33.419128093410286 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 84 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66154306546423, + -33.37417612454705 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 43 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66154306546423, + -33.32922415568381 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 43 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6076027539523, + -33.553984 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 18 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6076027539523, + -33.50903203113676 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 16 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6076027539523, + -33.464080062273524 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 94 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6076027539523, + -33.419128093410286 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 94 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6076027539523, + -33.37417612454705 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 4 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6076027539523, + -33.32922415568381 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 57 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.55366244244038, + -33.553984 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 5 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.55366244244038, + -33.50903203113676 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 5 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.55366244244038, + -33.464080062273524 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 65 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.55366244244038, + -33.419128093410286 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 90 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.55366244244038, + -33.37417612454705 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 9 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.55366244244038, + -33.32922415568381 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 33 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.49972213092846, + -33.553984 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 78 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.49972213092846, + -33.50903203113676 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 36 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.49972213092846, + -33.464080062273524 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 3 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.49972213092846, + -33.419128093410286 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 1 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.49972213092846, + -33.37417612454705 + ] + } + }, + { + "type": "Feature", + "properties": { "people": 7 }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.49972213092846, + -33.32922415568381 + ] + } + } + ] + } diff --git a/packages/turf-isobands/test/out/bigMatrix.json b/packages/turf-isobands/test/out/bigMatrix.json new file mode 100644 index 000000000..7e61c5083 --- /dev/null +++ b/packages/turf-isobands/test/out/bigMatrix.json @@ -0,0 +1,8306 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "stroke-width": 4, + "fill-opacity": 0.4, + "stroke": "grey", + "fill": "grey", + "pressure": "0-0.24" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 7.398315263157895, + 46.78637836081016 + ], + [ + 7.380376410038116, + 46.79341566666667 + ], + [ + 7.308483736842105, + 46.84171166867651 + ], + [ + 7.292470884592384, + 46.85444764102564 + ], + [ + 7.252601333640559, + 46.91547961538461 + ], + [ + 7.218652210526316, + 46.97245678238458 + ], + [ + 7.2152949068674195, + 46.97651158974359 + ], + [ + 7.13799757984084, + 47.03754356410256 + ], + [ + 7.128820684210527, + 47.044593440893514 + ], + [ + 7.082901195623348, + 47.09857553846154 + ], + [ + 7.06388383779606, + 47.159607512820514 + ], + [ + 7.0788749474694335, + 47.22063948717948 + ], + [ + 7.128820684210527, + 47.271671286133845 + ], + [ + 7.143053348696189, + 47.28167146153846 + ], + [ + 7.218652210526316, + 47.31079818408388 + ], + [ + 7.308483736842105, + 47.31568517048549 + ], + [ + 7.398315263157895, + 47.28887687237767 + ], + [ + 7.407548067921348, + 47.28167146153846 + ], + [ + 7.473333440361864, + 47.22063948717948 + ], + [ + 7.488146789473684, + 47.18879232407993 + ], + [ + 7.501545478201924, + 47.159607512820514 + ], + [ + 7.513702054149687, + 47.09857553846154 + ], + [ + 7.577978315789474, + 47.053026651191026 + ], + [ + 7.605648628406885, + 47.03754356410256 + ], + [ + 7.667809842105264, + 47.00353769715921 + ], + [ + 7.703502389746914, + 46.97651158974359 + ], + [ + 7.726127049866263, + 46.91547961538461 + ], + [ + 7.702172981303771, + 46.85444764102564 + ], + [ + 7.667809842105264, + 46.823214786868355 + ], + [ + 7.614188156366512, + 46.79341566666667 + ], + [ + 7.577978315789474, + 46.77871995224942 + ], + [ + 7.488146789473684, + 46.7696432678674 + ], + [ + 7.398315263157895, + 46.78637836081016 + ] + ] + ], + [ + [ + [ + 10.722081736842107, + 46.0518220422109 + ], + [ + 10.70395123354298, + 46.061031974358976 + ], + [ + 10.632250210526315, + 46.119901684191525 + ], + [ + 10.630116491611707, + 46.12206394871795 + ], + [ + 10.59630140642263, + 46.18309592307692 + ], + [ + 10.581508868427846, + 46.244127897435895 + ], + [ + 10.582517754137939, + 46.30515987179487 + ], + [ + 10.597932335843975, + 46.366191846153846 + ], + [ + 10.632250210526315, + 46.424351012316485 + ], + [ + 10.633840514198633, + 46.42722382051282 + ], + [ + 10.718420603120894, + 46.4882557948718 + ], + [ + 10.722081736842107, + 46.489799009678094 + ], + [ + 10.811913263157894, + 46.50941798596137 + ], + [ + 10.901744789473685, + 46.50015373603454 + ], + [ + 10.932426163683779, + 46.4882557948718 + ], + [ + 10.991576315789473, + 46.45159643858955 + ], + [ + 11.019420556532108, + 46.42722382051282 + ], + [ + 11.053741864001676, + 46.366191846153846 + ], + [ + 11.07394462779175, + 46.30515987179487 + ], + [ + 11.081407842105264, + 46.26219759719764 + ], + [ + 11.084190018505062, + 46.244127897435895 + ], + [ + 11.08190041949705, + 46.18309592307692 + ], + [ + 11.081407842105264, + 46.18178255961789 + ], + [ + 11.058015263215974, + 46.12206394871795 + ], + [ + 10.992729544633837, + 46.061031974358976 + ], + [ + 10.991576315789473, + 46.060340184731935 + ], + [ + 10.901744789473685, + 46.02935603581749 + ], + [ + 10.811913263157894, + 46.0271989913069 + ], + [ + 10.722081736842107, + 46.0518220422109 + ] + ] + ], + [ + [ + [ + 8.027135947368421, + 46.945745134770895 + ], + [ + 7.970501963263038, + 46.97651158974359 + ], + [ + 7.951981360115482, + 47.03754356410256 + ], + [ + 7.975320721554365, + 47.09857553846154 + ], + [ + 7.978288642626314, + 47.159607512820514 + ], + [ + 7.995342772892842, + 47.22063948717948 + ], + [ + 8.027135947368421, + 47.25846821117862 + ], + [ + 8.084172495258303, + 47.28167146153846 + ], + [ + 8.11696747368421, + 47.29530425891444 + ], + [ + 8.187639171824028, + 47.28167146153846 + ], + [ + 8.206799, + 47.27502532147758 + ], + [ + 8.259464277825463, + 47.22063948717948 + ], + [ + 8.261964313736932, + 47.159607512820514 + ], + [ + 8.255536272868474, + 47.09857553846154 + ], + [ + 8.264777937814891, + 47.03754356410256 + ], + [ + 8.232094358750784, + 46.97651158974359 + ], + [ + 8.206799, + 46.95876484618898 + ], + [ + 8.11696747368421, + 46.93154579611854 + ], + [ + 8.027135947368421, + 46.945745134770895 + ] + ] + ], + [ + [ + [ + 12.174694475386174, + 46 + ], + [ + 12.249217684210528, + 46.05076794371403 + ], + [ + 12.275871237635073, + 46.061031974358976 + ], + [ + 12.339049210526316, + 46.08912423791687 + ], + [ + 12.383805312251642, + 46.12206394871795 + ], + [ + 12.428880736842107, + 46.14531022192345 + ], + [ + 12.518712263157894, + 46.180451201335146 + ], + [ + 12.608543789473686, + 46.166882770084726 + ], + [ + 12.664935236335563, + 46.12206394871795 + ], + [ + 12.674394413293847, + 46.061031974358976 + ], + [ + 12.655252529288726, + 46 + ], + [ + 12.608543789473686, + 46 + ], + [ + 12.518712263157894, + 46 + ], + [ + 12.428880736842107, + 46 + ], + [ + 12.339049210526316, + 46 + ], + [ + 12.249217684210528, + 46 + ], + [ + 12.174694475386174, + 46 + ] + ] + ], + [ + [ + [ + 6.589831526315789, + 48.15746248095407 + ], + [ + 6.5, + 48.14574739562293 + ], + [ + 6.5, + 48.19715107692308 + ], + [ + 6.5, + 48.258183051282046 + ], + [ + 6.5, + 48.31921502564102 + ], + [ + 6.5, + 48.3375444073304 + ], + [ + 6.562868907154114, + 48.380247 + ], + [ + 6.589831526315789, + 48.380247 + ], + [ + 6.679663052631579, + 48.380247 + ], + [ + 6.769494578947368, + 48.380247 + ], + [ + 6.835579641836661, + 48.380247 + ], + [ + 6.820951509969474, + 48.31921502564102 + ], + [ + 6.780822968749551, + 48.258183051282046 + ], + [ + 6.769494578947368, + 48.24738669779161 + ], + [ + 6.698279644311106, + 48.19715107692308 + ], + [ + 6.679663052631579, + 48.187204271025735 + ], + [ + 6.589831526315789, + 48.15746248095407 + ] + ] + ], + [ + [ + [ + 10.183092578947369, + 46.60975980018051 + ], + [ + 10.182347555634056, + 46.61031974358974 + ], + [ + 10.14070758567087, + 46.67135171794872 + ], + [ + 10.167894431248492, + 46.73238369230769 + ], + [ + 10.183092578947369, + 46.74454330923754 + ], + [ + 10.272924105263158, + 46.77979091369726 + ], + [ + 10.362755631578947, + 46.77067686589409 + ], + [ + 10.389638002296188, + 46.73238369230769 + ], + [ + 10.41292580226016, + 46.67135171794872 + ], + [ + 10.368702566366466, + 46.61031974358974 + ], + [ + 10.362755631578947, + 46.606357246619744 + ], + [ + 10.272924105263158, + 46.58348880288538 + ], + [ + 10.183092578947369, + 46.60975980018051 + ] + ] + ], + [ + [ + [ + 12.428880736842107, + 46.726723945703604 + ], + [ + 12.40695777667458, + 46.73238369230769 + ], + [ + 12.339049210526316, + 46.7569512505973 + ], + [ + 12.249217684210528, + 46.79217084346674 + ], + [ + 12.247608636381777, + 46.79341566666667 + ], + [ + 12.231836363228126, + 46.85444764102564 + ], + [ + 12.249217684210528, + 46.86804283996234 + ], + [ + 12.339049210526316, + 46.895603317576104 + ], + [ + 12.428880736842107, + 46.86000087574426 + ], + [ + 12.444632133722841, + 46.85444764102564 + ], + [ + 12.518712263157894, + 46.829650557411995 + ], + [ + 12.554619278422255, + 46.79341566666667 + ], + [ + 12.52513892732837, + 46.73238369230769 + ], + [ + 12.518712263157894, + 46.72805290557764 + ], + [ + 12.428880736842107, + 46.726723945703604 + ] + ] + ], + [ + [ + [ + 11.80006005263158, + 46.81643935870521 + ], + [ + 11.73787431196289, + 46.85444764102564 + ], + [ + 11.731443774283406, + 46.91547961538461 + ], + [ + 11.80006005263158, + 46.9618818881132 + ], + [ + 11.88989157894737, + 46.958142557710175 + ], + [ + 11.947149034775773, + 46.91547961538461 + ], + [ + 11.942216031487224, + 46.85444764102564 + ], + [ + 11.88989157894737, + 46.81919279278813 + ], + [ + 11.80006005263158, + 46.81643935870521 + ] + ] + ], + [ + [ + [ + 11.7453843489349, + 46 + ], + [ + 11.80006005263158, + 46.057481067902344 + ], + [ + 11.808631417115954, + 46.061031974358976 + ], + [ + 11.88989157894737, + 46.0806306852871 + ], + [ + 11.979723105263158, + 46.06462275658169 + ], + [ + 11.989246316044696, + 46.061031974358976 + ], + [ + 12.060876225087965, + 46 + ], + [ + 11.979723105263158, + 46 + ], + [ + 11.88989157894737, + 46 + ], + [ + 11.80006005263158, + 46 + ], + [ + 11.7453843489349, + 46 + ] + ] + ], + [ + [ + [ + 10.362755631578947, + 46.80299136948487 + ], + [ + 10.28089599198323, + 46.85444764102564 + ], + [ + 10.295875076875877, + 46.91547961538461 + ], + [ + 10.362755631578947, + 46.94057967609499 + ], + [ + 10.430654539245282, + 46.91547961538461 + ], + [ + 10.443460973467914, + 46.85444764102564 + ], + [ + 10.362755631578947, + 46.80299136948487 + ] + ] + ], + [ + [ + [ + 10.542418684210528, + 47.370302124008326 + ], + [ + 10.461392279175962, + 47.40373541025641 + ], + [ + 10.520455447161183, + 47.464767384615385 + ], + [ + 10.542418684210528, + 47.47226235971279 + ], + [ + 10.563710374376068, + 47.464767384615385 + ], + [ + 10.61385560769536, + 47.40373541025641 + ], + [ + 10.542418684210528, + 47.370302124008326 + ] + ] + ], + [ + [ + [ + 13.237364473684211, + 46.418189972552135 + ], + [ + 13.224207463209373, + 46.42722382051282 + ], + [ + 13.237364473684211, + 46.466037106871845 + ], + [ + 13.299654250734793, + 46.42722382051282 + ], + [ + 13.237364473684211, + 46.418189972552135 + ] + ] + ], + [ + [ + [ + 10.272924105263158, + 47.004816010338125 + ], + [ + 10.24554327736924, + 47.03754356410256 + ], + [ + 10.272924105263158, + 47.044646840442105 + ], + [ + 10.301571917457025, + 47.03754356410256 + ], + [ + 10.272924105263158, + 47.004816010338125 + ] + ] + ], + [ + [ + [ + 13.59669057894737, + 46.346048551310695 + ], + [ + 13.568979742835236, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.38348135665017 + ], + [ + 13.624456667779034, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.346048551310695 + ] + ] + ], + [ + [ + [ + 13.057701421052633, + 47.08874299910846 + ], + [ + 13.044710097687204, + 47.09857553846154 + ], + [ + 13.057701421052633, + 47.116004377678124 + ], + [ + 13.0956809253295, + 47.09857553846154 + ], + [ + 13.057701421052633, + 47.08874299910846 + ] + ] + ], + [ + [ + [ + 14.764500421052633, + 46.17755957485575 + ], + [ + 14.755674596793542, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.19107267669191 + ], + [ + 14.777167856705187, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.17755957485575 + ] + ] + ], + [ + [ + [ + 14.135679736842107, + 46.36580535684206 + ], + [ + 14.135504645328648, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.36654814333599 + ], + [ + 14.13734843551649, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.36580535684206 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 4, + "fill-opacity": 0.4, + "stroke": "blue", + "fill": "blue", + "pressure": "0.24-0.5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 7.308483736842105, + 46.65472138102323 + ], + [ + 7.234228833067481, + 46.67135171794872 + ], + [ + 7.218652210526316, + 46.675576307167546 + ], + [ + 7.128820684210527, + 46.70946659589244 + ], + [ + 7.080387186183757, + 46.73238369230769 + ], + [ + 7.038989157894737, + 46.75739852414919 + ], + [ + 6.983759204750269, + 46.79341566666667 + ], + [ + 6.949157631578948, + 46.821719117985275 + ], + [ + 6.910547514812012, + 46.85444764102564 + ], + [ + 6.859326105263158, + 46.90893206427909 + ], + [ + 6.853383619726064, + 46.91547961538461 + ], + [ + 6.809477372170824, + 46.97651158974359 + ], + [ + 6.77958868228536, + 47.03754356410256 + ], + [ + 6.769494578947368, + 47.074454243814245 + ], + [ + 6.762608209376124, + 47.09857553846154 + ], + [ + 6.758611663862287, + 47.159607512820514 + ], + [ + 6.769239996288558, + 47.22063948717948 + ], + [ + 6.769494578947368, + 47.22125177624347 + ], + [ + 6.794163068176286, + 47.28167146153846 + ], + [ + 6.839949375438671, + 47.342703435897434 + ], + [ + 6.859326105263158, + 47.36073594567016 + ], + [ + 6.91526587445361, + 47.40373541025641 + ], + [ + 6.949157631578948, + 47.423607549322774 + ], + [ + 7.038989157894737, + 47.45917232015775 + ], + [ + 7.0656213618913855, + 47.464767384615385 + ], + [ + 7.128820684210527, + 47.477897167275145 + ], + [ + 7.218652210526316, + 47.48136844856386 + ], + [ + 7.308483736842105, + 47.46752290895908 + ], + [ + 7.315387844860942, + 47.464767384615385 + ], + [ + 7.398315263157895, + 47.43526263808003 + ], + [ + 7.437113014779131, + 47.40373541025641 + ], + [ + 7.488146789473684, + 47.358652889451285 + ], + [ + 7.497703871928112, + 47.342703435897434 + ], + [ + 7.537877937807997, + 47.28167146153846 + ], + [ + 7.577978315789474, + 47.222659660765125 + ], + [ + 7.579400331049095, + 47.22063948717948 + ], + [ + 7.642988518546762, + 47.159607512820514 + ], + [ + 7.667809842105264, + 47.14120371069679 + ], + [ + 7.757641368421053, + 47.11678170992724 + ], + [ + 7.847472894736843, + 47.139523503014374 + ], + [ + 7.866207027557467, + 47.159607512820514 + ], + [ + 7.9265432194053735, + 47.22063948717948 + ], + [ + 7.937304421052632, + 47.23306437081406 + ], + [ + 7.976835896308461, + 47.28167146153846 + ], + [ + 8.024566897752342, + 47.342703435897434 + ], + [ + 8.027135947368421, + 47.346697944854064 + ], + [ + 8.11696747368421, + 47.39363449800225 + ], + [ + 8.206799, + 47.39443528346959 + ], + [ + 8.29663052631579, + 47.362960149754 + ], + [ + 8.324382614856338, + 47.342703435897434 + ], + [ + 8.379815581868025, + 47.28167146153846 + ], + [ + 8.386462052631579, + 47.2644895028203 + ], + [ + 8.400359724010215, + 47.22063948717948 + ], + [ + 8.399147673441286, + 47.159607512820514 + ], + [ + 8.386462052631579, + 47.10835222076057 + ], + [ + 8.384147766738046, + 47.09857553846154 + ], + [ + 8.358530520392533, + 47.03754356410256 + ], + [ + 8.316711096865241, + 46.97651158974359 + ], + [ + 8.29663052631579, + 46.9598937694402 + ], + [ + 8.233185129607326, + 46.91547961538461 + ], + [ + 8.206799, + 46.901327409377906 + ], + [ + 8.11696747368421, + 46.87347750019927 + ], + [ + 8.027135947368421, + 46.86056851235703 + ], + [ + 7.971873170546577, + 46.85444764102564 + ], + [ + 7.937304421052632, + 46.848787193264506 + ], + [ + 7.847472894736843, + 46.80963718310505 + ], + [ + 7.8280852815990505, + 46.79341566666667 + ], + [ + 7.757641368421053, + 46.744951568484915 + ], + [ + 7.73736925876012, + 46.73238369230769 + ], + [ + 7.667809842105264, + 46.69543976019583 + ], + [ + 7.59637666207, + 46.67135171794872 + ], + [ + 7.577978315789474, + 46.66488645864077 + ], + [ + 7.488146789473684, + 46.64869179627066 + ], + [ + 7.398315263157895, + 46.64571100928355 + ], + [ + 7.308483736842105, + 46.65472138102323 + ] + ], + [ + [ + 7.380376410038116, + 46.79341566666667 + ], + [ + 7.398315263157895, + 46.78637836081016 + ], + [ + 7.488146789473684, + 46.7696432678674 + ], + [ + 7.577978315789474, + 46.77871995224942 + ], + [ + 7.614188156366512, + 46.79341566666667 + ], + [ + 7.667809842105264, + 46.823214786868355 + ], + [ + 7.702172981303771, + 46.85444764102564 + ], + [ + 7.726127049866263, + 46.91547961538461 + ], + [ + 7.703502389746914, + 46.97651158974359 + ], + [ + 7.667809842105264, + 47.00353769715921 + ], + [ + 7.605648628406885, + 47.03754356410256 + ], + [ + 7.577978315789474, + 47.053026651191026 + ], + [ + 7.513702054149687, + 47.09857553846154 + ], + [ + 7.501545478201924, + 47.159607512820514 + ], + [ + 7.488146789473684, + 47.18879232407993 + ], + [ + 7.473333440361864, + 47.22063948717948 + ], + [ + 7.407548067921348, + 47.28167146153846 + ], + [ + 7.398315263157895, + 47.28887687237767 + ], + [ + 7.308483736842105, + 47.31568517048549 + ], + [ + 7.218652210526316, + 47.31079818408388 + ], + [ + 7.143053348696189, + 47.28167146153846 + ], + [ + 7.128820684210527, + 47.271671286133845 + ], + [ + 7.0788749474694335, + 47.22063948717948 + ], + [ + 7.06388383779606, + 47.159607512820514 + ], + [ + 7.082901195623348, + 47.09857553846154 + ], + [ + 7.128820684210527, + 47.044593440893514 + ], + [ + 7.13799757984084, + 47.03754356410256 + ], + [ + 7.2152949068674195, + 46.97651158974359 + ], + [ + 7.218652210526316, + 46.97245678238458 + ], + [ + 7.252601333640559, + 46.91547961538461 + ], + [ + 7.292470884592384, + 46.85444764102564 + ], + [ + 7.308483736842105, + 46.84171166867651 + ], + [ + 7.380376410038116, + 46.79341566666667 + ] + ], + [ + [ + 7.970501963263038, + 46.97651158974359 + ], + [ + 8.027135947368421, + 46.945745134770895 + ], + [ + 8.11696747368421, + 46.93154579611854 + ], + [ + 8.206799, + 46.95876484618898 + ], + [ + 8.232094358750784, + 46.97651158974359 + ], + [ + 8.264777937814891, + 47.03754356410256 + ], + [ + 8.255536272868474, + 47.09857553846154 + ], + [ + 8.261964313736932, + 47.159607512820514 + ], + [ + 8.259464277825463, + 47.22063948717948 + ], + [ + 8.206799, + 47.27502532147758 + ], + [ + 8.187639171824028, + 47.28167146153846 + ], + [ + 8.11696747368421, + 47.29530425891444 + ], + [ + 8.084172495258303, + 47.28167146153846 + ], + [ + 8.027135947368421, + 47.25846821117862 + ], + [ + 7.995342772892842, + 47.22063948717948 + ], + [ + 7.978288642626314, + 47.159607512820514 + ], + [ + 7.975320721554365, + 47.09857553846154 + ], + [ + 7.951981360115482, + 47.03754356410256 + ], + [ + 7.970501963263038, + 46.97651158974359 + ] + ] + ], + [ + [ + [ + 10.452587157894737, + 46.05129011680478 + ], + [ + 10.442775353676284, + 46.061031974358976 + ], + [ + 10.398843198513616, + 46.12206394871795 + ], + [ + 10.37204032763577, + 46.18309592307692 + ], + [ + 10.362755631578947, + 46.222255739337434 + ], + [ + 10.356985460841745, + 46.244127897435895 + ], + [ + 10.350010526247612, + 46.30515987179487 + ], + [ + 10.345797446545525, + 46.366191846153846 + ], + [ + 10.323354953592773, + 46.42722382051282 + ], + [ + 10.272924105263158, + 46.452962276931856 + ], + [ + 10.201133839063608, + 46.4882557948718 + ], + [ + 10.183092578947369, + 46.493077164978764 + ], + [ + 10.093862108224123, + 46.549287769230766 + ], + [ + 10.09326105263158, + 46.54976762065464 + ], + [ + 10.046749063152316, + 46.61031974358974 + ], + [ + 10.035510259501995, + 46.67135171794872 + ], + [ + 10.058674960555766, + 46.73238369230769 + ], + [ + 10.09326105263158, + 46.768469560172655 + ], + [ + 10.12279282324276, + 46.79341566666667 + ], + [ + 10.183092578947369, + 46.85435470729818 + ], + [ + 10.183155337941207, + 46.85444764102564 + ], + [ + 10.215790982977532, + 46.91547961538461 + ], + [ + 10.2531419934295, + 46.97651158974359 + ], + [ + 10.215243781515671, + 47.03754356410256 + ], + [ + 10.272924105263158, + 47.05250729275679 + ], + [ + 10.33327345220042, + 47.03754356410256 + ], + [ + 10.362755631578947, + 46.976772111862154 + ], + [ + 10.363277860409767, + 46.97651158974359 + ], + [ + 10.452587157894737, + 46.947952806964466 + ], + [ + 10.509464125148494, + 46.91547961538461 + ], + [ + 10.536779146008868, + 46.85444764102564 + ], + [ + 10.538748331729362, + 46.79341566666667 + ], + [ + 10.542418684210528, + 46.771399032147826 + ], + [ + 10.551560031927652, + 46.73238369230769 + ], + [ + 10.58165538295193, + 46.67135171794872 + ], + [ + 10.632250210526315, + 46.62299072334154 + ], + [ + 10.722081736842107, + 46.613449258444355 + ], + [ + 10.811913263157894, + 46.610596339858844 + ], + [ + 10.814006809782384, + 46.61031974358974 + ], + [ + 10.901744789473685, + 46.6010991299157 + ], + [ + 10.991576315789473, + 46.57819136513881 + ], + [ + 11.056821325247052, + 46.549287769230766 + ], + [ + 11.081407842105264, + 46.53565236278397 + ], + [ + 11.146824013709562, + 46.4882557948718 + ], + [ + 11.171239368421054, + 46.46175740033248 + ], + [ + 11.202100368036067, + 46.42722382051282 + ], + [ + 11.237988759001194, + 46.366191846153846 + ], + [ + 11.260198038353604, + 46.30515987179487 + ], + [ + 11.261070894736843, + 46.30020890651486 + ], + [ + 11.272818616593701, + 46.244127897435895 + ], + [ + 11.272661625728995, + 46.18309592307692 + ], + [ + 11.261070894736843, + 46.1404750933692 + ], + [ + 11.256654497869494, + 46.12206394871795 + ], + [ + 11.223814089209405, + 46.061031974358976 + ], + [ + 11.171239368421054, + 46.01073566480352 + ], + [ + 11.158635340923126, + 46 + ], + [ + 11.081407842105264, + 46 + ], + [ + 10.991576315789473, + 46 + ], + [ + 10.901744789473685, + 46 + ], + [ + 10.811913263157894, + 46 + ], + [ + 10.722081736842107, + 46 + ], + [ + 10.632250210526315, + 46 + ], + [ + 10.542418684210528, + 46 + ], + [ + 10.510717278491363, + 46 + ], + [ + 10.452587157894737, + 46.05129011680478 + ] + ], + [ + [ + 10.70395123354298, + 46.061031974358976 + ], + [ + 10.722081736842107, + 46.0518220422109 + ], + [ + 10.811913263157894, + 46.0271989913069 + ], + [ + 10.901744789473685, + 46.02935603581749 + ], + [ + 10.991576315789473, + 46.060340184731935 + ], + [ + 10.992729544633837, + 46.061031974358976 + ], + [ + 11.058015263215974, + 46.12206394871795 + ], + [ + 11.081407842105264, + 46.18178255961789 + ], + [ + 11.08190041949705, + 46.18309592307692 + ], + [ + 11.084190018505062, + 46.244127897435895 + ], + [ + 11.081407842105264, + 46.26219759719764 + ], + [ + 11.07394462779175, + 46.30515987179487 + ], + [ + 11.053741864001676, + 46.366191846153846 + ], + [ + 11.019420556532108, + 46.42722382051282 + ], + [ + 10.991576315789473, + 46.45159643858955 + ], + [ + 10.932426163683779, + 46.4882557948718 + ], + [ + 10.901744789473685, + 46.50015373603454 + ], + [ + 10.811913263157894, + 46.50941798596137 + ], + [ + 10.722081736842107, + 46.489799009678094 + ], + [ + 10.718420603120894, + 46.4882557948718 + ], + [ + 10.633840514198633, + 46.42722382051282 + ], + [ + 10.632250210526315, + 46.424351012316485 + ], + [ + 10.597932335843975, + 46.366191846153846 + ], + [ + 10.582517754137939, + 46.30515987179487 + ], + [ + 10.581508868427846, + 46.244127897435895 + ], + [ + 10.59630140642263, + 46.18309592307692 + ], + [ + 10.630116491611707, + 46.12206394871795 + ], + [ + 10.632250210526315, + 46.119901684191525 + ], + [ + 10.70395123354298, + 46.061031974358976 + ] + ], + [ + [ + 10.182347555634056, + 46.61031974358974 + ], + [ + 10.183092578947369, + 46.60975980018051 + ], + [ + 10.272924105263158, + 46.58348880288538 + ], + [ + 10.362755631578947, + 46.606357246619744 + ], + [ + 10.368702566366466, + 46.61031974358974 + ], + [ + 10.41292580226016, + 46.67135171794872 + ], + [ + 10.389638002296188, + 46.73238369230769 + ], + [ + 10.362755631578947, + 46.77067686589409 + ], + [ + 10.272924105263158, + 46.77979091369726 + ], + [ + 10.183092578947369, + 46.74454330923754 + ], + [ + 10.167894431248492, + 46.73238369230769 + ], + [ + 10.14070758567087, + 46.67135171794872 + ], + [ + 10.182347555634056, + 46.61031974358974 + ] + ], + [ + [ + 10.28089599198323, + 46.85444764102564 + ], + [ + 10.362755631578947, + 46.80299136948487 + ], + [ + 10.443460973467914, + 46.85444764102564 + ], + [ + 10.430654539245282, + 46.91547961538461 + ], + [ + 10.362755631578947, + 46.94057967609499 + ], + [ + 10.295875076875877, + 46.91547961538461 + ], + [ + 10.28089599198323, + 46.85444764102564 + ] + ], + [ + [ + 10.24554327736924, + 47.03754356410256 + ], + [ + 10.272924105263158, + 47.004816010338125 + ], + [ + 10.301571917457025, + 47.03754356410256 + ], + [ + 10.272924105263158, + 47.044646840442105 + ], + [ + 10.24554327736924, + 47.03754356410256 + ] + ] + ], + [ + [ + [ + 11.604632309680463, + 46 + ], + [ + 11.620397, + 46.02737706119429 + ], + [ + 11.63612631910664, + 46.061031974358976 + ], + [ + 11.71022852631579, + 46.11594292595374 + ], + [ + 11.722964434261824, + 46.12206394871795 + ], + [ + 11.80006005263158, + 46.14969562299741 + ], + [ + 11.88989157894737, + 46.16105600320718 + ], + [ + 11.979723105263158, + 46.1574939228613 + ], + [ + 12.06955463157895, + 46.14813728136955 + ], + [ + 12.159386157894737, + 46.15385934567552 + ], + [ + 12.249217684210528, + 46.178716091988406 + ], + [ + 12.260074557842131, + 46.18309592307692 + ], + [ + 12.339049210526316, + 46.20698379399212 + ], + [ + 12.428880736842107, + 46.22957987982742 + ], + [ + 12.518712263157894, + 46.23732949965044 + ], + [ + 12.608543789473686, + 46.22424909698002 + ], + [ + 12.694125224938396, + 46.18309592307692 + ], + [ + 12.698375315789475, + 46.179617077409546 + ], + [ + 12.745061604783825, + 46.12206394871795 + ], + [ + 12.75969715225396, + 46.061031974358976 + ], + [ + 12.75050279967893, + 46 + ], + [ + 12.698375315789475, + 46 + ], + [ + 12.655252529288726, + 46 + ], + [ + 12.674394413293847, + 46.061031974358976 + ], + [ + 12.664935236335563, + 46.12206394871795 + ], + [ + 12.608543789473686, + 46.166882770084726 + ], + [ + 12.518712263157894, + 46.180451201335146 + ], + [ + 12.428880736842107, + 46.14531022192345 + ], + [ + 12.383805312251642, + 46.12206394871795 + ], + [ + 12.339049210526316, + 46.08912423791687 + ], + [ + 12.275871237635073, + 46.061031974358976 + ], + [ + 12.249217684210528, + 46.05076794371403 + ], + [ + 12.174694475386174, + 46 + ], + [ + 12.159386157894737, + 46 + ], + [ + 12.06955463157895, + 46 + ], + [ + 12.060876225087965, + 46 + ], + [ + 11.989246316044696, + 46.061031974358976 + ], + [ + 11.979723105263158, + 46.06462275658169 + ], + [ + 11.88989157894737, + 46.0806306852871 + ], + [ + 11.808631417115954, + 46.061031974358976 + ], + [ + 11.80006005263158, + 46.057481067902344 + ], + [ + 11.7453843489349, + 46 + ], + [ + 11.71022852631579, + 46 + ], + [ + 11.620397, + 46 + ], + [ + 11.604632309680463, + 46 + ] + ] + ], + [ + [ + [ + 12.249217684210528, + 46.71341420294193 + ], + [ + 12.208598881286028, + 46.73238369230769 + ], + [ + 12.159386157894737, + 46.77420102482194 + ], + [ + 12.127075251077628, + 46.79341566666667 + ], + [ + 12.09692712933922, + 46.85444764102564 + ], + [ + 12.159386157894737, + 46.880386640516335 + ], + [ + 12.199078401037085, + 46.91547961538461 + ], + [ + 12.249217684210528, + 46.9312566304113 + ], + [ + 12.339049210526316, + 46.93833643268275 + ], + [ + 12.428880736842107, + 46.915551826329654 + ], + [ + 12.429048827605552, + 46.91547961538461 + ], + [ + 12.518712263157894, + 46.875341606890466 + ], + [ + 12.551096080490204, + 46.85444764102564 + ], + [ + 12.606916763023627, + 46.79341566666667 + ], + [ + 12.587429828048126, + 46.73238369230769 + ], + [ + 12.518712263157894, + 46.68607644639385 + ], + [ + 12.428880736842107, + 46.67563922129675 + ], + [ + 12.339049210526316, + 46.68850214842839 + ], + [ + 12.249217684210528, + 46.71341420294193 + ] + ], + [ + [ + 12.40695777667458, + 46.73238369230769 + ], + [ + 12.428880736842107, + 46.726723945703604 + ], + [ + 12.518712263157894, + 46.72805290557764 + ], + [ + 12.52513892732837, + 46.73238369230769 + ], + [ + 12.554619278422255, + 46.79341566666667 + ], + [ + 12.518712263157894, + 46.829650557411995 + ], + [ + 12.444632133722841, + 46.85444764102564 + ], + [ + 12.428880736842107, + 46.86000087574426 + ], + [ + 12.339049210526316, + 46.895603317576104 + ], + [ + 12.249217684210528, + 46.86804283996234 + ], + [ + 12.231836363228126, + 46.85444764102564 + ], + [ + 12.247608636381777, + 46.79341566666667 + ], + [ + 12.249217684210528, + 46.79217084346674 + ], + [ + 12.339049210526316, + 46.7569512505973 + ], + [ + 12.40695777667458, + 46.73238369230769 + ] + ] + ], + [ + [ + [ + 6.589831526315789, + 47.984862202710225 + ], + [ + 6.5, + 47.97557140889089 + ], + [ + 6.5, + 48.01405515384615 + ], + [ + 6.5, + 48.075087128205126 + ], + [ + 6.5, + 48.1361191025641 + ], + [ + 6.5, + 48.14574739562293 + ], + [ + 6.589831526315789, + 48.15746248095407 + ], + [ + 6.679663052631579, + 48.187204271025735 + ], + [ + 6.698279644311106, + 48.19715107692308 + ], + [ + 6.769494578947368, + 48.24738669779161 + ], + [ + 6.780822968749551, + 48.258183051282046 + ], + [ + 6.820951509969474, + 48.31921502564102 + ], + [ + 6.835579641836661, + 48.380247 + ], + [ + 6.859326105263158, + 48.380247 + ], + [ + 6.949157631578948, + 48.380247 + ], + [ + 7.038989157894737, + 48.380247 + ], + [ + 7.046409677433883, + 48.380247 + ], + [ + 7.038989157894737, + 48.327203539221244 + ], + [ + 7.0379189265175945, + 48.31921502564102 + ], + [ + 7.016440457168167, + 48.258183051282046 + ], + [ + 6.979028957090741, + 48.19715107692308 + ], + [ + 6.949157631578948, + 48.16287573881326 + ], + [ + 6.922186131689198, + 48.1361191025641 + ], + [ + 6.859326105263158, + 48.0873510239311 + ], + [ + 6.838542810284469, + 48.075087128205126 + ], + [ + 6.769494578947368, + 48.03780976151549 + ], + [ + 6.702108668304921, + 48.01405515384615 + ], + [ + 6.679663052631579, + 48.00578788997678 + ], + [ + 6.589831526315789, + 47.984862202710225 + ] + ] + ], + [ + [ + [ + 11.71022852631579, + 46.781656090530504 + ], + [ + 11.692413485000262, + 46.79341566666667 + ], + [ + 11.642644440047498, + 46.85444764102564 + ], + [ + 11.642746645417311, + 46.91547961538461 + ], + [ + 11.69234575719523, + 46.97651158974359 + ], + [ + 11.71022852631579, + 46.98728641401493 + ], + [ + 11.80006005263158, + 47.015956772931524 + ], + [ + 11.88989157894737, + 47.012273240938356 + ], + [ + 11.977613086410429, + 46.97651158974359 + ], + [ + 11.979723105263158, + 46.974881256234355 + ], + [ + 12.045136297374087, + 46.91547961538461 + ], + [ + 12.058958235693042, + 46.85444764102564 + ], + [ + 12.001318944459426, + 46.79341566666667 + ], + [ + 11.979723105263158, + 46.785775213566005 + ], + [ + 11.88989157894737, + 46.75385452485098 + ], + [ + 11.80006005263158, + 46.75212616907278 + ], + [ + 11.71022852631579, + 46.781656090530504 + ] + ], + [ + [ + 11.73787431196289, + 46.85444764102564 + ], + [ + 11.80006005263158, + 46.81643935870521 + ], + [ + 11.88989157894737, + 46.81919279278813 + ], + [ + 11.942216031487224, + 46.85444764102564 + ], + [ + 11.947149034775773, + 46.91547961538461 + ], + [ + 11.88989157894737, + 46.958142557710175 + ], + [ + 11.80006005263158, + 46.9618818881132 + ], + [ + 11.731443774283406, + 46.91547961538461 + ], + [ + 11.73787431196289, + 46.85444764102564 + ] + ] + ], + [ + [ + [ + 10.542418684210528, + 47.337948734253 + ], + [ + 10.52643933038659, + 47.342703435897434 + ], + [ + 10.452587157894737, + 47.37787206614263 + ], + [ + 10.425218269476005, + 47.40373541025641 + ], + [ + 10.431687963706558, + 47.464767384615385 + ], + [ + 10.452587157894737, + 47.48828224072003 + ], + [ + 10.542418684210528, + 47.51523962264637 + ], + [ + 10.632250210526315, + 47.49118355588736 + ], + [ + 10.664520503743958, + 47.464767384615385 + ], + [ + 10.678115220367296, + 47.40373541025641 + ], + [ + 10.632250210526315, + 47.36271137221304 + ], + [ + 10.579619672339778, + 47.342703435897434 + ], + [ + 10.542418684210528, + 47.337948734253 + ] + ], + [ + [ + 10.461392279175962, + 47.40373541025641 + ], + [ + 10.542418684210528, + 47.370302124008326 + ], + [ + 10.61385560769536, + 47.40373541025641 + ], + [ + 10.563710374376068, + 47.464767384615385 + ], + [ + 10.542418684210528, + 47.47226235971279 + ], + [ + 10.520455447161183, + 47.464767384615385 + ], + [ + 10.461392279175962, + 47.40373541025641 + ] + ] + ], + [ + [ + [ + 13.237364473684211, + 46.39116550623258 + ], + [ + 13.184848688522159, + 46.42722382051282 + ], + [ + 13.20537221238554, + 46.4882557948718 + ], + [ + 13.237364473684211, + 46.502099259282005 + ], + [ + 13.327196, + 46.49241827055956 + ], + [ + 13.334202873926397, + 46.4882557948718 + ], + [ + 13.35395252538618, + 46.42722382051282 + ], + [ + 13.327196, + 46.402940378754344 + ], + [ + 13.237364473684211, + 46.39116550623258 + ] + ], + [ + [ + 13.224207463209373, + 46.42722382051282 + ], + [ + 13.237364473684211, + 46.418189972552135 + ], + [ + 13.299654250734793, + 46.42722382051282 + ], + [ + 13.237364473684211, + 46.466037106871845 + ], + [ + 13.224207463209373, + 46.42722382051282 + ] + ] + ], + [ + [ + [ + 13.057701421052633, + 47.070126287885245 + ], + [ + 13.020112615102406, + 47.09857553846154 + ], + [ + 13.057701421052633, + 47.1490037540345 + ], + [ + 13.147532947368422, + 47.10767963609089 + ], + [ + 13.150896708495896, + 47.09857553846154 + ], + [ + 13.147532947368422, + 47.09377994104454 + ], + [ + 13.057701421052633, + 47.070126287885245 + ] + ], + [ + [ + 13.044710097687204, + 47.09857553846154 + ], + [ + 13.057701421052633, + 47.08874299910846 + ], + [ + 13.0956809253295, + 47.09857553846154 + ], + [ + 13.057701421052633, + 47.116004377678124 + ], + [ + 13.044710097687204, + 47.09857553846154 + ] + ] + ], + [ + [ + [ + 13.59669057894737, + 46.32220621452156 + ], + [ + 13.536180188817962, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.403945850437424 + ], + [ + 13.657321620925789, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.32220621452156 + ] + ], + [ + [ + 13.568979742835236, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.346048551310695 + ], + [ + 13.624456667779034, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.38348135665017 + ], + [ + 13.568979742835236, + 46.366191846153846 + ] + ] + ], + [ + [ + [ + 14.764500421052633, + 46.16323637724927 + ], + [ + 14.732841129704262, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.21170949607562 + ], + [ + 14.809940033737865, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.16323637724927 + ] + ], + [ + [ + 14.755674596793542, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.17755957485575 + ], + [ + 14.777167856705187, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.19107267669191 + ], + [ + 14.755674596793542, + 46.18309592307692 + ] + ] + ], + [ + [ + [ + 6.5, + 48.359110689480964 + ], + [ + 6.5311179406337985, + 48.380247 + ], + [ + 6.562868907154114, + 48.380247 + ], + [ + 6.5, + 48.3375444073304 + ], + [ + 6.5, + 48.359110689480964 + ] + ] + ], + [ + [ + [ + 14.135679736842107, + 46.35564089210986 + ], + [ + 14.130899831018976, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.37591857100796 + ], + [ + 14.181234329141908, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.35564089210986 + ] + ], + [ + [ + 14.135504645328648, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.36580535684206 + ], + [ + 14.13734843551649, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.36654814333599 + ], + [ + 14.135504645328648, + 46.366191846153846 + ] + ] + ], + [ + [ + [ + 14.764500421052633, + 46.34329667358751 + ], + [ + 14.745605962882394, + 46.366191846153846 + ], + [ + 14.764500421052633, + 46.37411620397344 + ], + [ + 14.767106708063, + 46.366191846153846 + ], + [ + 14.764500421052633, + 46.34329667358751 + ] + ] + ], + [ + [ + [ + 14.764500421052633, + 46.48384285445158 + ], + [ + 14.757509002123895, + 46.4882557948718 + ], + [ + 14.764500421052633, + 46.48906364128925 + ], + [ + 14.765235752526712, + 46.4882557948718 + ], + [ + 14.764500421052633, + 46.48384285445158 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 4, + "fill-opacity": 0.4, + "stroke": "green", + "fill": "green", + "pressure": "0.5-1.5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 8.137023860972217, + 46.061031974358976 + ], + [ + 8.171270614106918, + 46 + ], + [ + 8.11696747368421, + 46 + ], + [ + 8.027135947368421, + 46 + ], + [ + 7.937304421052632, + 46 + ], + [ + 7.847472894736843, + 46 + ], + [ + 7.757641368421053, + 46 + ], + [ + 7.667809842105264, + 46 + ], + [ + 7.577978315789474, + 46 + ], + [ + 7.488146789473684, + 46 + ], + [ + 7.398315263157895, + 46 + ], + [ + 7.308483736842105, + 46 + ], + [ + 7.218652210526316, + 46 + ], + [ + 7.128820684210527, + 46 + ], + [ + 7.038989157894737, + 46 + ], + [ + 6.949157631578948, + 46 + ], + [ + 6.859326105263158, + 46 + ], + [ + 6.769494578947368, + 46 + ], + [ + 6.679663052631579, + 46 + ], + [ + 6.589831526315789, + 46 + ], + [ + 6.5, + 46 + ], + [ + 6.5, + 46.061031974358976 + ], + [ + 6.5, + 46.12206394871795 + ], + [ + 6.5, + 46.18309592307692 + ], + [ + 6.5, + 46.244127897435895 + ], + [ + 6.5, + 46.30515987179487 + ], + [ + 6.5, + 46.366191846153846 + ], + [ + 6.5, + 46.42722382051282 + ], + [ + 6.5, + 46.4882557948718 + ], + [ + 6.5, + 46.549287769230766 + ], + [ + 6.5, + 46.61031974358974 + ], + [ + 6.5, + 46.67135171794872 + ], + [ + 6.5, + 46.73238369230769 + ], + [ + 6.5, + 46.79341566666667 + ], + [ + 6.5, + 46.85444764102564 + ], + [ + 6.5, + 46.91547961538461 + ], + [ + 6.5, + 46.97651158974359 + ], + [ + 6.5, + 47.03754356410256 + ], + [ + 6.5, + 47.09857553846154 + ], + [ + 6.5, + 47.159607512820514 + ], + [ + 6.5, + 47.22063948717948 + ], + [ + 6.5, + 47.28167146153846 + ], + [ + 6.5, + 47.342703435897434 + ], + [ + 6.5, + 47.40373541025641 + ], + [ + 6.5, + 47.464767384615385 + ], + [ + 6.5, + 47.52579935897435 + ], + [ + 6.5, + 47.58683133333333 + ], + [ + 6.5, + 47.647863307692305 + ], + [ + 6.5, + 47.70889528205128 + ], + [ + 6.5, + 47.769927256410256 + ], + [ + 6.5, + 47.83095923076923 + ], + [ + 6.5, + 47.8919912051282 + ], + [ + 6.5, + 47.953023179487175 + ], + [ + 6.5, + 47.97557140889089 + ], + [ + 6.589831526315789, + 47.984862202710225 + ], + [ + 6.679663052631579, + 48.00578788997678 + ], + [ + 6.702108668304921, + 48.01405515384615 + ], + [ + 6.769494578947368, + 48.03780976151549 + ], + [ + 6.838542810284469, + 48.075087128205126 + ], + [ + 6.859326105263158, + 48.0873510239311 + ], + [ + 6.922186131689198, + 48.1361191025641 + ], + [ + 6.949157631578948, + 48.16287573881326 + ], + [ + 6.979028957090741, + 48.19715107692308 + ], + [ + 7.016440457168167, + 48.258183051282046 + ], + [ + 7.0379189265175945, + 48.31921502564102 + ], + [ + 7.038989157894737, + 48.327203539221244 + ], + [ + 7.046409677433883, + 48.380247 + ], + [ + 7.128820684210527, + 48.380247 + ], + [ + 7.218652210526316, + 48.380247 + ], + [ + 7.308483736842105, + 48.380247 + ], + [ + 7.398315263157895, + 48.380247 + ], + [ + 7.488146789473684, + 48.380247 + ], + [ + 7.577978315789474, + 48.380247 + ], + [ + 7.667809842105264, + 48.380247 + ], + [ + 7.757641368421053, + 48.380247 + ], + [ + 7.847472894736843, + 48.380247 + ], + [ + 7.937304421052632, + 48.380247 + ], + [ + 8.027135947368421, + 48.380247 + ], + [ + 8.11696747368421, + 48.380247 + ], + [ + 8.206799, + 48.380247 + ], + [ + 8.29663052631579, + 48.380247 + ], + [ + 8.386462052631579, + 48.380247 + ], + [ + 8.476293578947368, + 48.380247 + ], + [ + 8.566125105263158, + 48.380247 + ], + [ + 8.655956631578947, + 48.380247 + ], + [ + 8.745788157894737, + 48.380247 + ], + [ + 8.835619684210528, + 48.380247 + ], + [ + 8.925451210526315, + 48.380247 + ], + [ + 8.958375874463053, + 48.380247 + ], + [ + 9.015282736842106, + 48.319227695790545 + ], + [ + 9.015294560742513, + 48.31921502564102 + ], + [ + 9.069951625349114, + 48.258183051282046 + ], + [ + 9.105114263157894, + 48.21593653991348 + ], + [ + 9.12087396132776, + 48.19715107692308 + ], + [ + 9.168153163891379, + 48.1361191025641 + ], + [ + 9.194945789473685, + 48.09733732281835 + ], + [ + 9.210648535813597, + 48.075087128205126 + ], + [ + 9.248342749257867, + 48.01405515384615 + ], + [ + 9.27909639560303, + 47.953023179487175 + ], + [ + 9.284777315789475, + 47.93888506791682 + ], + [ + 9.304318463927094, + 47.8919912051282 + ], + [ + 9.322313831442667, + 47.83095923076923 + ], + [ + 9.332970756492067, + 47.769927256410256 + ], + [ + 9.337248909588244, + 47.70889528205128 + ], + [ + 9.336530863219656, + 47.647863307692305 + ], + [ + 9.33240170058321, + 47.58683133333333 + ], + [ + 9.326401125331486, + 47.52579935897435 + ], + [ + 9.319815018916675, + 47.464767384615385 + ], + [ + 9.3135400286025, + 47.40373541025641 + ], + [ + 9.307999110683971, + 47.342703435897434 + ], + [ + 9.303002409947704, + 47.28167146153846 + ], + [ + 9.297193680511976, + 47.22063948717948 + ], + [ + 9.285021683922501, + 47.159607512820514 + ], + [ + 9.284777315789475, + 47.159018203385976 + ], + [ + 9.20150642517778, + 47.09857553846154 + ], + [ + 9.194945789473685, + 47.09748306063216 + ], + [ + 9.105114263157894, + 47.0864698617514 + ], + [ + 9.015282736842106, + 47.076441809858515 + ], + [ + 8.925451210526315, + 47.063125545689594 + ], + [ + 8.835619684210528, + 47.04401124711165 + ], + [ + 8.817381363040166, + 47.03754356410256 + ], + [ + 8.745788157894737, + 47.022495894742804 + ], + [ + 8.655956631578947, + 46.994109972342365 + ], + [ + 8.620539429833983, + 46.97651158974359 + ], + [ + 8.566125105263158, + 46.95898314145807 + ], + [ + 8.481704391793247, + 46.91547961538461 + ], + [ + 8.476293578947368, + 46.91340583918955 + ], + [ + 8.386462052631579, + 46.86283257776223 + ], + [ + 8.373470778591011, + 46.85444764102564 + ], + [ + 8.29663052631579, + 46.802827151924575 + ], + [ + 8.281345012022047, + 46.79341566666667 + ], + [ + 8.20939239068646, + 46.73238369230769 + ], + [ + 8.206799, + 46.728767176966905 + ], + [ + 8.151334530978954, + 46.67135171794872 + ], + [ + 8.11696747368421, + 46.61090659292447 + ], + [ + 8.116500272998344, + 46.61031974358974 + ], + [ + 8.087365422050473, + 46.549287769230766 + ], + [ + 8.070021856696762, + 46.4882557948718 + ], + [ + 8.060830627959726, + 46.42722382051282 + ], + [ + 8.058339572994491, + 46.366191846153846 + ], + [ + 8.062043717556097, + 46.30515987179487 + ], + [ + 8.071803617243692, + 46.244127897435895 + ], + [ + 8.087552506367748, + 46.18309592307692 + ], + [ + 8.109139145883308, + 46.12206394871795 + ], + [ + 8.11696747368421, + 46.10151274139573 + ], + [ + 8.137023860972217, + 46.061031974358976 + ] + ], + [ + [ + 7.234228833067481, + 46.67135171794872 + ], + [ + 7.308483736842105, + 46.65472138102323 + ], + [ + 7.398315263157895, + 46.64571100928355 + ], + [ + 7.488146789473684, + 46.64869179627066 + ], + [ + 7.577978315789474, + 46.66488645864077 + ], + [ + 7.59637666207, + 46.67135171794872 + ], + [ + 7.667809842105264, + 46.69543976019583 + ], + [ + 7.73736925876012, + 46.73238369230769 + ], + [ + 7.757641368421053, + 46.744951568484915 + ], + [ + 7.8280852815990505, + 46.79341566666667 + ], + [ + 7.847472894736843, + 46.80963718310505 + ], + [ + 7.937304421052632, + 46.848787193264506 + ], + [ + 7.971873170546577, + 46.85444764102564 + ], + [ + 8.027135947368421, + 46.86056851235703 + ], + [ + 8.11696747368421, + 46.87347750019927 + ], + [ + 8.206799, + 46.901327409377906 + ], + [ + 8.233185129607326, + 46.91547961538461 + ], + [ + 8.29663052631579, + 46.9598937694402 + ], + [ + 8.316711096865241, + 46.97651158974359 + ], + [ + 8.358530520392533, + 47.03754356410256 + ], + [ + 8.384147766738046, + 47.09857553846154 + ], + [ + 8.386462052631579, + 47.10835222076057 + ], + [ + 8.399147673441286, + 47.159607512820514 + ], + [ + 8.400359724010215, + 47.22063948717948 + ], + [ + 8.386462052631579, + 47.2644895028203 + ], + [ + 8.379815581868025, + 47.28167146153846 + ], + [ + 8.324382614856338, + 47.342703435897434 + ], + [ + 8.29663052631579, + 47.362960149754 + ], + [ + 8.206799, + 47.39443528346959 + ], + [ + 8.11696747368421, + 47.39363449800225 + ], + [ + 8.027135947368421, + 47.346697944854064 + ], + [ + 8.024566897752342, + 47.342703435897434 + ], + [ + 7.976835896308461, + 47.28167146153846 + ], + [ + 7.937304421052632, + 47.23306437081406 + ], + [ + 7.9265432194053735, + 47.22063948717948 + ], + [ + 7.866207027557467, + 47.159607512820514 + ], + [ + 7.847472894736843, + 47.139523503014374 + ], + [ + 7.757641368421053, + 47.11678170992724 + ], + [ + 7.667809842105264, + 47.14120371069679 + ], + [ + 7.642988518546762, + 47.159607512820514 + ], + [ + 7.579400331049095, + 47.22063948717948 + ], + [ + 7.577978315789474, + 47.222659660765125 + ], + [ + 7.537877937807997, + 47.28167146153846 + ], + [ + 7.497703871928112, + 47.342703435897434 + ], + [ + 7.488146789473684, + 47.358652889451285 + ], + [ + 7.437113014779131, + 47.40373541025641 + ], + [ + 7.398315263157895, + 47.43526263808003 + ], + [ + 7.315387844860942, + 47.464767384615385 + ], + [ + 7.308483736842105, + 47.46752290895908 + ], + [ + 7.218652210526316, + 47.48136844856386 + ], + [ + 7.128820684210527, + 47.477897167275145 + ], + [ + 7.0656213618913855, + 47.464767384615385 + ], + [ + 7.038989157894737, + 47.45917232015775 + ], + [ + 6.949157631578948, + 47.423607549322774 + ], + [ + 6.91526587445361, + 47.40373541025641 + ], + [ + 6.859326105263158, + 47.36073594567016 + ], + [ + 6.839949375438671, + 47.342703435897434 + ], + [ + 6.794163068176286, + 47.28167146153846 + ], + [ + 6.769494578947368, + 47.22125177624347 + ], + [ + 6.769239996288558, + 47.22063948717948 + ], + [ + 6.758611663862287, + 47.159607512820514 + ], + [ + 6.762608209376124, + 47.09857553846154 + ], + [ + 6.769494578947368, + 47.074454243814245 + ], + [ + 6.77958868228536, + 47.03754356410256 + ], + [ + 6.809477372170824, + 46.97651158974359 + ], + [ + 6.853383619726064, + 46.91547961538461 + ], + [ + 6.859326105263158, + 46.90893206427909 + ], + [ + 6.910547514812012, + 46.85444764102564 + ], + [ + 6.949157631578948, + 46.821719117985275 + ], + [ + 6.983759204750269, + 46.79341566666667 + ], + [ + 7.038989157894737, + 46.75739852414919 + ], + [ + 7.080387186183757, + 46.73238369230769 + ], + [ + 7.128820684210527, + 46.70946659589244 + ], + [ + 7.218652210526316, + 46.675576307167546 + ], + [ + 7.234228833067481, + 46.67135171794872 + ] + ] + ], + [ + [ + [ + 9.034269675402221, + 46 + ], + [ + 9.094239303114684, + 46.061031974358976 + ], + [ + 9.105114263157894, + 46.07140244755824 + ], + [ + 9.14652568993525, + 46.12206394871795 + ], + [ + 9.192895544203775, + 46.18309592307692 + ], + [ + 9.194945789473685, + 46.18577101093817 + ], + [ + 9.232728432478977, + 46.244127897435895 + ], + [ + 9.266509633667095, + 46.30515987179487 + ], + [ + 9.284777315789475, + 46.344178927340366 + ], + [ + 9.294397023907488, + 46.366191846153846 + ], + [ + 9.317670669730559, + 46.42722382051282 + ], + [ + 9.33545359341053, + 46.4882557948718 + ], + [ + 9.348219693272128, + 46.549287769230766 + ], + [ + 9.356653356094542, + 46.61031974358974 + ], + [ + 9.361519737994652, + 46.67135171794872 + ], + [ + 9.363605856050654, + 46.73238369230769 + ], + [ + 9.363774791186177, + 46.79341566666667 + ], + [ + 9.363191994125101, + 46.85444764102564 + ], + [ + 9.36399665007454, + 46.91547961538461 + ], + [ + 9.372395579423463, + 46.97651158974359 + ], + [ + 9.374608842105264, + 46.982555252319905 + ], + [ + 9.464440368421053, + 47.03236903722146 + ], + [ + 9.554271894736843, + 47.03191074932263 + ], + [ + 9.644103421052632, + 47.02560792647342 + ], + [ + 9.733934947368422, + 47.01874129785055 + ], + [ + 9.823766473684211, + 47.014054711613014 + ], + [ + 9.913598, + 47.01402557314792 + ], + [ + 10.00342952631579, + 47.022403116800476 + ], + [ + 10.045425575720891, + 47.03754356410256 + ], + [ + 10.09326105263158, + 47.044517869862666 + ], + [ + 10.183092578947369, + 47.06752292254145 + ], + [ + 10.272924105263158, + 47.082739801659436 + ], + [ + 10.362755631578947, + 47.06963096504026 + ], + [ + 10.452587157894737, + 47.06008487864508 + ], + [ + 10.542418684210528, + 47.06685249518113 + ], + [ + 10.632250210526315, + 47.09140396439831 + ], + [ + 10.652951350012199, + 47.09857553846154 + ], + [ + 10.70778273990769, + 47.159607512820514 + ], + [ + 10.664529985928347, + 47.22063948717948 + ], + [ + 10.632250210526315, + 47.22937992246956 + ], + [ + 10.542418684210528, + 47.26461534202781 + ], + [ + 10.517061962309231, + 47.28167146153846 + ], + [ + 10.452587157894737, + 47.30638079781268 + ], + [ + 10.386052182274451, + 47.342703435897434 + ], + [ + 10.362755631578947, + 47.3634141875474 + ], + [ + 10.30329846745591, + 47.40373541025641 + ], + [ + 10.272924105263158, + 47.448813558689245 + ], + [ + 10.250589036436121, + 47.464767384615385 + ], + [ + 10.214058624793747, + 47.52579935897435 + ], + [ + 10.195989125119887, + 47.58683133333333 + ], + [ + 10.19438458520434, + 47.647863307692305 + ], + [ + 10.217013790215947, + 47.70889528205128 + ], + [ + 10.272924105263158, + 47.76333241251372 + ], + [ + 10.283734921946376, + 47.769927256410256 + ], + [ + 10.362755631578947, + 47.80662200421462 + ], + [ + 10.452587157894737, + 47.82508135324969 + ], + [ + 10.542418684210528, + 47.82954021230299 + ], + [ + 10.632250210526315, + 47.823389961027914 + ], + [ + 10.722081736842107, + 47.80629756273166 + ], + [ + 10.811913263157894, + 47.77617575875966 + ], + [ + 10.825485575392888, + 47.769927256410256 + ], + [ + 10.901744789473685, + 47.733629477159134 + ], + [ + 10.941745162412168, + 47.70889528205128 + ], + [ + 10.991576315789473, + 47.67302565838331 + ], + [ + 11.023032201434775, + 47.647863307692305 + ], + [ + 11.081407842105264, + 47.589520453056615 + ], + [ + 11.084212025114244, + 47.58683133333333 + ], + [ + 11.137908312996835, + 47.52579935897435 + ], + [ + 11.171239368421054, + 47.48169150072158 + ], + [ + 11.187807051182052, + 47.464767384615385 + ], + [ + 11.25270286624005, + 47.40373541025641 + ], + [ + 11.261070894736843, + 47.397320137203195 + ], + [ + 11.350902421052632, + 47.35286291586933 + ], + [ + 11.383452502259974, + 47.342703435897434 + ], + [ + 11.440733947368422, + 47.329191447076546 + ], + [ + 11.530565473684211, + 47.31505557889966 + ], + [ + 11.620397, + 47.3042860645645 + ], + [ + 11.71022852631579, + 47.293167939122995 + ], + [ + 11.781690839279246, + 47.28167146153846 + ], + [ + 11.80006005263158, + 47.27936667612972 + ], + [ + 11.88989157894737, + 47.26272971131505 + ], + [ + 11.979723105263158, + 47.24010679014873 + ], + [ + 12.040256685475466, + 47.22063948717948 + ], + [ + 12.06955463157895, + 47.21215082576088 + ], + [ + 12.159386157894737, + 47.18139607190278 + ], + [ + 12.21648200088255, + 47.159607512820514 + ], + [ + 12.249217684210528, + 47.14884423782074 + ], + [ + 12.339049210526316, + 47.1154150862333 + ], + [ + 12.372960340008179, + 47.09857553846154 + ], + [ + 12.428880736842107, + 47.07664242495275 + ], + [ + 12.496031367556547, + 47.03754356410256 + ], + [ + 12.518712263157894, + 47.02706282572338 + ], + [ + 12.603603827536704, + 46.97651158974359 + ], + [ + 12.608543789473686, + 46.97371653901547 + ], + [ + 12.691084105043439, + 46.91547961538461 + ], + [ + 12.698375315789475, + 46.90785115189525 + ], + [ + 12.739866375598133, + 46.85444764102564 + ], + [ + 12.760609692719795, + 46.79341566666667 + ], + [ + 12.762822796604981, + 46.73238369230769 + ], + [ + 12.750457635179881, + 46.67135171794872 + ], + [ + 12.728704009957031, + 46.61031974358974 + ], + [ + 12.709451434729697, + 46.549287769230766 + ], + [ + 12.71602953927135, + 46.4882557948718 + ], + [ + 12.771734068256809, + 46.42722382051282 + ], + [ + 12.788206842105264, + 46.4161673509086 + ], + [ + 12.874613096539793, + 46.366191846153846 + ], + [ + 12.878038368421054, + 46.36391707599079 + ], + [ + 12.967869894736843, + 46.321859546414686 + ], + [ + 12.981775226141334, + 46.366191846153846 + ], + [ + 12.993803020831258, + 46.42722382051282 + ], + [ + 13.038483559067883, + 46.4882557948718 + ], + [ + 13.057701421052633, + 46.497868461852256 + ], + [ + 13.14534899761416, + 46.549287769230766 + ], + [ + 13.147532947368422, + 46.54988738786545 + ], + [ + 13.237364473684211, + 46.56508748750889 + ], + [ + 13.327196, + 46.55366459789665 + ], + [ + 13.338714345376282, + 46.549287769230766 + ], + [ + 13.41702752631579, + 46.50425298249767 + ], + [ + 13.450514887839585, + 46.4882557948718 + ], + [ + 13.50685905263158, + 46.45879022749524 + ], + [ + 13.59669057894737, + 46.45999792573098 + ], + [ + 13.686522105263158, + 46.428281656961 + ], + [ + 13.687656998805402, + 46.42722382051282 + ], + [ + 13.718196346460786, + 46.366191846153846 + ], + [ + 13.696975119586078, + 46.30515987179487 + ], + [ + 13.686522105263158, + 46.291005813802165 + ], + [ + 13.59669057894737, + 46.253257517782025 + ], + [ + 13.50685905263158, + 46.256496990595814 + ], + [ + 13.41702752631579, + 46.27953851023802 + ], + [ + 13.327196, + 46.276877846681906 + ], + [ + 13.237364473684211, + 46.26916863676957 + ], + [ + 13.147532947368422, + 46.274094878205126 + ], + [ + 13.057701421052633, + 46.29457410400359 + ], + [ + 13.013105254543067, + 46.244127897435895 + ], + [ + 13.025110209684716, + 46.18309592307692 + ], + [ + 13.03704378618377, + 46.12206394871795 + ], + [ + 13.044663510834354, + 46.061031974358976 + ], + [ + 13.046295640273502, + 46 + ], + [ + 12.967869894736843, + 46 + ], + [ + 12.878038368421054, + 46 + ], + [ + 12.788206842105264, + 46 + ], + [ + 12.75050279967893, + 46 + ], + [ + 12.75969715225396, + 46.061031974358976 + ], + [ + 12.745061604783825, + 46.12206394871795 + ], + [ + 12.698375315789475, + 46.179617077409546 + ], + [ + 12.694125224938396, + 46.18309592307692 + ], + [ + 12.608543789473686, + 46.22424909698002 + ], + [ + 12.518712263157894, + 46.23732949965044 + ], + [ + 12.428880736842107, + 46.22957987982742 + ], + [ + 12.339049210526316, + 46.20698379399212 + ], + [ + 12.260074557842131, + 46.18309592307692 + ], + [ + 12.249217684210528, + 46.178716091988406 + ], + [ + 12.159386157894737, + 46.15385934567552 + ], + [ + 12.06955463157895, + 46.14813728136955 + ], + [ + 11.979723105263158, + 46.1574939228613 + ], + [ + 11.88989157894737, + 46.16105600320718 + ], + [ + 11.80006005263158, + 46.14969562299741 + ], + [ + 11.722964434261824, + 46.12206394871795 + ], + [ + 11.71022852631579, + 46.11594292595374 + ], + [ + 11.63612631910664, + 46.061031974358976 + ], + [ + 11.620397, + 46.02737706119429 + ], + [ + 11.604632309680463, + 46 + ], + [ + 11.530565473684211, + 46 + ], + [ + 11.440733947368422, + 46 + ], + [ + 11.350902421052632, + 46 + ], + [ + 11.261070894736843, + 46 + ], + [ + 11.171239368421054, + 46 + ], + [ + 11.158635340923126, + 46 + ], + [ + 11.171239368421054, + 46.01073566480352 + ], + [ + 11.223814089209405, + 46.061031974358976 + ], + [ + 11.256654497869494, + 46.12206394871795 + ], + [ + 11.261070894736843, + 46.1404750933692 + ], + [ + 11.272661625728995, + 46.18309592307692 + ], + [ + 11.272818616593701, + 46.244127897435895 + ], + [ + 11.261070894736843, + 46.30020890651486 + ], + [ + 11.260198038353604, + 46.30515987179487 + ], + [ + 11.237988759001194, + 46.366191846153846 + ], + [ + 11.202100368036067, + 46.42722382051282 + ], + [ + 11.171239368421054, + 46.46175740033248 + ], + [ + 11.146824013709562, + 46.4882557948718 + ], + [ + 11.081407842105264, + 46.53565236278397 + ], + [ + 11.056821325247052, + 46.549287769230766 + ], + [ + 10.991576315789473, + 46.57819136513881 + ], + [ + 10.901744789473685, + 46.6010991299157 + ], + [ + 10.814006809782384, + 46.61031974358974 + ], + [ + 10.811913263157894, + 46.610596339858844 + ], + [ + 10.722081736842107, + 46.613449258444355 + ], + [ + 10.632250210526315, + 46.62299072334154 + ], + [ + 10.58165538295193, + 46.67135171794872 + ], + [ + 10.551560031927652, + 46.73238369230769 + ], + [ + 10.542418684210528, + 46.771399032147826 + ], + [ + 10.538748331729362, + 46.79341566666667 + ], + [ + 10.536779146008868, + 46.85444764102564 + ], + [ + 10.509464125148494, + 46.91547961538461 + ], + [ + 10.452587157894737, + 46.947952806964466 + ], + [ + 10.363277860409767, + 46.97651158974359 + ], + [ + 10.362755631578947, + 46.976772111862154 + ], + [ + 10.33327345220042, + 47.03754356410256 + ], + [ + 10.272924105263158, + 47.05250729275679 + ], + [ + 10.215243781515671, + 47.03754356410256 + ], + [ + 10.2531419934295, + 46.97651158974359 + ], + [ + 10.215790982977532, + 46.91547961538461 + ], + [ + 10.183155337941207, + 46.85444764102564 + ], + [ + 10.183092578947369, + 46.85435470729818 + ], + [ + 10.12279282324276, + 46.79341566666667 + ], + [ + 10.09326105263158, + 46.768469560172655 + ], + [ + 10.058674960555766, + 46.73238369230769 + ], + [ + 10.035510259501995, + 46.67135171794872 + ], + [ + 10.046749063152316, + 46.61031974358974 + ], + [ + 10.09326105263158, + 46.54976762065464 + ], + [ + 10.093862108224123, + 46.549287769230766 + ], + [ + 10.183092578947369, + 46.493077164978764 + ], + [ + 10.201133839063608, + 46.4882557948718 + ], + [ + 10.272924105263158, + 46.452962276931856 + ], + [ + 10.323354953592773, + 46.42722382051282 + ], + [ + 10.345797446545525, + 46.366191846153846 + ], + [ + 10.350010526247612, + 46.30515987179487 + ], + [ + 10.356985460841745, + 46.244127897435895 + ], + [ + 10.362755631578947, + 46.222255739337434 + ], + [ + 10.37204032763577, + 46.18309592307692 + ], + [ + 10.398843198513616, + 46.12206394871795 + ], + [ + 10.442775353676284, + 46.061031974358976 + ], + [ + 10.452587157894737, + 46.05129011680478 + ], + [ + 10.510717278491363, + 46 + ], + [ + 10.452587157894737, + 46 + ], + [ + 10.362755631578947, + 46 + ], + [ + 10.272924105263158, + 46 + ], + [ + 10.183092578947369, + 46 + ], + [ + 10.09326105263158, + 46 + ], + [ + 10.00342952631579, + 46 + ], + [ + 9.913598, + 46 + ], + [ + 9.823766473684211, + 46 + ], + [ + 9.733934947368422, + 46 + ], + [ + 9.644103421052632, + 46 + ], + [ + 9.554271894736843, + 46 + ], + [ + 9.464440368421053, + 46 + ], + [ + 9.374608842105264, + 46 + ], + [ + 9.284777315789475, + 46 + ], + [ + 9.194945789473685, + 46 + ], + [ + 9.105114263157894, + 46 + ], + [ + 9.034269675402221, + 46 + ] + ], + [ + [ + 12.208598881286028, + 46.73238369230769 + ], + [ + 12.249217684210528, + 46.71341420294193 + ], + [ + 12.339049210526316, + 46.68850214842839 + ], + [ + 12.428880736842107, + 46.67563922129675 + ], + [ + 12.518712263157894, + 46.68607644639385 + ], + [ + 12.587429828048126, + 46.73238369230769 + ], + [ + 12.606916763023627, + 46.79341566666667 + ], + [ + 12.551096080490204, + 46.85444764102564 + ], + [ + 12.518712263157894, + 46.875341606890466 + ], + [ + 12.429048827605552, + 46.91547961538461 + ], + [ + 12.428880736842107, + 46.915551826329654 + ], + [ + 12.339049210526316, + 46.93833643268275 + ], + [ + 12.249217684210528, + 46.9312566304113 + ], + [ + 12.199078401037085, + 46.91547961538461 + ], + [ + 12.159386157894737, + 46.880386640516335 + ], + [ + 12.09692712933922, + 46.85444764102564 + ], + [ + 12.127075251077628, + 46.79341566666667 + ], + [ + 12.159386157894737, + 46.77420102482194 + ], + [ + 12.208598881286028, + 46.73238369230769 + ] + ], + [ + [ + 11.692413485000262, + 46.79341566666667 + ], + [ + 11.71022852631579, + 46.781656090530504 + ], + [ + 11.80006005263158, + 46.75212616907278 + ], + [ + 11.88989157894737, + 46.75385452485098 + ], + [ + 11.979723105263158, + 46.785775213566005 + ], + [ + 12.001318944459426, + 46.79341566666667 + ], + [ + 12.058958235693042, + 46.85444764102564 + ], + [ + 12.045136297374087, + 46.91547961538461 + ], + [ + 11.979723105263158, + 46.974881256234355 + ], + [ + 11.977613086410429, + 46.97651158974359 + ], + [ + 11.88989157894737, + 47.012273240938356 + ], + [ + 11.80006005263158, + 47.015956772931524 + ], + [ + 11.71022852631579, + 46.98728641401493 + ], + [ + 11.69234575719523, + 46.97651158974359 + ], + [ + 11.642746645417311, + 46.91547961538461 + ], + [ + 11.642644440047498, + 46.85444764102564 + ], + [ + 11.692413485000262, + 46.79341566666667 + ] + ], + [ + [ + 10.52643933038659, + 47.342703435897434 + ], + [ + 10.542418684210528, + 47.337948734253 + ], + [ + 10.579619672339778, + 47.342703435897434 + ], + [ + 10.632250210526315, + 47.36271137221304 + ], + [ + 10.678115220367296, + 47.40373541025641 + ], + [ + 10.664520503743958, + 47.464767384615385 + ], + [ + 10.632250210526315, + 47.49118355588736 + ], + [ + 10.542418684210528, + 47.51523962264637 + ], + [ + 10.452587157894737, + 47.48828224072003 + ], + [ + 10.431687963706558, + 47.464767384615385 + ], + [ + 10.425218269476005, + 47.40373541025641 + ], + [ + 10.452587157894737, + 47.37787206614263 + ], + [ + 10.52643933038659, + 47.342703435897434 + ] + ], + [ + [ + 13.184848688522159, + 46.42722382051282 + ], + [ + 13.237364473684211, + 46.39116550623258 + ], + [ + 13.327196, + 46.402940378754344 + ], + [ + 13.35395252538618, + 46.42722382051282 + ], + [ + 13.334202873926397, + 46.4882557948718 + ], + [ + 13.327196, + 46.49241827055956 + ], + [ + 13.237364473684211, + 46.502099259282005 + ], + [ + 13.20537221238554, + 46.4882557948718 + ], + [ + 13.184848688522159, + 46.42722382051282 + ] + ], + [ + [ + 13.536180188817962, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.32220621452156 + ], + [ + 13.657321620925789, + 46.366191846153846 + ], + [ + 13.59669057894737, + 46.403945850437424 + ], + [ + 13.536180188817962, + 46.366191846153846 + ] + ] + ], + [ + [ + [ + 14.764500421052633, + 46.0976891674926 + ], + [ + 14.67963233244957, + 46.12206394871795 + ], + [ + 14.674668894736843, + 46.124622875855714 + ], + [ + 14.632509181218795, + 46.18309592307692 + ], + [ + 14.637841318298634, + 46.244127897435895 + ], + [ + 14.6061027720789, + 46.30515987179487 + ], + [ + 14.606292836423933, + 46.366191846153846 + ], + [ + 14.62829090715868, + 46.42722382051282 + ], + [ + 14.635805857436305, + 46.4882557948718 + ], + [ + 14.674668894736843, + 46.51036908782282 + ], + [ + 14.764500421052633, + 46.51327701816663 + ], + [ + 14.787275657299348, + 46.4882557948718 + ], + [ + 14.782995802929236, + 46.42722382051282 + ], + [ + 14.807911121589543, + 46.366191846153846 + ], + [ + 14.820762131936135, + 46.30515987179487 + ], + [ + 14.854331947368422, + 46.253598089569294 + ], + [ + 14.860932696121381, + 46.244127897435895 + ], + [ + 14.902344148129302, + 46.18309592307692 + ], + [ + 14.854331947368422, + 46.14731976571124 + ], + [ + 14.79646575710206, + 46.12206394871795 + ], + [ + 14.764500421052633, + 46.0976891674926 + ] + ], + [ + [ + 14.732841129704262, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.16323637724927 + ], + [ + 14.809940033737865, + 46.18309592307692 + ], + [ + 14.764500421052633, + 46.21170949607562 + ], + [ + 14.732841129704262, + 46.18309592307692 + ] + ], + [ + [ + 14.745605962882394, + 46.366191846153846 + ], + [ + 14.764500421052633, + 46.34329667358751 + ], + [ + 14.767106708063, + 46.366191846153846 + ], + [ + 14.764500421052633, + 46.37411620397344 + ], + [ + 14.745605962882394, + 46.366191846153846 + ] + ], + [ + [ + 14.757509002123895, + 46.4882557948718 + ], + [ + 14.764500421052633, + 46.48384285445158 + ], + [ + 14.765235752526712, + 46.4882557948718 + ], + [ + 14.764500421052633, + 46.48906364128925 + ], + [ + 14.757509002123895, + 46.4882557948718 + ] + ] + ], + [ + [ + [ + 12.967869894736843, + 47.033701016824615 + ], + [ + 12.960219330864973, + 47.03754356410256 + ], + [ + 12.91668275254348, + 47.09857553846154 + ], + [ + 12.936821683433411, + 47.159607512820514 + ], + [ + 12.967869894736843, + 47.18067466982844 + ], + [ + 13.057701421052633, + 47.208619664367276 + ], + [ + 13.147532947368422, + 47.18830070429426 + ], + [ + 13.178125190264964, + 47.159607512820514 + ], + [ + 13.197279938740664, + 47.09857553846154 + ], + [ + 13.155232628072046, + 47.03754356410256 + ], + [ + 13.147532947368422, + 47.03077828730234 + ], + [ + 13.057701421052633, + 47.008786564124605 + ], + [ + 12.967869894736843, + 47.033701016824615 + ] + ], + [ + [ + 13.020112615102406, + 47.09857553846154 + ], + [ + 13.057701421052633, + 47.070126287885245 + ], + [ + 13.147532947368422, + 47.09377994104454 + ], + [ + 13.150896708495896, + 47.09857553846154 + ], + [ + 13.147532947368422, + 47.10767963609089 + ], + [ + 13.057701421052633, + 47.1490037540345 + ], + [ + 13.020112615102406, + 47.09857553846154 + ] + ] + ], + [ + [ + [ + 14.135679736842107, + 46.31654679698604 + ], + [ + 14.113189006751005, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.4119586774386 + ], + [ + 14.225511263157895, + 46.411645268609206 + ], + [ + 14.274999329706171, + 46.366191846153846 + ], + [ + 14.225511263157895, + 46.31091974673453 + ], + [ + 14.135679736842107, + 46.31654679698604 + ] + ], + [ + [ + 14.130899831018976, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.35564089210986 + ], + [ + 14.181234329141908, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.37591857100796 + ], + [ + 14.130899831018976, + 46.366191846153846 + ] + ] + ], + [ + [ + [ + 6.5311179406337985, + 48.380247 + ], + [ + 6.5, + 48.359110689480964 + ], + [ + 6.5, + 48.380247 + ], + [ + 6.5311179406337985, + 48.380247 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 4, + "fill-opacity": 0.4, + "stroke": "yellow", + "fill": "yellow", + "pressure": "1.5-2.5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 8.171270614106918, + 46 + ], + [ + 8.137023860972217, + 46.061031974358976 + ], + [ + 8.11696747368421, + 46.10151274139573 + ], + [ + 8.109139145883308, + 46.12206394871795 + ], + [ + 8.087552506367748, + 46.18309592307692 + ], + [ + 8.071803617243692, + 46.244127897435895 + ], + [ + 8.062043717556097, + 46.30515987179487 + ], + [ + 8.058339572994491, + 46.366191846153846 + ], + [ + 8.060830627959726, + 46.42722382051282 + ], + [ + 8.070021856696762, + 46.4882557948718 + ], + [ + 8.087365422050473, + 46.549287769230766 + ], + [ + 8.116500272998344, + 46.61031974358974 + ], + [ + 8.11696747368421, + 46.61090659292447 + ], + [ + 8.151334530978954, + 46.67135171794872 + ], + [ + 8.206799, + 46.728767176966905 + ], + [ + 8.20939239068646, + 46.73238369230769 + ], + [ + 8.281345012022047, + 46.79341566666667 + ], + [ + 8.29663052631579, + 46.802827151924575 + ], + [ + 8.373470778591011, + 46.85444764102564 + ], + [ + 8.386462052631579, + 46.86283257776223 + ], + [ + 8.476293578947368, + 46.91340583918955 + ], + [ + 8.481704391793247, + 46.91547961538461 + ], + [ + 8.566125105263158, + 46.95898314145807 + ], + [ + 8.620539429833983, + 46.97651158974359 + ], + [ + 8.655956631578947, + 46.994109972342365 + ], + [ + 8.745788157894737, + 47.022495894742804 + ], + [ + 8.817381363040166, + 47.03754356410256 + ], + [ + 8.835619684210528, + 47.04401124711165 + ], + [ + 8.925451210526315, + 47.063125545689594 + ], + [ + 9.015282736842106, + 47.076441809858515 + ], + [ + 9.105114263157894, + 47.0864698617514 + ], + [ + 9.194945789473685, + 47.09748306063216 + ], + [ + 9.20150642517778, + 47.09857553846154 + ], + [ + 9.284777315789475, + 47.159018203385976 + ], + [ + 9.285021683922501, + 47.159607512820514 + ], + [ + 9.297193680511976, + 47.22063948717948 + ], + [ + 9.303002409947704, + 47.28167146153846 + ], + [ + 9.307999110683971, + 47.342703435897434 + ], + [ + 9.3135400286025, + 47.40373541025641 + ], + [ + 9.319815018916675, + 47.464767384615385 + ], + [ + 9.326401125331486, + 47.52579935897435 + ], + [ + 9.33240170058321, + 47.58683133333333 + ], + [ + 9.336530863219656, + 47.647863307692305 + ], + [ + 9.337248909588244, + 47.70889528205128 + ], + [ + 9.332970756492067, + 47.769927256410256 + ], + [ + 9.322313831442667, + 47.83095923076923 + ], + [ + 9.304318463927094, + 47.8919912051282 + ], + [ + 9.284777315789475, + 47.93888506791682 + ], + [ + 9.27909639560303, + 47.953023179487175 + ], + [ + 9.248342749257867, + 48.01405515384615 + ], + [ + 9.210648535813597, + 48.075087128205126 + ], + [ + 9.194945789473685, + 48.09733732281835 + ], + [ + 9.168153163891379, + 48.1361191025641 + ], + [ + 9.12087396132776, + 48.19715107692308 + ], + [ + 9.105114263157894, + 48.21593653991348 + ], + [ + 9.069951625349114, + 48.258183051282046 + ], + [ + 9.015294560742513, + 48.31921502564102 + ], + [ + 9.015282736842106, + 48.319227695790545 + ], + [ + 8.958375874463053, + 48.380247 + ], + [ + 9.015282736842106, + 48.380247 + ], + [ + 9.105114263157894, + 48.380247 + ], + [ + 9.194945789473685, + 48.380247 + ], + [ + 9.284777315789475, + 48.380247 + ], + [ + 9.374608842105264, + 48.380247 + ], + [ + 9.464440368421053, + 48.380247 + ], + [ + 9.554271894736843, + 48.380247 + ], + [ + 9.644103421052632, + 48.380247 + ], + [ + 9.733934947368422, + 48.380247 + ], + [ + 9.823766473684211, + 48.380247 + ], + [ + 9.913598, + 48.380247 + ], + [ + 10.00342952631579, + 48.380247 + ], + [ + 10.09326105263158, + 48.380247 + ], + [ + 10.183092578947369, + 48.380247 + ], + [ + 10.272924105263158, + 48.380247 + ], + [ + 10.362755631578947, + 48.380247 + ], + [ + 10.452587157894737, + 48.380247 + ], + [ + 10.542418684210528, + 48.380247 + ], + [ + 10.632250210526315, + 48.380247 + ], + [ + 10.722081736842107, + 48.380247 + ], + [ + 10.811913263157894, + 48.380247 + ], + [ + 10.901744789473685, + 48.380247 + ], + [ + 10.991576315789473, + 48.380247 + ], + [ + 11.081407842105264, + 48.380247 + ], + [ + 11.171239368421054, + 48.380247 + ], + [ + 11.261070894736843, + 48.380247 + ], + [ + 11.350902421052632, + 48.380247 + ], + [ + 11.440733947368422, + 48.380247 + ], + [ + 11.485581591204625, + 48.380247 + ], + [ + 11.530565473684211, + 48.32014896077659 + ], + [ + 11.531213064707977, + 48.31921502564102 + ], + [ + 11.575830188186117, + 48.258183051282046 + ], + [ + 11.620397, + 48.199405083240976 + ], + [ + 11.621982147042086, + 48.19715107692308 + ], + [ + 11.667330294686483, + 48.1361191025641 + ], + [ + 11.71022852631579, + 48.08092464206746 + ], + [ + 11.7144537923938, + 48.075087128205126 + ], + [ + 11.76149057133195, + 48.01405515384615 + ], + [ + 11.80006005263158, + 47.96710213716064 + ], + [ + 11.810895002789525, + 47.953023179487175 + ], + [ + 11.861770156204898, + 47.8919912051282 + ], + [ + 11.88989157894737, + 47.861185016959325 + ], + [ + 11.915901258343666, + 47.83095923076923 + ], + [ + 11.974476170240411, + 47.769927256410256 + ], + [ + 11.979723105263158, + 47.76505019567456 + ], + [ + 12.036952809635963, + 47.70889528205128 + ], + [ + 12.06955463157895, + 47.6809113808343 + ], + [ + 12.106015470906648, + 47.647863307692305 + ], + [ + 12.159386157894737, + 47.60584457309101 + ], + [ + 12.182347305924175, + 47.58683133333333 + ], + [ + 12.249217684210528, + 47.538828071503005 + ], + [ + 12.266724621206023, + 47.52579935897435 + ], + [ + 12.339049210526316, + 47.479086938095556 + ], + [ + 12.361201673147331, + 47.464767384615385 + ], + [ + 12.428880736842107, + 47.42671472705611 + ], + [ + 12.472972095223302, + 47.40373541025641 + ], + [ + 12.518712263157894, + 47.38291954928053 + ], + [ + 12.608543789473686, + 47.349717075075624 + ], + [ + 12.630822123193393, + 47.342703435897434 + ], + [ + 12.698375315789475, + 47.32477502120403 + ], + [ + 12.788206842105264, + 47.304183451197645 + ], + [ + 12.878038368421054, + 47.28838316299372 + ], + [ + 12.937575462041238, + 47.28167146153846 + ], + [ + 12.967869894736843, + 47.27956921067819 + ], + [ + 13.057701421052633, + 47.26898131193705 + ], + [ + 13.147532947368422, + 47.23932468504347 + ], + [ + 13.169622000805747, + 47.22063948717948 + ], + [ + 13.230298779148463, + 47.159607512820514 + ], + [ + 13.237364473684211, + 47.12913317427771 + ], + [ + 13.241264135909233, + 47.09857553846154 + ], + [ + 13.237364473684211, + 47.08724148729475 + ], + [ + 13.206711540258397, + 47.03754356410256 + ], + [ + 13.147532947368422, + 46.985546659690655 + ], + [ + 13.117022943408617, + 46.97651158974359 + ], + [ + 13.057701421052633, + 46.9448958634147 + ], + [ + 12.976258105662295, + 46.91547961538461 + ], + [ + 12.967869894736843, + 46.903397527882326 + ], + [ + 12.937183384067207, + 46.85444764102564 + ], + [ + 12.937533348078702, + 46.79341566666667 + ], + [ + 12.954490464731105, + 46.73238369230769 + ], + [ + 12.967869894736843, + 46.70922332031726 + ], + [ + 13.001632802656744, + 46.67135171794872 + ], + [ + 13.057701421052633, + 46.645677967074406 + ], + [ + 13.147532947368422, + 46.6317074716193 + ], + [ + 13.237364473684211, + 46.62203933038422 + ], + [ + 13.291261060785027, + 46.61031974358974 + ], + [ + 13.327196, + 46.60398329112201 + ], + [ + 13.41702752631579, + 46.571066135628506 + ], + [ + 13.470628499593401, + 46.549287769230766 + ], + [ + 13.50685905263158, + 46.531019753130245 + ], + [ + 13.59669057894737, + 46.50785560692478 + ], + [ + 13.653599133688733, + 46.4882557948718 + ], + [ + 13.686522105263158, + 46.477150822669024 + ], + [ + 13.740085992599518, + 46.42722382051282 + ], + [ + 13.75938574105827, + 46.366191846153846 + ], + [ + 13.751638557157879, + 46.30515987179487 + ], + [ + 13.721966559930692, + 46.244127897435895 + ], + [ + 13.686522105263158, + 46.19608082917903 + ], + [ + 13.661939166584204, + 46.18309592307692 + ], + [ + 13.59669057894737, + 46.131374108674855 + ], + [ + 13.574625132657165, + 46.12206394871795 + ], + [ + 13.50685905263158, + 46.066114993450604 + ], + [ + 13.499864072320754, + 46.061031974358976 + ], + [ + 13.458888991534039, + 46 + ], + [ + 13.41702752631579, + 46 + ], + [ + 13.327196, + 46 + ], + [ + 13.237364473684211, + 46 + ], + [ + 13.147532947368422, + 46 + ], + [ + 13.057701421052633, + 46 + ], + [ + 13.046295640273502, + 46 + ], + [ + 13.044663510834354, + 46.061031974358976 + ], + [ + 13.03704378618377, + 46.12206394871795 + ], + [ + 13.025110209684716, + 46.18309592307692 + ], + [ + 13.013105254543067, + 46.244127897435895 + ], + [ + 13.057701421052633, + 46.29457410400359 + ], + [ + 13.147532947368422, + 46.274094878205126 + ], + [ + 13.237364473684211, + 46.26916863676957 + ], + [ + 13.327196, + 46.276877846681906 + ], + [ + 13.41702752631579, + 46.27953851023802 + ], + [ + 13.50685905263158, + 46.256496990595814 + ], + [ + 13.59669057894737, + 46.253257517782025 + ], + [ + 13.686522105263158, + 46.291005813802165 + ], + [ + 13.696975119586078, + 46.30515987179487 + ], + [ + 13.718196346460786, + 46.366191846153846 + ], + [ + 13.687656998805402, + 46.42722382051282 + ], + [ + 13.686522105263158, + 46.428281656961 + ], + [ + 13.59669057894737, + 46.45999792573098 + ], + [ + 13.50685905263158, + 46.45879022749524 + ], + [ + 13.450514887839585, + 46.4882557948718 + ], + [ + 13.41702752631579, + 46.50425298249767 + ], + [ + 13.338714345376282, + 46.549287769230766 + ], + [ + 13.327196, + 46.55366459789665 + ], + [ + 13.237364473684211, + 46.56508748750889 + ], + [ + 13.147532947368422, + 46.54988738786545 + ], + [ + 13.14534899761416, + 46.549287769230766 + ], + [ + 13.057701421052633, + 46.497868461852256 + ], + [ + 13.038483559067883, + 46.4882557948718 + ], + [ + 12.993803020831258, + 46.42722382051282 + ], + [ + 12.981775226141334, + 46.366191846153846 + ], + [ + 12.967869894736843, + 46.321859546414686 + ], + [ + 12.878038368421054, + 46.36391707599079 + ], + [ + 12.874613096539793, + 46.366191846153846 + ], + [ + 12.788206842105264, + 46.4161673509086 + ], + [ + 12.771734068256809, + 46.42722382051282 + ], + [ + 12.71602953927135, + 46.4882557948718 + ], + [ + 12.709451434729697, + 46.549287769230766 + ], + [ + 12.728704009957031, + 46.61031974358974 + ], + [ + 12.750457635179881, + 46.67135171794872 + ], + [ + 12.762822796604981, + 46.73238369230769 + ], + [ + 12.760609692719795, + 46.79341566666667 + ], + [ + 12.739866375598133, + 46.85444764102564 + ], + [ + 12.698375315789475, + 46.90785115189525 + ], + [ + 12.691084105043439, + 46.91547961538461 + ], + [ + 12.608543789473686, + 46.97371653901547 + ], + [ + 12.603603827536704, + 46.97651158974359 + ], + [ + 12.518712263157894, + 47.02706282572338 + ], + [ + 12.496031367556547, + 47.03754356410256 + ], + [ + 12.428880736842107, + 47.07664242495275 + ], + [ + 12.372960340008179, + 47.09857553846154 + ], + [ + 12.339049210526316, + 47.1154150862333 + ], + [ + 12.249217684210528, + 47.14884423782074 + ], + [ + 12.21648200088255, + 47.159607512820514 + ], + [ + 12.159386157894737, + 47.18139607190278 + ], + [ + 12.06955463157895, + 47.21215082576088 + ], + [ + 12.040256685475466, + 47.22063948717948 + ], + [ + 11.979723105263158, + 47.24010679014873 + ], + [ + 11.88989157894737, + 47.26272971131505 + ], + [ + 11.80006005263158, + 47.27936667612972 + ], + [ + 11.781690839279246, + 47.28167146153846 + ], + [ + 11.71022852631579, + 47.293167939122995 + ], + [ + 11.620397, + 47.3042860645645 + ], + [ + 11.530565473684211, + 47.31505557889966 + ], + [ + 11.440733947368422, + 47.329191447076546 + ], + [ + 11.383452502259974, + 47.342703435897434 + ], + [ + 11.350902421052632, + 47.35286291586933 + ], + [ + 11.261070894736843, + 47.397320137203195 + ], + [ + 11.25270286624005, + 47.40373541025641 + ], + [ + 11.187807051182052, + 47.464767384615385 + ], + [ + 11.171239368421054, + 47.48169150072158 + ], + [ + 11.137908312996835, + 47.52579935897435 + ], + [ + 11.084212025114244, + 47.58683133333333 + ], + [ + 11.081407842105264, + 47.589520453056615 + ], + [ + 11.023032201434775, + 47.647863307692305 + ], + [ + 10.991576315789473, + 47.67302565838331 + ], + [ + 10.941745162412168, + 47.70889528205128 + ], + [ + 10.901744789473685, + 47.733629477159134 + ], + [ + 10.825485575392888, + 47.769927256410256 + ], + [ + 10.811913263157894, + 47.77617575875966 + ], + [ + 10.722081736842107, + 47.80629756273166 + ], + [ + 10.632250210526315, + 47.823389961027914 + ], + [ + 10.542418684210528, + 47.82954021230299 + ], + [ + 10.452587157894737, + 47.82508135324969 + ], + [ + 10.362755631578947, + 47.80662200421462 + ], + [ + 10.283734921946376, + 47.769927256410256 + ], + [ + 10.272924105263158, + 47.76333241251372 + ], + [ + 10.217013790215947, + 47.70889528205128 + ], + [ + 10.19438458520434, + 47.647863307692305 + ], + [ + 10.195989125119887, + 47.58683133333333 + ], + [ + 10.214058624793747, + 47.52579935897435 + ], + [ + 10.250589036436121, + 47.464767384615385 + ], + [ + 10.272924105263158, + 47.448813558689245 + ], + [ + 10.30329846745591, + 47.40373541025641 + ], + [ + 10.362755631578947, + 47.3634141875474 + ], + [ + 10.386052182274451, + 47.342703435897434 + ], + [ + 10.452587157894737, + 47.30638079781268 + ], + [ + 10.517061962309231, + 47.28167146153846 + ], + [ + 10.542418684210528, + 47.26461534202781 + ], + [ + 10.632250210526315, + 47.22937992246956 + ], + [ + 10.664529985928347, + 47.22063948717948 + ], + [ + 10.70778273990769, + 47.159607512820514 + ], + [ + 10.652951350012199, + 47.09857553846154 + ], + [ + 10.632250210526315, + 47.09140396439831 + ], + [ + 10.542418684210528, + 47.06685249518113 + ], + [ + 10.452587157894737, + 47.06008487864508 + ], + [ + 10.362755631578947, + 47.06963096504026 + ], + [ + 10.272924105263158, + 47.082739801659436 + ], + [ + 10.183092578947369, + 47.06752292254145 + ], + [ + 10.09326105263158, + 47.044517869862666 + ], + [ + 10.045425575720891, + 47.03754356410256 + ], + [ + 10.00342952631579, + 47.022403116800476 + ], + [ + 9.913598, + 47.01402557314792 + ], + [ + 9.823766473684211, + 47.014054711613014 + ], + [ + 9.733934947368422, + 47.01874129785055 + ], + [ + 9.644103421052632, + 47.02560792647342 + ], + [ + 9.554271894736843, + 47.03191074932263 + ], + [ + 9.464440368421053, + 47.03236903722146 + ], + [ + 9.374608842105264, + 46.982555252319905 + ], + [ + 9.372395579423463, + 46.97651158974359 + ], + [ + 9.36399665007454, + 46.91547961538461 + ], + [ + 9.363191994125101, + 46.85444764102564 + ], + [ + 9.363774791186177, + 46.79341566666667 + ], + [ + 9.363605856050654, + 46.73238369230769 + ], + [ + 9.361519737994652, + 46.67135171794872 + ], + [ + 9.356653356094542, + 46.61031974358974 + ], + [ + 9.348219693272128, + 46.549287769230766 + ], + [ + 9.33545359341053, + 46.4882557948718 + ], + [ + 9.317670669730559, + 46.42722382051282 + ], + [ + 9.294397023907488, + 46.366191846153846 + ], + [ + 9.284777315789475, + 46.344178927340366 + ], + [ + 9.266509633667095, + 46.30515987179487 + ], + [ + 9.232728432478977, + 46.244127897435895 + ], + [ + 9.194945789473685, + 46.18577101093817 + ], + [ + 9.192895544203775, + 46.18309592307692 + ], + [ + 9.14652568993525, + 46.12206394871795 + ], + [ + 9.105114263157894, + 46.07140244755824 + ], + [ + 9.094239303114684, + 46.061031974358976 + ], + [ + 9.034269675402221, + 46 + ], + [ + 9.015282736842106, + 46 + ], + [ + 8.925451210526315, + 46 + ], + [ + 8.835619684210528, + 46 + ], + [ + 8.745788157894737, + 46 + ], + [ + 8.655956631578947, + 46 + ], + [ + 8.566125105263158, + 46 + ], + [ + 8.476293578947368, + 46 + ], + [ + 8.386462052631579, + 46 + ], + [ + 8.29663052631579, + 46 + ], + [ + 8.206799, + 46 + ], + [ + 8.171270614106918, + 46 + ] + ], + [ + [ + 8.509574725040595, + 46.42722382051282 + ], + [ + 8.566125105263158, + 46.41172112796147 + ], + [ + 8.655956631578947, + 46.408531210281744 + ], + [ + 8.745788157894737, + 46.42535897722291 + ], + [ + 8.750566562043144, + 46.42722382051282 + ], + [ + 8.835619684210528, + 46.462402734306465 + ], + [ + 8.872426228315666, + 46.4882557948718 + ], + [ + 8.925451210526315, + 46.543412000229 + ], + [ + 8.930128994931247, + 46.549287769230766 + ], + [ + 8.958976537525857, + 46.61031974358974 + ], + [ + 8.963006318557573, + 46.67135171794872 + ], + [ + 8.941470564571567, + 46.73238369230769 + ], + [ + 8.925451210526315, + 46.75161841946037 + ], + [ + 8.887844789466845, + 46.79341566666667 + ], + [ + 8.835619684210528, + 46.82438972309527 + ], + [ + 8.745788157894737, + 46.852783713134535 + ], + [ + 8.723750497058422, + 46.85444764102564 + ], + [ + 8.655956631578947, + 46.85905195421879 + ], + [ + 8.628278452249415, + 46.85444764102564 + ], + [ + 8.566125105263158, + 46.846484140540774 + ], + [ + 8.476293578947368, + 46.81438816758198 + ], + [ + 8.440595560534053, + 46.79341566666667 + ], + [ + 8.386462052631579, + 46.75005955980023 + ], + [ + 8.3666226697486, + 46.73238369230769 + ], + [ + 8.330829598480722, + 46.67135171794872 + ], + [ + 8.322913534356, + 46.61031974358974 + ], + [ + 8.340449039048702, + 46.549287769230766 + ], + [ + 8.386462052631579, + 46.490549037176976 + ], + [ + 8.389310097862685, + 46.4882557948718 + ], + [ + 8.476293578947368, + 46.4355333543329 + ], + [ + 8.509574725040595, + 46.42722382051282 + ] + ], + [ + [ + 10.005271489409258, + 47.159607512820514 + ], + [ + 10.09326105263158, + 47.11727295718789 + ], + [ + 10.183092578947369, + 47.10546710237587 + ], + [ + 10.272924105263158, + 47.106137910230174 + ], + [ + 10.362755631578947, + 47.10746858697099 + ], + [ + 10.452587157894737, + 47.13408745564452 + ], + [ + 10.492741910512203, + 47.159607512820514 + ], + [ + 10.488001689347204, + 47.22063948717948 + ], + [ + 10.452587157894737, + 47.24452353094625 + ], + [ + 10.406526704722733, + 47.28167146153846 + ], + [ + 10.362755631578947, + 47.30615641422447 + ], + [ + 10.272924105263158, + 47.34139627107545 + ], + [ + 10.262625453964414, + 47.342703435897434 + ], + [ + 10.183092578947369, + 47.363224036072396 + ], + [ + 10.09326105263158, + 47.356956562364 + ], + [ + 10.054128489546791, + 47.342703435897434 + ], + [ + 10.00342952631579, + 47.30909325316405 + ], + [ + 9.97680068331476, + 47.28167146153846 + ], + [ + 9.964322895533961, + 47.22063948717948 + ], + [ + 10.00342952631579, + 47.163791910944376 + ], + [ + 10.005271489409258, + 47.159607512820514 + ] + ], + [ + [ + 12.960219330864973, + 47.03754356410256 + ], + [ + 12.967869894736843, + 47.033701016824615 + ], + [ + 13.057701421052633, + 47.008786564124605 + ], + [ + 13.147532947368422, + 47.03077828730234 + ], + [ + 13.155232628072046, + 47.03754356410256 + ], + [ + 13.197279938740664, + 47.09857553846154 + ], + [ + 13.178125190264964, + 47.159607512820514 + ], + [ + 13.147532947368422, + 47.18830070429426 + ], + [ + 13.057701421052633, + 47.208619664367276 + ], + [ + 12.967869894736843, + 47.18067466982844 + ], + [ + 12.936821683433411, + 47.159607512820514 + ], + [ + 12.91668275254348, + 47.09857553846154 + ], + [ + 12.960219330864973, + 47.03754356410256 + ] + ] + ], + [ + [ + [ + 14.584837368421054, + 46.01379128187563 + ], + [ + 14.527695602488322, + 46.061031974358976 + ], + [ + 14.495005842105265, + 46.11100977090113 + ], + [ + 14.48752935722702, + 46.12206394871795 + ], + [ + 14.462042232095524, + 46.18309592307692 + ], + [ + 14.443832655171331, + 46.244127897435895 + ], + [ + 14.430667300769564, + 46.30515987179487 + ], + [ + 14.465514461406109, + 46.366191846153846 + ], + [ + 14.495005842105265, + 46.38223540899964 + ], + [ + 14.517825676928412, + 46.42722382051282 + ], + [ + 14.563111392708594, + 46.4882557948718 + ], + [ + 14.584837368421054, + 46.50122624398684 + ], + [ + 14.674668894736843, + 46.546939327211504 + ], + [ + 14.764500421052633, + 46.53749039504401 + ], + [ + 14.809315562071985, + 46.4882557948718 + ], + [ + 14.81533395624323, + 46.42722382051282 + ], + [ + 14.848715535116082, + 46.366191846153846 + ], + [ + 14.854331947368422, + 46.35229399977472 + ], + [ + 14.873869401865184, + 46.30515987179487 + ], + [ + 14.928335821777353, + 46.244127897435895 + ], + [ + 14.944163473684211, + 46.222755518764444 + ], + [ + 14.979965510366329, + 46.18309592307692 + ], + [ + 15.005705583003637, + 46.12206394871795 + ], + [ + 15.000175109158274, + 46.061031974358976 + ], + [ + 14.9478674996405, + 46 + ], + [ + 14.944163473684211, + 46 + ], + [ + 14.854331947368422, + 46 + ], + [ + 14.764500421052633, + 46 + ], + [ + 14.674668894736843, + 46 + ], + [ + 14.611860650105415, + 46 + ], + [ + 14.584837368421054, + 46.01379128187563 + ] + ], + [ + [ + 14.67963233244957, + 46.12206394871795 + ], + [ + 14.764500421052633, + 46.0976891674926 + ], + [ + 14.79646575710206, + 46.12206394871795 + ], + [ + 14.854331947368422, + 46.14731976571124 + ], + [ + 14.902344148129302, + 46.18309592307692 + ], + [ + 14.860932696121381, + 46.244127897435895 + ], + [ + 14.854331947368422, + 46.253598089569294 + ], + [ + 14.820762131936135, + 46.30515987179487 + ], + [ + 14.807911121589543, + 46.366191846153846 + ], + [ + 14.782995802929236, + 46.42722382051282 + ], + [ + 14.787275657299348, + 46.4882557948718 + ], + [ + 14.764500421052633, + 46.51327701816663 + ], + [ + 14.674668894736843, + 46.51036908782282 + ], + [ + 14.635805857436305, + 46.4882557948718 + ], + [ + 14.62829090715868, + 46.42722382051282 + ], + [ + 14.606292836423933, + 46.366191846153846 + ], + [ + 14.6061027720789, + 46.30515987179487 + ], + [ + 14.637841318298634, + 46.244127897435895 + ], + [ + 14.632509181218795, + 46.18309592307692 + ], + [ + 14.674668894736843, + 46.124622875855714 + ], + [ + 14.67963233244957, + 46.12206394871795 + ] + ] + ], + [ + [ + [ + 14.135679736842107, + 46.26572675050892 + ], + [ + 14.110955512351534, + 46.30515987179487 + ], + [ + 14.095478182483035, + 46.366191846153846 + ], + [ + 14.115402697525091, + 46.42722382051282 + ], + [ + 14.135679736842107, + 46.45009381004016 + ], + [ + 14.225511263157895, + 46.45874349163293 + ], + [ + 14.308270305142683, + 46.42722382051282 + ], + [ + 14.315342789473686, + 46.418797481847385 + ], + [ + 14.38215726997948, + 46.366191846153846 + ], + [ + 14.385538455073064, + 46.30515987179487 + ], + [ + 14.315342789473686, + 46.26527962512434 + ], + [ + 14.225511263157895, + 46.24687095927061 + ], + [ + 14.135679736842107, + 46.26572675050892 + ] + ], + [ + [ + 14.113189006751005, + 46.366191846153846 + ], + [ + 14.135679736842107, + 46.31654679698604 + ], + [ + 14.225511263157895, + 46.31091974673453 + ], + [ + 14.274999329706171, + 46.366191846153846 + ], + [ + 14.225511263157895, + 46.411645268609206 + ], + [ + 14.135679736842107, + 46.4119586774386 + ], + [ + 14.113189006751005, + 46.366191846153846 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 4, + "fill-opacity": 0.4, + "stroke": "red", + "fill": "red", + "pressure": "2.5-100" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 13.458888991534039, + 46 + ], + [ + 13.499864072320754, + 46.061031974358976 + ], + [ + 13.50685905263158, + 46.066114993450604 + ], + [ + 13.574625132657165, + 46.12206394871795 + ], + [ + 13.59669057894737, + 46.131374108674855 + ], + [ + 13.661939166584204, + 46.18309592307692 + ], + [ + 13.686522105263158, + 46.19608082917903 + ], + [ + 13.721966559930692, + 46.244127897435895 + ], + [ + 13.751638557157879, + 46.30515987179487 + ], + [ + 13.75938574105827, + 46.366191846153846 + ], + [ + 13.740085992599518, + 46.42722382051282 + ], + [ + 13.686522105263158, + 46.477150822669024 + ], + [ + 13.653599133688733, + 46.4882557948718 + ], + [ + 13.59669057894737, + 46.50785560692478 + ], + [ + 13.50685905263158, + 46.531019753130245 + ], + [ + 13.470628499593401, + 46.549287769230766 + ], + [ + 13.41702752631579, + 46.571066135628506 + ], + [ + 13.327196, + 46.60398329112201 + ], + [ + 13.291261060785027, + 46.61031974358974 + ], + [ + 13.237364473684211, + 46.62203933038422 + ], + [ + 13.147532947368422, + 46.6317074716193 + ], + [ + 13.057701421052633, + 46.645677967074406 + ], + [ + 13.001632802656744, + 46.67135171794872 + ], + [ + 12.967869894736843, + 46.70922332031726 + ], + [ + 12.954490464731105, + 46.73238369230769 + ], + [ + 12.937533348078702, + 46.79341566666667 + ], + [ + 12.937183384067207, + 46.85444764102564 + ], + [ + 12.967869894736843, + 46.903397527882326 + ], + [ + 12.976258105662295, + 46.91547961538461 + ], + [ + 13.057701421052633, + 46.9448958634147 + ], + [ + 13.117022943408617, + 46.97651158974359 + ], + [ + 13.147532947368422, + 46.985546659690655 + ], + [ + 13.206711540258397, + 47.03754356410256 + ], + [ + 13.237364473684211, + 47.08724148729475 + ], + [ + 13.241264135909233, + 47.09857553846154 + ], + [ + 13.237364473684211, + 47.12913317427771 + ], + [ + 13.230298779148463, + 47.159607512820514 + ], + [ + 13.169622000805747, + 47.22063948717948 + ], + [ + 13.147532947368422, + 47.23932468504347 + ], + [ + 13.057701421052633, + 47.26898131193705 + ], + [ + 12.967869894736843, + 47.27956921067819 + ], + [ + 12.937575462041238, + 47.28167146153846 + ], + [ + 12.878038368421054, + 47.28838316299372 + ], + [ + 12.788206842105264, + 47.304183451197645 + ], + [ + 12.698375315789475, + 47.32477502120403 + ], + [ + 12.630822123193393, + 47.342703435897434 + ], + [ + 12.608543789473686, + 47.349717075075624 + ], + [ + 12.518712263157894, + 47.38291954928053 + ], + [ + 12.472972095223302, + 47.40373541025641 + ], + [ + 12.428880736842107, + 47.42671472705611 + ], + [ + 12.361201673147331, + 47.464767384615385 + ], + [ + 12.339049210526316, + 47.479086938095556 + ], + [ + 12.266724621206023, + 47.52579935897435 + ], + [ + 12.249217684210528, + 47.538828071503005 + ], + [ + 12.182347305924175, + 47.58683133333333 + ], + [ + 12.159386157894737, + 47.60584457309101 + ], + [ + 12.106015470906648, + 47.647863307692305 + ], + [ + 12.06955463157895, + 47.6809113808343 + ], + [ + 12.036952809635963, + 47.70889528205128 + ], + [ + 11.979723105263158, + 47.76505019567456 + ], + [ + 11.974476170240411, + 47.769927256410256 + ], + [ + 11.915901258343666, + 47.83095923076923 + ], + [ + 11.88989157894737, + 47.861185016959325 + ], + [ + 11.861770156204898, + 47.8919912051282 + ], + [ + 11.810895002789525, + 47.953023179487175 + ], + [ + 11.80006005263158, + 47.96710213716064 + ], + [ + 11.76149057133195, + 48.01405515384615 + ], + [ + 11.7144537923938, + 48.075087128205126 + ], + [ + 11.71022852631579, + 48.08092464206746 + ], + [ + 11.667330294686483, + 48.1361191025641 + ], + [ + 11.621982147042086, + 48.19715107692308 + ], + [ + 11.620397, + 48.199405083240976 + ], + [ + 11.575830188186117, + 48.258183051282046 + ], + [ + 11.531213064707977, + 48.31921502564102 + ], + [ + 11.530565473684211, + 48.32014896077659 + ], + [ + 11.485581591204625, + 48.380247 + ], + [ + 11.530565473684211, + 48.380247 + ], + [ + 11.620397, + 48.380247 + ], + [ + 11.71022852631579, + 48.380247 + ], + [ + 11.80006005263158, + 48.380247 + ], + [ + 11.88989157894737, + 48.380247 + ], + [ + 11.979723105263158, + 48.380247 + ], + [ + 12.06955463157895, + 48.380247 + ], + [ + 12.159386157894737, + 48.380247 + ], + [ + 12.249217684210528, + 48.380247 + ], + [ + 12.339049210526316, + 48.380247 + ], + [ + 12.428880736842107, + 48.380247 + ], + [ + 12.518712263157894, + 48.380247 + ], + [ + 12.608543789473686, + 48.380247 + ], + [ + 12.698375315789475, + 48.380247 + ], + [ + 12.788206842105264, + 48.380247 + ], + [ + 12.878038368421054, + 48.380247 + ], + [ + 12.967869894736843, + 48.380247 + ], + [ + 13.057701421052633, + 48.380247 + ], + [ + 13.147532947368422, + 48.380247 + ], + [ + 13.237364473684211, + 48.380247 + ], + [ + 13.327196, + 48.380247 + ], + [ + 13.41702752631579, + 48.380247 + ], + [ + 13.50685905263158, + 48.380247 + ], + [ + 13.59669057894737, + 48.380247 + ], + [ + 13.686522105263158, + 48.380247 + ], + [ + 13.77635363157895, + 48.380247 + ], + [ + 13.866185157894737, + 48.380247 + ], + [ + 13.956016684210528, + 48.380247 + ], + [ + 14.045848210526316, + 48.380247 + ], + [ + 14.135679736842107, + 48.380247 + ], + [ + 14.225511263157895, + 48.380247 + ], + [ + 14.315342789473686, + 48.380247 + ], + [ + 14.405174315789475, + 48.380247 + ], + [ + 14.495005842105265, + 48.380247 + ], + [ + 14.584837368421054, + 48.380247 + ], + [ + 14.674668894736843, + 48.380247 + ], + [ + 14.764500421052633, + 48.380247 + ], + [ + 14.854331947368422, + 48.380247 + ], + [ + 14.944163473684211, + 48.380247 + ], + [ + 15.033995, + 48.380247 + ], + [ + 15.033995, + 48.31921502564102 + ], + [ + 15.033995, + 48.258183051282046 + ], + [ + 15.033995, + 48.19715107692308 + ], + [ + 15.033995, + 48.1361191025641 + ], + [ + 15.033995, + 48.075087128205126 + ], + [ + 15.033995, + 48.01405515384615 + ], + [ + 15.033995, + 47.953023179487175 + ], + [ + 15.033995, + 47.8919912051282 + ], + [ + 15.033995, + 47.83095923076923 + ], + [ + 15.033995, + 47.769927256410256 + ], + [ + 15.033995, + 47.70889528205128 + ], + [ + 15.033995, + 47.647863307692305 + ], + [ + 15.033995, + 47.58683133333333 + ], + [ + 15.033995, + 47.52579935897435 + ], + [ + 15.033995, + 47.464767384615385 + ], + [ + 15.033995, + 47.40373541025641 + ], + [ + 15.033995, + 47.342703435897434 + ], + [ + 15.033995, + 47.28167146153846 + ], + [ + 15.033995, + 47.22063948717948 + ], + [ + 15.033995, + 47.159607512820514 + ], + [ + 15.033995, + 47.09857553846154 + ], + [ + 15.033995, + 47.03754356410256 + ], + [ + 15.033995, + 46.97651158974359 + ], + [ + 15.033995, + 46.91547961538461 + ], + [ + 15.033995, + 46.85444764102564 + ], + [ + 15.033995, + 46.79341566666667 + ], + [ + 15.033995, + 46.73238369230769 + ], + [ + 15.033995, + 46.67135171794872 + ], + [ + 15.033995, + 46.61031974358974 + ], + [ + 15.033995, + 46.549287769230766 + ], + [ + 15.033995, + 46.4882557948718 + ], + [ + 15.033995, + 46.42722382051282 + ], + [ + 15.033995, + 46.366191846153846 + ], + [ + 15.033995, + 46.30515987179487 + ], + [ + 15.033995, + 46.244127897435895 + ], + [ + 15.033995, + 46.18309592307692 + ], + [ + 15.033995, + 46.12206394871795 + ], + [ + 15.033995, + 46.061031974358976 + ], + [ + 15.033995, + 46 + ], + [ + 14.9478674996405, + 46 + ], + [ + 15.000175109158274, + 46.061031974358976 + ], + [ + 15.005705583003637, + 46.12206394871795 + ], + [ + 14.979965510366329, + 46.18309592307692 + ], + [ + 14.944163473684211, + 46.222755518764444 + ], + [ + 14.928335821777353, + 46.244127897435895 + ], + [ + 14.873869401865184, + 46.30515987179487 + ], + [ + 14.854331947368422, + 46.35229399977472 + ], + [ + 14.848715535116082, + 46.366191846153846 + ], + [ + 14.81533395624323, + 46.42722382051282 + ], + [ + 14.809315562071985, + 46.4882557948718 + ], + [ + 14.764500421052633, + 46.53749039504401 + ], + [ + 14.674668894736843, + 46.546939327211504 + ], + [ + 14.584837368421054, + 46.50122624398684 + ], + [ + 14.563111392708594, + 46.4882557948718 + ], + [ + 14.517825676928412, + 46.42722382051282 + ], + [ + 14.495005842105265, + 46.38223540899964 + ], + [ + 14.465514461406109, + 46.366191846153846 + ], + [ + 14.430667300769564, + 46.30515987179487 + ], + [ + 14.443832655171331, + 46.244127897435895 + ], + [ + 14.462042232095524, + 46.18309592307692 + ], + [ + 14.48752935722702, + 46.12206394871795 + ], + [ + 14.495005842105265, + 46.11100977090113 + ], + [ + 14.527695602488322, + 46.061031974358976 + ], + [ + 14.584837368421054, + 46.01379128187563 + ], + [ + 14.611860650105415, + 46 + ], + [ + 14.584837368421054, + 46 + ], + [ + 14.495005842105265, + 46 + ], + [ + 14.405174315789475, + 46 + ], + [ + 14.315342789473686, + 46 + ], + [ + 14.225511263157895, + 46 + ], + [ + 14.135679736842107, + 46 + ], + [ + 14.045848210526316, + 46 + ], + [ + 13.956016684210528, + 46 + ], + [ + 13.866185157894737, + 46 + ], + [ + 13.77635363157895, + 46 + ], + [ + 13.686522105263158, + 46 + ], + [ + 13.59669057894737, + 46 + ], + [ + 13.50685905263158, + 46 + ], + [ + 13.458888991534039, + 46 + ] + ], + [ + [ + 14.110955512351534, + 46.30515987179487 + ], + [ + 14.135679736842107, + 46.26572675050892 + ], + [ + 14.225511263157895, + 46.24687095927061 + ], + [ + 14.315342789473686, + 46.26527962512434 + ], + [ + 14.385538455073064, + 46.30515987179487 + ], + [ + 14.38215726997948, + 46.366191846153846 + ], + [ + 14.315342789473686, + 46.418797481847385 + ], + [ + 14.308270305142683, + 46.42722382051282 + ], + [ + 14.225511263157895, + 46.45874349163293 + ], + [ + 14.135679736842107, + 46.45009381004016 + ], + [ + 14.115402697525091, + 46.42722382051282 + ], + [ + 14.095478182483035, + 46.366191846153846 + ], + [ + 14.110955512351534, + 46.30515987179487 + ] + ] + ], + [ + [ + [ + 8.566125105263158, + 46.41172112796147 + ], + [ + 8.509574725040595, + 46.42722382051282 + ], + [ + 8.476293578947368, + 46.4355333543329 + ], + [ + 8.389310097862685, + 46.4882557948718 + ], + [ + 8.386462052631579, + 46.490549037176976 + ], + [ + 8.340449039048702, + 46.549287769230766 + ], + [ + 8.322913534356, + 46.61031974358974 + ], + [ + 8.330829598480722, + 46.67135171794872 + ], + [ + 8.3666226697486, + 46.73238369230769 + ], + [ + 8.386462052631579, + 46.75005955980023 + ], + [ + 8.440595560534053, + 46.79341566666667 + ], + [ + 8.476293578947368, + 46.81438816758198 + ], + [ + 8.566125105263158, + 46.846484140540774 + ], + [ + 8.628278452249415, + 46.85444764102564 + ], + [ + 8.655956631578947, + 46.85905195421879 + ], + [ + 8.723750497058422, + 46.85444764102564 + ], + [ + 8.745788157894737, + 46.852783713134535 + ], + [ + 8.835619684210528, + 46.82438972309527 + ], + [ + 8.887844789466845, + 46.79341566666667 + ], + [ + 8.925451210526315, + 46.75161841946037 + ], + [ + 8.941470564571567, + 46.73238369230769 + ], + [ + 8.963006318557573, + 46.67135171794872 + ], + [ + 8.958976537525857, + 46.61031974358974 + ], + [ + 8.930128994931247, + 46.549287769230766 + ], + [ + 8.925451210526315, + 46.543412000229 + ], + [ + 8.872426228315666, + 46.4882557948718 + ], + [ + 8.835619684210528, + 46.462402734306465 + ], + [ + 8.750566562043144, + 46.42722382051282 + ], + [ + 8.745788157894737, + 46.42535897722291 + ], + [ + 8.655956631578947, + 46.408531210281744 + ], + [ + 8.566125105263158, + 46.41172112796147 + ] + ] + ], + [ + [ + [ + 10.09326105263158, + 47.11727295718789 + ], + [ + 10.005271489409258, + 47.159607512820514 + ], + [ + 10.00342952631579, + 47.163791910944376 + ], + [ + 9.964322895533961, + 47.22063948717948 + ], + [ + 9.97680068331476, + 47.28167146153846 + ], + [ + 10.00342952631579, + 47.30909325316405 + ], + [ + 10.054128489546791, + 47.342703435897434 + ], + [ + 10.09326105263158, + 47.356956562364 + ], + [ + 10.183092578947369, + 47.363224036072396 + ], + [ + 10.262625453964414, + 47.342703435897434 + ], + [ + 10.272924105263158, + 47.34139627107545 + ], + [ + 10.362755631578947, + 47.30615641422447 + ], + [ + 10.406526704722733, + 47.28167146153846 + ], + [ + 10.452587157894737, + 47.24452353094625 + ], + [ + 10.488001689347204, + 47.22063948717948 + ], + [ + 10.492741910512203, + 47.159607512820514 + ], + [ + 10.452587157894737, + 47.13408745564452 + ], + [ + 10.362755631578947, + 47.10746858697099 + ], + [ + 10.272924105263158, + 47.106137910230174 + ], + [ + 10.183092578947369, + 47.10546710237587 + ], + [ + 10.09326105263158, + 47.11727295718789 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 1 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.5, + 46 + ], + [ + 15.033995, + 46 + ], + [ + 15.033995, + 48.380247 + ], + [ + 6.5, + 48.380247 + ], + [ + 6.5, + 46 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-isobands/test/out/matrix1.json b/packages/turf-isobands/test/out/matrix1.json new file mode 100644 index 000000000..afa8aba9d --- /dev/null +++ b/packages/turf-isobands/test/out/matrix1.json @@ -0,0 +1,440 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "temperature": "2-4" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 10.979663, + 44.1320792 + ], + [ + 10.84491575, + 44.2283168 + ], + [ + 10.84491575, + 44.3566336 + ], + [ + 10.84491575, + 44.4849504 + ], + [ + 10.84491575, + 44.6132672 + ], + [ + 10.979663, + 44.709504800000005 + ], + [ + 11.159326, + 44.709504800000005 + ], + [ + 11.338989000000002, + 44.709504800000005 + ], + [ + 11.518652000000001, + 44.709504800000005 + ], + [ + 11.698315000000001, + 44.709504800000005 + ], + [ + 11.833062250000001, + 44.6132672 + ], + [ + 11.833062250000001, + 44.4849504 + ], + [ + 11.833062250000001, + 44.3566336 + ], + [ + 11.833062250000001, + 44.2283168 + ], + [ + 11.698315000000001, + 44.1320792 + ], + [ + 11.518652000000001, + 44.1320792 + ], + [ + 11.338989000000002, + 44.1320792 + ], + [ + 11.159326, + 44.1320792 + ], + [ + 10.979663, + 44.1320792 + ] + ], + [ + [ + 10.934747250000001, + 44.2283168 + ], + [ + 10.979663, + 44.1962376 + ], + [ + 11.159326, + 44.1962376 + ], + [ + 11.338989000000002, + 44.1962376 + ], + [ + 11.518652000000001, + 44.1962376 + ], + [ + 11.698315000000001, + 44.1962376 + ], + [ + 11.74323075, + 44.2283168 + ], + [ + 11.74323075, + 44.3566336 + ], + [ + 11.74323075, + 44.4849504 + ], + [ + 11.74323075, + 44.6132672 + ], + [ + 11.698315000000001, + 44.6453464 + ], + [ + 11.518652000000001, + 44.6453464 + ], + [ + 11.338989000000002, + 44.6453464 + ], + [ + 11.159326, + 44.6453464 + ], + [ + 10.979663, + 44.6453464 + ], + [ + 10.934747250000001, + 44.6132672 + ], + [ + 10.934747250000001, + 44.4849504 + ], + [ + 10.934747250000001, + 44.3566336 + ], + [ + 10.934747250000001, + 44.2283168 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "temperature": "4-8" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 10.979663, + 44.1962376 + ], + [ + 10.934747250000001, + 44.2283168 + ], + [ + 10.934747250000001, + 44.3566336 + ], + [ + 10.934747250000001, + 44.4849504 + ], + [ + 10.934747250000001, + 44.6132672 + ], + [ + 10.979663, + 44.6453464 + ], + [ + 11.159326, + 44.6453464 + ], + [ + 11.338989000000002, + 44.6453464 + ], + [ + 11.518652000000001, + 44.6453464 + ], + [ + 11.698315000000001, + 44.6453464 + ], + [ + 11.74323075, + 44.6132672 + ], + [ + 11.74323075, + 44.4849504 + ], + [ + 11.74323075, + 44.3566336 + ], + [ + 11.74323075, + 44.2283168 + ], + [ + 11.698315000000001, + 44.1962376 + ], + [ + 11.518652000000001, + 44.1962376 + ], + [ + 11.338989000000002, + 44.1962376 + ], + [ + 11.159326, + 44.1962376 + ], + [ + 10.979663, + 44.1962376 + ] + ], + [ + [ + 11.0874608, + 44.3566336 + ], + [ + 11.159326, + 44.30530688 + ], + [ + 11.338989000000002, + 44.30530688 + ], + [ + 11.518652000000001, + 44.30530688 + ], + [ + 11.5905172, + 44.3566336 + ], + [ + 11.6444161, + 44.4849504 + ], + [ + 11.518652000000001, + 44.57477216 + ], + [ + 11.338989000000002, + 44.57477216 + ], + [ + 11.159326, + 44.57477216 + ], + [ + 11.0335619, + 44.4849504 + ], + [ + 11.0874608, + 44.3566336 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "temperature": "8-12" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 11.159326, + 44.30530688 + ], + [ + 11.0874608, + 44.3566336 + ], + [ + 11.0335619, + 44.4849504 + ], + [ + 11.159326, + 44.57477216 + ], + [ + 11.338989000000002, + 44.57477216 + ], + [ + 11.518652000000001, + 44.57477216 + ], + [ + 11.6444161, + 44.4849504 + ], + [ + 11.5905172, + 44.3566336 + ], + [ + 11.518652000000001, + 44.30530688 + ], + [ + 11.338989000000002, + 44.30530688 + ], + [ + 11.159326, + 44.30530688 + ] + ], + [ + [ + 11.1054271, + 44.4849504 + ], + [ + 11.159326, + 44.40796032 + ], + [ + 11.338989000000002, + 44.40796032 + ], + [ + 11.518652000000001, + 44.40796032 + ], + [ + 11.572550900000001, + 44.4849504 + ], + [ + 11.518652000000001, + 44.52344544 + ], + [ + 11.338989000000002, + 44.52344544 + ], + [ + 11.159326, + 44.52344544 + ], + [ + 11.1054271, + 44.4849504 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 1 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.8, + 44.1 + ], + [ + 11.877978, + 44.1 + ], + [ + 11.877978, + 44.741584 + ], + [ + 10.8, + 44.741584 + ], + [ + 10.8, + 44.1 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-isobands/test/out/matrix2.json b/packages/turf-isobands/test/out/matrix2.json new file mode 100644 index 000000000..ccbb81dab --- /dev/null +++ b/packages/turf-isobands/test/out/matrix2.json @@ -0,0 +1,845 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "stroke-width": 3, + "stroke": "darkred", + "fill": "darkred", + "fill-opacity": 0.4, + "elevation": "0-4.5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 11.388989500000001, + 44.1153011375 + ], + [ + 11.299157916666667, + 44.128112375 + ], + [ + 11.209326333333333, + 44.1494644375 + ], + [ + 11.059607027777778, + 44.25622475 + ], + [ + 11.059607027777778, + 44.384337125 + ], + [ + 11.029663166666666, + 44.4483933125 + ], + [ + 11.01169685, + 44.5124495 + ], + [ + 11.029663166666666, + 44.576505687499996 + ], + [ + 11.059607027777778, + 44.640561874999996 + ], + [ + 11.059607027777778, + 44.76867425 + ], + [ + 11.209326333333333, + 44.8754345625 + ], + [ + 11.299157916666667, + 44.896786625 + ], + [ + 11.388989500000001, + 44.9095978625 + ], + [ + 11.478821083333333, + 44.896786625 + ], + [ + 11.568652666666667, + 44.8754345625 + ], + [ + 11.718371972222222, + 44.76867425 + ], + [ + 11.718371972222222, + 44.640561874999996 + ], + [ + 11.748315833333333, + 44.576505687499996 + ], + [ + 11.76628215, + 44.5124495 + ], + [ + 11.748315833333333, + 44.4483933125 + ], + [ + 11.718371972222222, + 44.384337125 + ], + [ + 11.718371972222222, + 44.25622475 + ], + [ + 11.568652666666667, + 44.1494644375 + ], + [ + 11.478821083333333, + 44.128112375 + ], + [ + 11.388989500000001, + 44.1153011375 + ] + ], + [ + [ + 11.266491886363637, + 44.5124495 + ], + [ + 11.388989500000001, + 44.42510015340909 + ], + [ + 11.511487113636363, + 44.5124495 + ], + [ + 11.388989500000001, + 44.59979884659091 + ], + [ + 11.266491886363637, + 44.5124495 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 3, + "stroke": "darkred", + "fill": "darkred", + "fill-opacity": 0.5, + "elevation": "4.5-9" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 11.029663166666666, + 44.1024899 + ], + [ + 10.993730533333332, + 44.128112375 + ], + [ + 10.885932633333333, + 44.25622475 + ], + [ + 10.885932633333333, + 44.384337125 + ], + [ + 10.85, + 44.5124495 + ], + [ + 10.85, + 44.5124495 + ], + [ + 10.85, + 44.5124495 + ], + [ + 10.885932633333333, + 44.640561874999996 + ], + [ + 10.885932633333333, + 44.76867425 + ], + [ + 10.993730533333332, + 44.896786625 + ], + [ + 11.029663166666666, + 44.922409099999996 + ], + [ + 11.209326333333333, + 44.999276525 + ], + [ + 11.388989500000001, + 45.024899 + ], + [ + 11.388989500000001, + 45.024899 + ], + [ + 11.388989500000001, + 45.024899 + ], + [ + 11.568652666666667, + 44.999276525 + ], + [ + 11.748315833333333, + 44.922409099999996 + ], + [ + 11.784248466666668, + 44.896786625 + ], + [ + 11.892046366666667, + 44.76867425 + ], + [ + 11.892046366666667, + 44.640561874999996 + ], + [ + 11.927979, + 44.5124495 + ], + [ + 11.927979, + 44.5124495 + ], + [ + 11.927979, + 44.5124495 + ], + [ + 11.892046366666667, + 44.384337125 + ], + [ + 11.892046366666667, + 44.25622475 + ], + [ + 11.784248466666668, + 44.128112375 + ], + [ + 11.748315833333333, + 44.1024899 + ], + [ + 11.568652666666667, + 44.025622475 + ], + [ + 11.388989500000001, + 44 + ], + [ + 11.388989500000001, + 44 + ], + [ + 11.388989500000001, + 44 + ], + [ + 11.209326333333333, + 44.025622475 + ], + [ + 11.029663166666666, + 44.1024899 + ] + ], + [ + [ + 11.299157916666667, + 44.128112375 + ], + [ + 11.388989500000001, + 44.1153011375 + ], + [ + 11.478821083333333, + 44.128112375 + ], + [ + 11.568652666666667, + 44.1494644375 + ], + [ + 11.718371972222222, + 44.25622475 + ], + [ + 11.718371972222222, + 44.384337125 + ], + [ + 11.748315833333333, + 44.4483933125 + ], + [ + 11.76628215, + 44.5124495 + ], + [ + 11.748315833333333, + 44.576505687499996 + ], + [ + 11.718371972222222, + 44.640561874999996 + ], + [ + 11.718371972222222, + 44.76867425 + ], + [ + 11.568652666666667, + 44.8754345625 + ], + [ + 11.478821083333333, + 44.896786625 + ], + [ + 11.388989500000001, + 44.9095978625 + ], + [ + 11.299157916666667, + 44.896786625 + ], + [ + 11.209326333333333, + 44.8754345625 + ], + [ + 11.059607027777778, + 44.76867425 + ], + [ + 11.059607027777778, + 44.640561874999996 + ], + [ + 11.029663166666666, + 44.576505687499996 + ], + [ + 11.01169685, + 44.5124495 + ], + [ + 11.029663166666666, + 44.4483933125 + ], + [ + 11.059607027777778, + 44.384337125 + ], + [ + 11.059607027777778, + 44.25622475 + ], + [ + 11.209326333333333, + 44.1494644375 + ], + [ + 11.299157916666667, + 44.128112375 + ] + ], + [ + [ + 11.388989500000001, + 44.42510015340909 + ], + [ + 11.266491886363637, + 44.5124495 + ], + [ + 11.388989500000001, + 44.59979884659091 + ], + [ + 11.511487113636363, + 44.5124495 + ], + [ + 11.388989500000001, + 44.42510015340909 + ] + ], + [ + [ + 11.339990454545454, + 44.5124495 + ], + [ + 11.388989500000001, + 44.477509761363635 + ], + [ + 11.437988545454546, + 44.5124495 + ], + [ + 11.388989500000001, + 44.54738923863636 + ], + [ + 11.339990454545454, + 44.5124495 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 3, + "stroke": "darkred", + "fill": "darkred", + "fill-opacity": 0.7, + "elevation": "9-13.5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 11.01169685, + 44 + ], + [ + 10.85, + 44.1153011375 + ], + [ + 10.85, + 44.128112375 + ], + [ + 10.85, + 44.25622475 + ], + [ + 10.85, + 44.384337125 + ], + [ + 10.85, + 44.5124495 + ], + [ + 10.85, + 44.640561874999996 + ], + [ + 10.85, + 44.76867425 + ], + [ + 10.85, + 44.896786625 + ], + [ + 10.85, + 44.9095978625 + ], + [ + 11.01169685, + 45.024899 + ], + [ + 11.029663166666666, + 45.024899 + ], + [ + 11.209326333333333, + 45.024899 + ], + [ + 11.388989500000001, + 45.024899 + ], + [ + 11.568652666666667, + 45.024899 + ], + [ + 11.748315833333333, + 45.024899 + ], + [ + 11.76628215, + 45.024899 + ], + [ + 11.927979, + 44.9095978625 + ], + [ + 11.927979, + 44.896786625 + ], + [ + 11.927979, + 44.76867425 + ], + [ + 11.927979, + 44.640561874999996 + ], + [ + 11.927979, + 44.5124495 + ], + [ + 11.927979, + 44.384337125 + ], + [ + 11.927979, + 44.25622475 + ], + [ + 11.927979, + 44.128112375 + ], + [ + 11.927979, + 44.1153011375 + ], + [ + 11.76628215, + 44 + ], + [ + 11.748315833333333, + 44 + ], + [ + 11.568652666666667, + 44 + ], + [ + 11.388989500000001, + 44 + ], + [ + 11.209326333333333, + 44 + ], + [ + 11.029663166666666, + 44 + ], + [ + 11.01169685, + 44 + ] + ], + [ + [ + 10.993730533333332, + 44.128112375 + ], + [ + 11.029663166666666, + 44.1024899 + ], + [ + 11.209326333333333, + 44.025622475 + ], + [ + 11.388989500000001, + 44 + ], + [ + 11.568652666666667, + 44.025622475 + ], + [ + 11.748315833333333, + 44.1024899 + ], + [ + 11.784248466666668, + 44.128112375 + ], + [ + 11.892046366666667, + 44.25622475 + ], + [ + 11.892046366666667, + 44.384337125 + ], + [ + 11.927979, + 44.5124495 + ], + [ + 11.892046366666667, + 44.640561874999996 + ], + [ + 11.892046366666667, + 44.76867425 + ], + [ + 11.784248466666668, + 44.896786625 + ], + [ + 11.748315833333333, + 44.922409099999996 + ], + [ + 11.568652666666667, + 44.999276525 + ], + [ + 11.388989500000001, + 45.024899 + ], + [ + 11.209326333333333, + 44.999276525 + ], + [ + 11.029663166666666, + 44.922409099999996 + ], + [ + 10.993730533333332, + 44.896786625 + ], + [ + 10.885932633333333, + 44.76867425 + ], + [ + 10.885932633333333, + 44.640561874999996 + ], + [ + 10.85, + 44.5124495 + ], + [ + 10.885932633333333, + 44.384337125 + ], + [ + 10.885932633333333, + 44.25622475 + ], + [ + 10.993730533333332, + 44.128112375 + ] + ], + [ + [ + 11.388989500000001, + 44.477509761363635 + ], + [ + 11.339990454545454, + 44.5124495 + ], + [ + 11.388989500000001, + 44.54738923863636 + ], + [ + 11.437988545454546, + 44.5124495 + ], + [ + 11.388989500000001, + 44.477509761363635 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke-width": 3, + "stroke": "darkred", + "fill": "darkred", + "fill-opacity": 0.8, + "elevation": "13.5-18" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 11.76628215, + 44 + ], + [ + 11.927979, + 44.1153011375 + ], + [ + 11.927979, + 44 + ], + [ + 11.76628215, + 44 + ] + ] + ], + [ + [ + [ + 10.85, + 44.1153011375 + ], + [ + 11.01169685, + 44 + ], + [ + 10.85, + 44 + ], + [ + 10.85, + 44.1153011375 + ] + ] + ], + [ + [ + [ + 11.01169685, + 45.024899 + ], + [ + 10.85, + 44.9095978625 + ], + [ + 10.85, + 45.024899 + ], + [ + 11.01169685, + 45.024899 + ] + ] + ], + [ + [ + [ + 11.927979, + 44.9095978625 + ], + [ + 11.76628215, + 45.024899 + ], + [ + 11.927979, + 45.024899 + ], + [ + 11.927979, + 44.9095978625 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 1 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.85, + 44 + ], + [ + 11.927979, + 44 + ], + [ + 11.927979, + 45.024899 + ], + [ + 10.85, + 45.024899 + ], + [ + 10.85, + 44 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-isobands/test/out/pointGrid.geojson b/packages/turf-isobands/test/out/pointGrid.geojson new file mode 100644 index 000000000..0f6960bd9 --- /dev/null +++ b/packages/turf-isobands/test/out/pointGrid.geojson @@ -0,0 +1,875 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "fill-opacity": 0.5, + "people": "0-20" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -70.823364, + -33.53505685521548 + ], + [ + -70.7951095511128, + -33.50903203113676 + ], + [ + -70.76942368848808, + -33.482589696511326 + ], + [ + -70.72500225547826, + -33.464080062273524 + ], + [ + -70.71548337697615, + -33.45059447161455 + ], + [ + -70.71098835101682, + -33.464080062273524 + ], + [ + -70.66154306546423, + -33.49206902401856 + ], + [ + -70.61343413898062, + -33.464080062273524 + ], + [ + -70.6076027539523, + -33.46177483310105 + ], + [ + -70.55366244244038, + -33.45284207005771 + ], + [ + -70.5275622917088, + -33.464080062273524 + ], + [ + -70.54257881678726, + -33.50903203113676 + ], + [ + -70.55366244244038, + -33.52199894523193 + ], + [ + -70.6076027539523, + -33.51262818864582 + ], + [ + -70.64519751652122, + -33.553984 + ], + [ + -70.66154306546423, + -33.553984 + ], + [ + -70.67100627801018, + -33.553984 + ], + [ + -70.71548337697615, + -33.51877162439046 + ], + [ + -70.76423712007346, + -33.553984 + ], + [ + -70.76942368848808, + -33.553984 + ], + [ + -70.823364, + -33.553984 + ], + [ + -70.823364, + -33.53505685521548 + ] + ] + ], + [ + [ + [ + -70.76942368848808, + -33.44377917310948 + ], + [ + -70.823364, + -33.42979466229309 + ], + [ + -70.823364, + -33.419128093410286 + ], + [ + -70.823364, + -33.40654154212858 + ], + [ + -70.78672529784096, + -33.37417612454705 + ], + [ + -70.76942368848808, + -33.35101904967811 + ], + [ + -70.74245353273211, + -33.37417612454705 + ], + [ + -70.73121596783379, + -33.419128093410286 + ], + [ + -70.76942368848808, + -33.44377917310948 + ] + ] + ], + [ + [ + [ + -70.49972213092846, + -33.44228516827923 + ], + [ + -70.51451221634302, + -33.419128093410286 + ], + [ + -70.51123747832989, + -33.37417612454705 + ], + [ + -70.55366244244038, + -33.335328744047956 + ], + [ + -70.6076027539523, + -33.33721561681505 + ], + [ + -70.6297321125213, + -33.32922415568381 + ], + [ + -70.6076027539523, + -33.32922415568381 + ], + [ + -70.55366244244038, + -33.32922415568381 + ], + [ + -70.49972213092846, + -33.32922415568381 + ], + [ + -70.49972213092846, + -33.37417612454705 + ], + [ + -70.49972213092846, + -33.419128093410286 + ], + [ + -70.49972213092846, + -33.44228516827923 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0.6, + "people": "20-40" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -70.823364, + -33.51139792423483 + ], + [ + -70.82079541373753, + -33.50903203113676 + ], + [ + -70.7798637487807, + -33.464080062273524 + ], + [ + -70.823364, + -33.44503261783995 + ], + [ + -70.823364, + -33.42979466229309 + ], + [ + -70.76942368848808, + -33.44377917310948 + ], + [ + -70.73121596783379, + -33.419128093410286 + ], + [ + -70.74245353273211, + -33.37417612454705 + ], + [ + -70.76942368848808, + -33.35101904967811 + ], + [ + -70.78672529784096, + -33.37417612454705 + ], + [ + -70.823364, + -33.40654154212858 + ], + [ + -70.823364, + -33.38856075458328 + ], + [ + -70.80708013237376, + -33.37417612454705 + ], + [ + -70.77123680820276, + -33.32922415568381 + ], + [ + -70.76942368848808, + -33.32922415568381 + ], + [ + -70.76428651596314, + -33.32922415568381 + ], + [ + -70.71548337697615, + -33.37088695609364 + ], + [ + -70.71204037836901, + -33.37417612454705 + ], + [ + -70.68851322122019, + -33.419128093410286 + ], + [ + -70.68102151128798, + -33.464080062273524 + ], + [ + -70.66154306546423, + -33.475106016900355 + ], + [ + -70.6425910641222, + -33.464080062273524 + ], + [ + -70.6076027539523, + -33.450248687238684 + ], + [ + -70.55366244244038, + -33.437858080436634 + ], + [ + -70.53191231683074, + -33.419128093410286 + ], + [ + -70.52335889664717, + -33.37417612454705 + ], + [ + -70.55366244244038, + -33.34642799561912 + ], + [ + -70.6076027539523, + -33.34720494322911 + ], + [ + -70.65739381073254, + -33.32922415568381 + ], + [ + -70.6297321125213, + -33.32922415568381 + ], + [ + -70.6076027539523, + -33.33721561681505 + ], + [ + -70.55366244244038, + -33.335328744047956 + ], + [ + -70.51123747832989, + -33.37417612454705 + ], + [ + -70.51451221634302, + -33.419128093410286 + ], + [ + -70.49972213092846, + -33.44228516827923 + ], + [ + -70.49972213092846, + -33.464080062273524 + ], + [ + -70.49972213092846, + -33.46836120216526 + ], + [ + -70.52780064924974, + -33.50903203113676 + ], + [ + -70.55366244244038, + -33.53928816402548 + ], + [ + -70.6076027539523, + -33.54858976373641 + ], + [ + -70.6125064186352, + -33.553984 + ], + [ + -70.64519751652122, + -33.553984 + ], + [ + -70.6076027539523, + -33.51262818864582 + ], + [ + -70.55366244244038, + -33.52199894523193 + ], + [ + -70.54257881678726, + -33.50903203113676 + ], + [ + -70.5275622917088, + -33.464080062273524 + ], + [ + -70.55366244244038, + -33.45284207005771 + ], + [ + -70.6076027539523, + -33.46177483310105 + ], + [ + -70.61343413898062, + -33.464080062273524 + ], + [ + -70.66154306546423, + -33.49206902401856 + ], + [ + -70.71098835101682, + -33.464080062273524 + ], + [ + -70.71548337697615, + -33.45059447161455 + ], + [ + -70.72500225547826, + -33.464080062273524 + ], + [ + -70.76942368848808, + -33.482589696511326 + ], + [ + -70.7951095511128, + -33.50903203113676 + ], + [ + -70.823364, + -33.53505685521548 + ], + [ + -70.823364, + -33.51139792423483 + ] + ] + ], + [ + [ + [ + -70.71548337697615, + -33.53375561401154 + ], + [ + -70.74349084641503, + -33.553984 + ], + [ + -70.76423712007346, + -33.553984 + ], + [ + -70.71548337697615, + -33.51877162439046 + ], + [ + -70.67100627801018, + -33.553984 + ], + [ + -70.68993270310209, + -33.553984 + ], + [ + -70.71548337697615, + -33.53375561401154 + ] + ] + ], + [ + [ + [ + -70.5154547217861, + -33.553984 + ], + [ + -70.49972213092846, + -33.54699147151016 + ], + [ + -70.49972213092846, + -33.553984 + ], + [ + -70.5154547217861, + -33.553984 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0.7, + "people": "40-80" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -70.66154306546423, + -33.475106016900355 + ], + [ + -70.68102151128798, + -33.464080062273524 + ], + [ + -70.68851322122019, + -33.419128093410286 + ], + [ + -70.71204037836901, + -33.37417612454705 + ], + [ + -70.71548337697615, + -33.37088695609364 + ], + [ + -70.76428651596314, + -33.32922415568381 + ], + [ + -70.71548337697615, + -33.32922415568381 + ], + [ + -70.66154306546423, + -33.32922415568381 + ], + [ + -70.65739381073254, + -33.32922415568381 + ], + [ + -70.6076027539523, + -33.34720494322911 + ], + [ + -70.55366244244038, + -33.34642799561912 + ], + [ + -70.52335889664717, + -33.37417612454705 + ], + [ + -70.53191231683074, + -33.419128093410286 + ], + [ + -70.55366244244038, + -33.437858080436634 + ], + [ + -70.6076027539523, + -33.450248687238684 + ], + [ + -70.6425910641222, + -33.464080062273524 + ], + [ + -70.66154306546423, + -33.475106016900355 + ] + ], + [ + [ + -70.6260213969076, + -33.419128093410286 + ], + [ + -70.6076027539523, + -33.427196395513946 + ], + [ + -70.58156260356724, + -33.419128093410286 + ], + [ + -70.55366244244038, + -33.39215691209235 + ], + [ + -70.54760173328174, + -33.37417612454705 + ], + [ + -70.55366244244038, + -33.368626498761465 + ], + [ + -70.6076027539523, + -33.36718359605721 + ], + [ + -70.66154306546423, + -33.36979056660917 + ], + [ + -70.66613373027376, + -33.37417612454705 + ], + [ + -70.66154306546423, + -33.379976378593916 + ], + [ + -70.6260213969076, + -33.419128093410286 + ] + ] + ], + [ + [ + [ + -70.6125064186352, + -33.553984 + ], + [ + -70.6076027539523, + -33.54858976373641 + ], + [ + -70.55366244244038, + -33.53928816402548 + ], + [ + -70.52780064924974, + -33.50903203113676 + ], + [ + -70.49972213092846, + -33.46836120216526 + ], + [ + -70.49972213092846, + -33.50903203113676 + ], + [ + -70.49972213092846, + -33.54699147151016 + ], + [ + -70.5154547217861, + -33.553984 + ], + [ + -70.55366244244038, + -33.553984 + ], + [ + -70.6076027539523, + -33.553984 + ], + [ + -70.6125064186352, + -33.553984 + ] + ] + ], + [ + [ + [ + -70.82079541373753, + -33.50903203113676 + ], + [ + -70.823364, + -33.51139792423483 + ], + [ + -70.823364, + -33.50903203113676 + ], + [ + -70.823364, + -33.464080062273524 + ], + [ + -70.823364, + -33.44503261783995 + ], + [ + -70.7798637487807, + -33.464080062273524 + ], + [ + -70.82079541373753, + -33.50903203113676 + ] + ] + ], + [ + [ + [ + -70.80708013237376, + -33.37417612454705 + ], + [ + -70.823364, + -33.38856075458328 + ], + [ + -70.823364, + -33.37417612454705 + ], + [ + -70.823364, + -33.3632786775499 + ], + [ + -70.78936800534963, + -33.32922415568381 + ], + [ + -70.77123680820276, + -33.32922415568381 + ], + [ + -70.80708013237376, + -33.37417612454705 + ] + ] + ], + [ + [ + [ + -70.74349084641503, + -33.553984 + ], + [ + -70.71548337697615, + -33.53375561401154 + ], + [ + -70.68993270310209, + -33.553984 + ], + [ + -70.71548337697615, + -33.553984 + ], + [ + -70.74349084641503, + -33.553984 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0.8, + "people": "80-160" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -70.6076027539523, + -33.427196395513946 + ], + [ + -70.6260213969076, + -33.419128093410286 + ], + [ + -70.66154306546423, + -33.379976378593916 + ], + [ + -70.66613373027376, + -33.37417612454705 + ], + [ + -70.66154306546423, + -33.36979056660917 + ], + [ + -70.6076027539523, + -33.36718359605721 + ], + [ + -70.55366244244038, + -33.368626498761465 + ], + [ + -70.54760173328174, + -33.37417612454705 + ], + [ + -70.55366244244038, + -33.39215691209235 + ], + [ + -70.58156260356724, + -33.419128093410286 + ], + [ + -70.6076027539523, + -33.427196395513946 + ] + ] + ], + [ + [ + [ + -70.78936800534963, + -33.32922415568381 + ], + [ + -70.823364, + -33.3632786775499 + ], + [ + -70.823364, + -33.32922415568381 + ], + [ + -70.78936800534963, + -33.32922415568381 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 1 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -70.823364, + -33.553984 + ], + [ + -70.49972213092846, + -33.553984 + ], + [ + -70.49972213092846, + -33.32922415568381 + ], + [ + -70.823364, + -33.32922415568381 + ], + [ + -70.823364, + -33.553984 + ] + ] + } + } + ] +} \ No newline at end of file