From 8f5c40736d108a1540d9641de95fc06da5ae3808 Mon Sep 17 00:00:00 2001 From: fine <105350842+lemonig@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:36:29 +0800 Subject: [PATCH] Added bbox parameter to @turf/interpolate (#2768) Expands the interpolation field beyond the default bbox of the input data points. --- packages/turf-interpolate/README.md | 7 +- packages/turf-interpolate/index.d.ts | 4 +- packages/turf-interpolate/index.js | 7 +- .../test/in/data-1km-bbox.geojson | 62 + .../test/in/data-500m-bbox.geojson | 63 + .../test/in/hex-zValue-bbox.geojson | 52 + .../test/out/data-1km-bbox.geojson | 29111 ++++ .../test/out/data-500m-bbox.geojson | 117815 +++++++++++++++ .../test/out/hex-zValue-bbox.geojson | 1040 + 9 files changed, 148156 insertions(+), 5 deletions(-) create mode 100644 packages/turf-interpolate/test/in/data-1km-bbox.geojson create mode 100644 packages/turf-interpolate/test/in/data-500m-bbox.geojson create mode 100644 packages/turf-interpolate/test/in/hex-zValue-bbox.geojson create mode 100644 packages/turf-interpolate/test/out/data-1km-bbox.geojson create mode 100644 packages/turf-interpolate/test/out/data-500m-bbox.geojson create mode 100644 packages/turf-interpolate/test/out/hex-zValue-bbox.geojson diff --git a/packages/turf-interpolate/README.md b/packages/turf-interpolate/README.md index 6959ec9fe4..e369e302cd 100644 --- a/packages/turf-interpolate/README.md +++ b/packages/turf-interpolate/README.md @@ -16,6 +16,7 @@ Takes a set of points and estimates their 'property' values on a grid using the * `options.property` **[string][6]** the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. (optional, default `'elevation'`) * `options.units` **[string][6]** used in calculating cellSize, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) * `options.weight` **[number][4]** exponent regulating the distance-decay weighting (optional, default `1`) + * `options.bbox` **[BBox][7]** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection. (optional, default `bbox(points)`) ### Examples @@ -33,7 +34,7 @@ var grid = turf.interpolate(points, 100, options); var addToMap = [grid]; ``` -Returns **[FeatureCollection][2]<([Point][3] | [Polygon][7])>** grid of points or polygons with interpolated 'property' +Returns **[FeatureCollection][2]<([Point][3] | [Polygon][8])>** grid of points or polygons with interpolated 'property' [1]: https://en.wikipedia.org/wiki/Inverse_distance_weighting @@ -47,7 +48,9 @@ Returns **[FeatureCollection][2]<([Point][3] | [Polygon][7])>** grid of points o [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[7]: https://tools.ietf.org/html/rfc7946#section-5 + +[8]: https://tools.ietf.org/html/rfc7946#section-3.1.6 diff --git a/packages/turf-interpolate/index.d.ts b/packages/turf-interpolate/index.d.ts index 6e5639a85a..4705963adb 100644 --- a/packages/turf-interpolate/index.d.ts +++ b/packages/turf-interpolate/index.d.ts @@ -1,4 +1,4 @@ -import { Point, Polygon, FeatureCollection } from "geojson"; +import { Point, Polygon, FeatureCollection, BBox } from "geojson"; import { Units, Grid } from "@turf/helpers"; /** @@ -12,6 +12,7 @@ declare function interpolate( property?: string; units?: Units; weight?: number; + bbox?: BBox; } ): FeatureCollection; declare function interpolate( @@ -22,6 +23,7 @@ declare function interpolate( property?: string; units?: Units; weight?: number; + bbox?: BBox; } ): FeatureCollection; diff --git a/packages/turf-interpolate/index.js b/packages/turf-interpolate/index.js index e79290a4e8..426ee7ca96 100644 --- a/packages/turf-interpolate/index.js +++ b/packages/turf-interpolate/index.js @@ -6,7 +6,7 @@ import { centroid } from "@turf/centroid"; import { squareGrid } from "@turf/square-grid"; import { triangleGrid } from "@turf/triangle-grid"; import { clone } from "@turf/clone"; -import { featureCollection } from "@turf/helpers"; +import { featureCollection, validateBBox } from "@turf/helpers"; import { featureEach } from "@turf/meta"; import { collectionOf } from "@turf/invariant"; @@ -21,6 +21,7 @@ import { collectionOf } from "@turf/invariant"; * @param {string} [options.property='elevation'] the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. * @param {string} [options.units='kilometers'] used in calculating cellSize, can be degrees, radians, miles, or kilometers * @param {number} [options.weight=1] exponent regulating the distance-decay weighting + * @param {BBox} [options.bbox=bbox(points)] Bounding Box Array [west, south, east, north] associated with the FeatureCollection. * @returns {FeatureCollection} grid of points or polygons with interpolated 'property' * @example * var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]}); @@ -42,6 +43,7 @@ function interpolate(points, cellSize, options) { var gridType = options.gridType; var property = options.property; var weight = options.weight; + var box = options.bbox; // validation if (!points) throw new Error("points is required"); @@ -55,7 +57,8 @@ function interpolate(points, cellSize, options) { gridType = gridType || "square"; weight = weight || 1; - var box = bbox(points); + box = box ?? bbox(points); + validateBBox(box); var grid; switch (gridType) { case "point": diff --git a/packages/turf-interpolate/test/in/data-1km-bbox.geojson b/packages/turf-interpolate/test/in/data-1km-bbox.geojson new file mode 100644 index 0000000000..8c287fbee7 --- /dev/null +++ b/packages/turf-interpolate/test/in/data-1km-bbox.geojson @@ -0,0 +1,62 @@ +{ + "type": "FeatureCollection", + "properties": { + "property": "value", + "gridType": "square", + "weight": 0.5, + "cellSize": 1, + "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] + }, + "features": [ + { + "type": "Feature", + "properties": { + "value": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [9.155731201171875, 45.47216977418841] + } + }, + { + "type": "Feature", + "properties": { + "value": 99 + }, + "geometry": { + "type": "Point", + "coordinates": [9.195213317871094, 45.53689620055365] + } + }, + { + "type": "Feature", + "properties": { + "value": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [9.175300598144531, 45.49912810913339] + } + }, + { + "type": "Feature", + "properties": { + "value": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [9.231605529785156, 45.49190839157102] + } + }, + { + "type": "Feature", + "properties": { + "value": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [9.116249084472656, 45.4391764115696] + } + } + ] +} diff --git a/packages/turf-interpolate/test/in/data-500m-bbox.geojson b/packages/turf-interpolate/test/in/data-500m-bbox.geojson new file mode 100644 index 0000000000..10c0fabdc7 --- /dev/null +++ b/packages/turf-interpolate/test/in/data-500m-bbox.geojson @@ -0,0 +1,63 @@ +{ + "type": "FeatureCollection", + "properties": { + "property": "value", + "weight": 0.5, + "gridType": "square", + "cellSize": 0.5, + "units": "kilometers", + "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] + }, + "features": [ + { + "type": "Feature", + "properties": { + "value": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [9.155731201171875, 45.47216977418841] + } + }, + { + "type": "Feature", + "properties": { + "value": 99 + }, + "geometry": { + "type": "Point", + "coordinates": [9.195213317871094, 45.53689620055365] + } + }, + { + "type": "Feature", + "properties": { + "value": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [9.175300598144531, 45.49912810913339] + } + }, + { + "type": "Feature", + "properties": { + "value": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [9.231605529785156, 45.49190839157102] + } + }, + { + "type": "Feature", + "properties": { + "value": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [9.116249084472656, 45.4391764115696] + } + } + ] +} diff --git a/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson b/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson new file mode 100644 index 0000000000..05e6020ffe --- /dev/null +++ b/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "properties": { + "weight": 2, + "gridType": "hex", + "cellSize": 0.5, + "units": "miles", + "bbox": [-6.357258206107161, 53.39023949422162, -6.186614219650437, 53.31219701461626] + }, + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.3288116455078125, 53.355879304922276, 2] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2615203857421875, 53.38087096356977, 5] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.248474121093749, 53.31979992850456, 14] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2697601318359375, 53.352190769802725, 9] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2505340576171875, 53.3648943803576, 11] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/data-1km-bbox.geojson b/packages/turf-interpolate/test/out/data-1km-bbox.geojson new file mode 100644 index 0000000000..6a5161f0af --- /dev/null +++ b/packages/turf-interpolate/test/out/data-1km-bbox.geojson @@ -0,0 +1,29111 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.339648], + [9.03507, 45.348642], + [9.044063, 45.348642], + [9.044063, 45.339648], + [9.03507, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.348642], + [9.03507, 45.357635], + [9.044063, 45.357635], + [9.044063, 45.348642], + [9.03507, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.357635], + [9.03507, 45.366628], + [9.044063, 45.366628], + [9.044063, 45.357635], + [9.03507, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.366628], + [9.03507, 45.375621], + [9.044063, 45.375621], + [9.044063, 45.366628], + [9.03507, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.375621], + [9.03507, 45.384614], + [9.044063, 45.384614], + [9.044063, 45.375621], + [9.03507, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.384614], + [9.03507, 45.393608], + [9.044063, 45.393608], + [9.044063, 45.384614], + [9.03507, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.393608], + [9.03507, 45.402601], + [9.044063, 45.402601], + [9.044063, 45.393608], + [9.03507, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.402601], + [9.03507, 45.411594], + [9.044063, 45.411594], + [9.044063, 45.402601], + [9.03507, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.411594], + [9.03507, 45.420587], + [9.044063, 45.420587], + [9.044063, 45.411594], + [9.03507, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.420587], + [9.03507, 45.42958], + [9.044063, 45.42958], + [9.044063, 45.420587], + [9.03507, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.42958], + [9.03507, 45.438574], + [9.044063, 45.438574], + [9.044063, 45.42958], + [9.03507, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.438574], + [9.03507, 45.447567], + [9.044063, 45.447567], + [9.044063, 45.438574], + [9.03507, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.447567], + [9.03507, 45.45656], + [9.044063, 45.45656], + [9.044063, 45.447567], + [9.03507, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.45656], + [9.03507, 45.465553], + [9.044063, 45.465553], + [9.044063, 45.45656], + [9.03507, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.465553], + [9.03507, 45.474547], + [9.044063, 45.474547], + [9.044063, 45.465553], + [9.03507, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.474547], + [9.03507, 45.48354], + [9.044063, 45.48354], + [9.044063, 45.474547], + [9.03507, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.48354], + [9.03507, 45.492533], + [9.044063, 45.492533], + [9.044063, 45.48354], + [9.03507, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.492533], + [9.03507, 45.501526], + [9.044063, 45.501526], + [9.044063, 45.492533], + [9.03507, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.501526], + [9.03507, 45.510519], + [9.044063, 45.510519], + [9.044063, 45.501526], + [9.03507, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.510519], + [9.03507, 45.519513], + [9.044063, 45.519513], + [9.044063, 45.510519], + [9.03507, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.519513], + [9.03507, 45.528506], + [9.044063, 45.528506], + [9.044063, 45.519513], + [9.03507, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.528506], + [9.03507, 45.537499], + [9.044063, 45.537499], + [9.044063, 45.528506], + [9.03507, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.537499], + [9.03507, 45.546492], + [9.044063, 45.546492], + [9.044063, 45.537499], + [9.03507, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.546492], + [9.03507, 45.555485], + [9.044063, 45.555485], + [9.044063, 45.546492], + [9.03507, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.555485], + [9.03507, 45.564479], + [9.044063, 45.564479], + [9.044063, 45.555485], + [9.03507, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.564479], + [9.03507, 45.573472], + [9.044063, 45.573472], + [9.044063, 45.564479], + [9.03507, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.573472], + [9.03507, 45.582465], + [9.044063, 45.582465], + [9.044063, 45.573472], + [9.03507, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.582465], + [9.03507, 45.591458], + [9.044063, 45.591458], + [9.044063, 45.582465], + [9.03507, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.591458], + [9.03507, 45.600451], + [9.044063, 45.600451], + [9.044063, 45.591458], + [9.03507, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.600451], + [9.03507, 45.609445], + [9.044063, 45.609445], + [9.044063, 45.600451], + [9.03507, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.609445], + [9.03507, 45.618438], + [9.044063, 45.618438], + [9.044063, 45.609445], + [9.03507, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.618438], + [9.03507, 45.627431], + [9.044063, 45.627431], + [9.044063, 45.618438], + [9.03507, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.627431], + [9.03507, 45.636424], + [9.044063, 45.636424], + [9.044063, 45.627431], + [9.03507, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.339648], + [9.044063, 45.348642], + [9.053056, 45.348642], + [9.053056, 45.339648], + [9.044063, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.348642], + [9.044063, 45.357635], + [9.053056, 45.357635], + [9.053056, 45.348642], + [9.044063, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.357635], + [9.044063, 45.366628], + [9.053056, 45.366628], + [9.053056, 45.357635], + [9.044063, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.366628], + [9.044063, 45.375621], + [9.053056, 45.375621], + [9.053056, 45.366628], + [9.044063, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.375621], + [9.044063, 45.384614], + [9.053056, 45.384614], + [9.053056, 45.375621], + [9.044063, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.384614], + [9.044063, 45.393608], + [9.053056, 45.393608], + [9.053056, 45.384614], + [9.044063, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.393608], + [9.044063, 45.402601], + [9.053056, 45.402601], + [9.053056, 45.393608], + [9.044063, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.402601], + [9.044063, 45.411594], + [9.053056, 45.411594], + [9.053056, 45.402601], + [9.044063, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.411594], + [9.044063, 45.420587], + [9.053056, 45.420587], + [9.053056, 45.411594], + [9.044063, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.420587], + [9.044063, 45.42958], + [9.053056, 45.42958], + [9.053056, 45.420587], + [9.044063, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.42958], + [9.044063, 45.438574], + [9.053056, 45.438574], + [9.053056, 45.42958], + [9.044063, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.438574], + [9.044063, 45.447567], + [9.053056, 45.447567], + [9.053056, 45.438574], + [9.044063, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.447567], + [9.044063, 45.45656], + [9.053056, 45.45656], + [9.053056, 45.447567], + [9.044063, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.45656], + [9.044063, 45.465553], + [9.053056, 45.465553], + [9.053056, 45.45656], + [9.044063, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.465553], + [9.044063, 45.474547], + [9.053056, 45.474547], + [9.053056, 45.465553], + [9.044063, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.474547], + [9.044063, 45.48354], + [9.053056, 45.48354], + [9.053056, 45.474547], + [9.044063, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.48354], + [9.044063, 45.492533], + [9.053056, 45.492533], + [9.053056, 45.48354], + [9.044063, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.492533], + [9.044063, 45.501526], + [9.053056, 45.501526], + [9.053056, 45.492533], + [9.044063, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.501526], + [9.044063, 45.510519], + [9.053056, 45.510519], + [9.053056, 45.501526], + [9.044063, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.510519], + [9.044063, 45.519513], + [9.053056, 45.519513], + [9.053056, 45.510519], + [9.044063, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.519513], + [9.044063, 45.528506], + [9.053056, 45.528506], + [9.053056, 45.519513], + [9.044063, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.528506], + [9.044063, 45.537499], + [9.053056, 45.537499], + [9.053056, 45.528506], + [9.044063, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.537499], + [9.044063, 45.546492], + [9.053056, 45.546492], + [9.053056, 45.537499], + [9.044063, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.546492], + [9.044063, 45.555485], + [9.053056, 45.555485], + [9.053056, 45.546492], + [9.044063, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.555485], + [9.044063, 45.564479], + [9.053056, 45.564479], + [9.053056, 45.555485], + [9.044063, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.564479], + [9.044063, 45.573472], + [9.053056, 45.573472], + [9.053056, 45.564479], + [9.044063, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.573472], + [9.044063, 45.582465], + [9.053056, 45.582465], + [9.053056, 45.573472], + [9.044063, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.582465], + [9.044063, 45.591458], + [9.053056, 45.591458], + [9.053056, 45.582465], + [9.044063, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.591458], + [9.044063, 45.600451], + [9.053056, 45.600451], + [9.053056, 45.591458], + [9.044063, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.600451], + [9.044063, 45.609445], + [9.053056, 45.609445], + [9.053056, 45.600451], + [9.044063, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.609445], + [9.044063, 45.618438], + [9.053056, 45.618438], + [9.053056, 45.609445], + [9.044063, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.618438], + [9.044063, 45.627431], + [9.053056, 45.627431], + [9.053056, 45.618438], + [9.044063, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.627431], + [9.044063, 45.636424], + [9.053056, 45.636424], + [9.053056, 45.627431], + [9.044063, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.339648], + [9.053056, 45.348642], + [9.06205, 45.348642], + [9.06205, 45.339648], + [9.053056, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.348642], + [9.053056, 45.357635], + [9.06205, 45.357635], + [9.06205, 45.348642], + [9.053056, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.357635], + [9.053056, 45.366628], + [9.06205, 45.366628], + [9.06205, 45.357635], + [9.053056, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.366628], + [9.053056, 45.375621], + [9.06205, 45.375621], + [9.06205, 45.366628], + [9.053056, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.375621], + [9.053056, 45.384614], + [9.06205, 45.384614], + [9.06205, 45.375621], + [9.053056, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.384614], + [9.053056, 45.393608], + [9.06205, 45.393608], + [9.06205, 45.384614], + [9.053056, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.393608], + [9.053056, 45.402601], + [9.06205, 45.402601], + [9.06205, 45.393608], + [9.053056, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.402601], + [9.053056, 45.411594], + [9.06205, 45.411594], + [9.06205, 45.402601], + [9.053056, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.411594], + [9.053056, 45.420587], + [9.06205, 45.420587], + [9.06205, 45.411594], + [9.053056, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.420587], + [9.053056, 45.42958], + [9.06205, 45.42958], + [9.06205, 45.420587], + [9.053056, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.42958], + [9.053056, 45.438574], + [9.06205, 45.438574], + [9.06205, 45.42958], + [9.053056, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.438574], + [9.053056, 45.447567], + [9.06205, 45.447567], + [9.06205, 45.438574], + [9.053056, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.447567], + [9.053056, 45.45656], + [9.06205, 45.45656], + [9.06205, 45.447567], + [9.053056, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.45656], + [9.053056, 45.465553], + [9.06205, 45.465553], + [9.06205, 45.45656], + [9.053056, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.465553], + [9.053056, 45.474547], + [9.06205, 45.474547], + [9.06205, 45.465553], + [9.053056, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.474547], + [9.053056, 45.48354], + [9.06205, 45.48354], + [9.06205, 45.474547], + [9.053056, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.48354], + [9.053056, 45.492533], + [9.06205, 45.492533], + [9.06205, 45.48354], + [9.053056, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.492533], + [9.053056, 45.501526], + [9.06205, 45.501526], + [9.06205, 45.492533], + [9.053056, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.501526], + [9.053056, 45.510519], + [9.06205, 45.510519], + [9.06205, 45.501526], + [9.053056, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.510519], + [9.053056, 45.519513], + [9.06205, 45.519513], + [9.06205, 45.510519], + [9.053056, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.519513], + [9.053056, 45.528506], + [9.06205, 45.528506], + [9.06205, 45.519513], + [9.053056, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.528506], + [9.053056, 45.537499], + [9.06205, 45.537499], + [9.06205, 45.528506], + [9.053056, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.537499], + [9.053056, 45.546492], + [9.06205, 45.546492], + [9.06205, 45.537499], + [9.053056, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.546492], + [9.053056, 45.555485], + [9.06205, 45.555485], + [9.06205, 45.546492], + [9.053056, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.555485], + [9.053056, 45.564479], + [9.06205, 45.564479], + [9.06205, 45.555485], + [9.053056, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.564479], + [9.053056, 45.573472], + [9.06205, 45.573472], + [9.06205, 45.564479], + [9.053056, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.573472], + [9.053056, 45.582465], + [9.06205, 45.582465], + [9.06205, 45.573472], + [9.053056, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.582465], + [9.053056, 45.591458], + [9.06205, 45.591458], + [9.06205, 45.582465], + [9.053056, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.591458], + [9.053056, 45.600451], + [9.06205, 45.600451], + [9.06205, 45.591458], + [9.053056, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.600451], + [9.053056, 45.609445], + [9.06205, 45.609445], + [9.06205, 45.600451], + [9.053056, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.609445], + [9.053056, 45.618438], + [9.06205, 45.618438], + [9.06205, 45.609445], + [9.053056, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.618438], + [9.053056, 45.627431], + [9.06205, 45.627431], + [9.06205, 45.618438], + [9.053056, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.627431], + [9.053056, 45.636424], + [9.06205, 45.636424], + [9.06205, 45.627431], + [9.053056, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.339648], + [9.06205, 45.348642], + [9.071043, 45.348642], + [9.071043, 45.339648], + [9.06205, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.348642], + [9.06205, 45.357635], + [9.071043, 45.357635], + [9.071043, 45.348642], + [9.06205, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.357635], + [9.06205, 45.366628], + [9.071043, 45.366628], + [9.071043, 45.357635], + [9.06205, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.366628], + [9.06205, 45.375621], + [9.071043, 45.375621], + [9.071043, 45.366628], + [9.06205, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.375621], + [9.06205, 45.384614], + [9.071043, 45.384614], + [9.071043, 45.375621], + [9.06205, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.384614], + [9.06205, 45.393608], + [9.071043, 45.393608], + [9.071043, 45.384614], + [9.06205, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.393608], + [9.06205, 45.402601], + [9.071043, 45.402601], + [9.071043, 45.393608], + [9.06205, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.402601], + [9.06205, 45.411594], + [9.071043, 45.411594], + [9.071043, 45.402601], + [9.06205, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.411594], + [9.06205, 45.420587], + [9.071043, 45.420587], + [9.071043, 45.411594], + [9.06205, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.420587], + [9.06205, 45.42958], + [9.071043, 45.42958], + [9.071043, 45.420587], + [9.06205, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.42958], + [9.06205, 45.438574], + [9.071043, 45.438574], + [9.071043, 45.42958], + [9.06205, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.438574], + [9.06205, 45.447567], + [9.071043, 45.447567], + [9.071043, 45.438574], + [9.06205, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.447567], + [9.06205, 45.45656], + [9.071043, 45.45656], + [9.071043, 45.447567], + [9.06205, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.45656], + [9.06205, 45.465553], + [9.071043, 45.465553], + [9.071043, 45.45656], + [9.06205, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.465553], + [9.06205, 45.474547], + [9.071043, 45.474547], + [9.071043, 45.465553], + [9.06205, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.474547], + [9.06205, 45.48354], + [9.071043, 45.48354], + [9.071043, 45.474547], + [9.06205, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.48354], + [9.06205, 45.492533], + [9.071043, 45.492533], + [9.071043, 45.48354], + [9.06205, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.492533], + [9.06205, 45.501526], + [9.071043, 45.501526], + [9.071043, 45.492533], + [9.06205, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.501526], + [9.06205, 45.510519], + [9.071043, 45.510519], + [9.071043, 45.501526], + [9.06205, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.510519], + [9.06205, 45.519513], + [9.071043, 45.519513], + [9.071043, 45.510519], + [9.06205, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.519513], + [9.06205, 45.528506], + [9.071043, 45.528506], + [9.071043, 45.519513], + [9.06205, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.528506], + [9.06205, 45.537499], + [9.071043, 45.537499], + [9.071043, 45.528506], + [9.06205, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.537499], + [9.06205, 45.546492], + [9.071043, 45.546492], + [9.071043, 45.537499], + [9.06205, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.546492], + [9.06205, 45.555485], + [9.071043, 45.555485], + [9.071043, 45.546492], + [9.06205, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.555485], + [9.06205, 45.564479], + [9.071043, 45.564479], + [9.071043, 45.555485], + [9.06205, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.564479], + [9.06205, 45.573472], + [9.071043, 45.573472], + [9.071043, 45.564479], + [9.06205, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.573472], + [9.06205, 45.582465], + [9.071043, 45.582465], + [9.071043, 45.573472], + [9.06205, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.582465], + [9.06205, 45.591458], + [9.071043, 45.591458], + [9.071043, 45.582465], + [9.06205, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.591458], + [9.06205, 45.600451], + [9.071043, 45.600451], + [9.071043, 45.591458], + [9.06205, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.600451], + [9.06205, 45.609445], + [9.071043, 45.609445], + [9.071043, 45.600451], + [9.06205, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.609445], + [9.06205, 45.618438], + [9.071043, 45.618438], + [9.071043, 45.609445], + [9.06205, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.618438], + [9.06205, 45.627431], + [9.071043, 45.627431], + [9.071043, 45.618438], + [9.06205, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.627431], + [9.06205, 45.636424], + [9.071043, 45.636424], + [9.071043, 45.627431], + [9.06205, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.339648], + [9.071043, 45.348642], + [9.080036, 45.348642], + [9.080036, 45.339648], + [9.071043, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.348642], + [9.071043, 45.357635], + [9.080036, 45.357635], + [9.080036, 45.348642], + [9.071043, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.357635], + [9.071043, 45.366628], + [9.080036, 45.366628], + [9.080036, 45.357635], + [9.071043, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.366628], + [9.071043, 45.375621], + [9.080036, 45.375621], + [9.080036, 45.366628], + [9.071043, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.375621], + [9.071043, 45.384614], + [9.080036, 45.384614], + [9.080036, 45.375621], + [9.071043, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.384614], + [9.071043, 45.393608], + [9.080036, 45.393608], + [9.080036, 45.384614], + [9.071043, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.393608], + [9.071043, 45.402601], + [9.080036, 45.402601], + [9.080036, 45.393608], + [9.071043, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.402601], + [9.071043, 45.411594], + [9.080036, 45.411594], + [9.080036, 45.402601], + [9.071043, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.411594], + [9.071043, 45.420587], + [9.080036, 45.420587], + [9.080036, 45.411594], + [9.071043, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.420587], + [9.071043, 45.42958], + [9.080036, 45.42958], + [9.080036, 45.420587], + [9.071043, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.42958], + [9.071043, 45.438574], + [9.080036, 45.438574], + [9.080036, 45.42958], + [9.071043, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.438574], + [9.071043, 45.447567], + [9.080036, 45.447567], + [9.080036, 45.438574], + [9.071043, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.447567], + [9.071043, 45.45656], + [9.080036, 45.45656], + [9.080036, 45.447567], + [9.071043, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.45656], + [9.071043, 45.465553], + [9.080036, 45.465553], + [9.080036, 45.45656], + [9.071043, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.465553], + [9.071043, 45.474547], + [9.080036, 45.474547], + [9.080036, 45.465553], + [9.071043, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.474547], + [9.071043, 45.48354], + [9.080036, 45.48354], + [9.080036, 45.474547], + [9.071043, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.48354], + [9.071043, 45.492533], + [9.080036, 45.492533], + [9.080036, 45.48354], + [9.071043, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.492533], + [9.071043, 45.501526], + [9.080036, 45.501526], + [9.080036, 45.492533], + [9.071043, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.501526], + [9.071043, 45.510519], + [9.080036, 45.510519], + [9.080036, 45.501526], + [9.071043, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.510519], + [9.071043, 45.519513], + [9.080036, 45.519513], + [9.080036, 45.510519], + [9.071043, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.519513], + [9.071043, 45.528506], + [9.080036, 45.528506], + [9.080036, 45.519513], + [9.071043, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.528506], + [9.071043, 45.537499], + [9.080036, 45.537499], + [9.080036, 45.528506], + [9.071043, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.537499], + [9.071043, 45.546492], + [9.080036, 45.546492], + [9.080036, 45.537499], + [9.071043, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.546492], + [9.071043, 45.555485], + [9.080036, 45.555485], + [9.080036, 45.546492], + [9.071043, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.555485], + [9.071043, 45.564479], + [9.080036, 45.564479], + [9.080036, 45.555485], + [9.071043, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.564479], + [9.071043, 45.573472], + [9.080036, 45.573472], + [9.080036, 45.564479], + [9.071043, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.573472], + [9.071043, 45.582465], + [9.080036, 45.582465], + [9.080036, 45.573472], + [9.071043, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.582465], + [9.071043, 45.591458], + [9.080036, 45.591458], + [9.080036, 45.582465], + [9.071043, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.591458], + [9.071043, 45.600451], + [9.080036, 45.600451], + [9.080036, 45.591458], + [9.071043, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.600451], + [9.071043, 45.609445], + [9.080036, 45.609445], + [9.080036, 45.600451], + [9.071043, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.609445], + [9.071043, 45.618438], + [9.080036, 45.618438], + [9.080036, 45.609445], + [9.071043, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.618438], + [9.071043, 45.627431], + [9.080036, 45.627431], + [9.080036, 45.618438], + [9.071043, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.627431], + [9.071043, 45.636424], + [9.080036, 45.636424], + [9.080036, 45.627431], + [9.071043, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.339648], + [9.080036, 45.348642], + [9.089029, 45.348642], + [9.089029, 45.339648], + [9.080036, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.348642], + [9.080036, 45.357635], + [9.089029, 45.357635], + [9.089029, 45.348642], + [9.080036, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.357635], + [9.080036, 45.366628], + [9.089029, 45.366628], + [9.089029, 45.357635], + [9.080036, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.366628], + [9.080036, 45.375621], + [9.089029, 45.375621], + [9.089029, 45.366628], + [9.080036, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.375621], + [9.080036, 45.384614], + [9.089029, 45.384614], + [9.089029, 45.375621], + [9.080036, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.384614], + [9.080036, 45.393608], + [9.089029, 45.393608], + [9.089029, 45.384614], + [9.080036, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.393608], + [9.080036, 45.402601], + [9.089029, 45.402601], + [9.089029, 45.393608], + [9.080036, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.402601], + [9.080036, 45.411594], + [9.089029, 45.411594], + [9.089029, 45.402601], + [9.080036, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.411594], + [9.080036, 45.420587], + [9.089029, 45.420587], + [9.089029, 45.411594], + [9.080036, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.420587], + [9.080036, 45.42958], + [9.089029, 45.42958], + [9.089029, 45.420587], + [9.080036, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.42958], + [9.080036, 45.438574], + [9.089029, 45.438574], + [9.089029, 45.42958], + [9.080036, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.438574], + [9.080036, 45.447567], + [9.089029, 45.447567], + [9.089029, 45.438574], + [9.080036, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.447567], + [9.080036, 45.45656], + [9.089029, 45.45656], + [9.089029, 45.447567], + [9.080036, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.45656], + [9.080036, 45.465553], + [9.089029, 45.465553], + [9.089029, 45.45656], + [9.080036, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.465553], + [9.080036, 45.474547], + [9.089029, 45.474547], + [9.089029, 45.465553], + [9.080036, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.474547], + [9.080036, 45.48354], + [9.089029, 45.48354], + [9.089029, 45.474547], + [9.080036, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.48354], + [9.080036, 45.492533], + [9.089029, 45.492533], + [9.089029, 45.48354], + [9.080036, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.492533], + [9.080036, 45.501526], + [9.089029, 45.501526], + [9.089029, 45.492533], + [9.080036, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.501526], + [9.080036, 45.510519], + [9.089029, 45.510519], + [9.089029, 45.501526], + [9.080036, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.510519], + [9.080036, 45.519513], + [9.089029, 45.519513], + [9.089029, 45.510519], + [9.080036, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.519513], + [9.080036, 45.528506], + [9.089029, 45.528506], + [9.089029, 45.519513], + [9.080036, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.528506], + [9.080036, 45.537499], + [9.089029, 45.537499], + [9.089029, 45.528506], + [9.080036, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.537499], + [9.080036, 45.546492], + [9.089029, 45.546492], + [9.089029, 45.537499], + [9.080036, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.546492], + [9.080036, 45.555485], + [9.089029, 45.555485], + [9.089029, 45.546492], + [9.080036, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.555485], + [9.080036, 45.564479], + [9.089029, 45.564479], + [9.089029, 45.555485], + [9.080036, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.564479], + [9.080036, 45.573472], + [9.089029, 45.573472], + [9.089029, 45.564479], + [9.080036, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.573472], + [9.080036, 45.582465], + [9.089029, 45.582465], + [9.089029, 45.573472], + [9.080036, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.582465], + [9.080036, 45.591458], + [9.089029, 45.591458], + [9.089029, 45.582465], + [9.080036, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.591458], + [9.080036, 45.600451], + [9.089029, 45.600451], + [9.089029, 45.591458], + [9.080036, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.600451], + [9.080036, 45.609445], + [9.089029, 45.609445], + [9.089029, 45.600451], + [9.080036, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.609445], + [9.080036, 45.618438], + [9.089029, 45.618438], + [9.089029, 45.609445], + [9.080036, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.618438], + [9.080036, 45.627431], + [9.089029, 45.627431], + [9.089029, 45.618438], + [9.080036, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.627431], + [9.080036, 45.636424], + [9.089029, 45.636424], + [9.089029, 45.627431], + [9.080036, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.339648], + [9.089029, 45.348642], + [9.098022, 45.348642], + [9.098022, 45.339648], + [9.089029, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.348642], + [9.089029, 45.357635], + [9.098022, 45.357635], + [9.098022, 45.348642], + [9.089029, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.357635], + [9.089029, 45.366628], + [9.098022, 45.366628], + [9.098022, 45.357635], + [9.089029, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.366628], + [9.089029, 45.375621], + [9.098022, 45.375621], + [9.098022, 45.366628], + [9.089029, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.375621], + [9.089029, 45.384614], + [9.098022, 45.384614], + [9.098022, 45.375621], + [9.089029, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.384614], + [9.089029, 45.393608], + [9.098022, 45.393608], + [9.098022, 45.384614], + [9.089029, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.393608], + [9.089029, 45.402601], + [9.098022, 45.402601], + [9.098022, 45.393608], + [9.089029, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.402601], + [9.089029, 45.411594], + [9.098022, 45.411594], + [9.098022, 45.402601], + [9.089029, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.411594], + [9.089029, 45.420587], + [9.098022, 45.420587], + [9.098022, 45.411594], + [9.089029, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.420587], + [9.089029, 45.42958], + [9.098022, 45.42958], + [9.098022, 45.420587], + [9.089029, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.42958], + [9.089029, 45.438574], + [9.098022, 45.438574], + [9.098022, 45.42958], + [9.089029, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.438574], + [9.089029, 45.447567], + [9.098022, 45.447567], + [9.098022, 45.438574], + [9.089029, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.447567], + [9.089029, 45.45656], + [9.098022, 45.45656], + [9.098022, 45.447567], + [9.089029, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.45656], + [9.089029, 45.465553], + [9.098022, 45.465553], + [9.098022, 45.45656], + [9.089029, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.465553], + [9.089029, 45.474547], + [9.098022, 45.474547], + [9.098022, 45.465553], + [9.089029, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.474547], + [9.089029, 45.48354], + [9.098022, 45.48354], + [9.098022, 45.474547], + [9.089029, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.48354], + [9.089029, 45.492533], + [9.098022, 45.492533], + [9.098022, 45.48354], + [9.089029, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.492533], + [9.089029, 45.501526], + [9.098022, 45.501526], + [9.098022, 45.492533], + [9.089029, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.501526], + [9.089029, 45.510519], + [9.098022, 45.510519], + [9.098022, 45.501526], + [9.089029, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.510519], + [9.089029, 45.519513], + [9.098022, 45.519513], + [9.098022, 45.510519], + [9.089029, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.519513], + [9.089029, 45.528506], + [9.098022, 45.528506], + [9.098022, 45.519513], + [9.089029, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.528506], + [9.089029, 45.537499], + [9.098022, 45.537499], + [9.098022, 45.528506], + [9.089029, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.537499], + [9.089029, 45.546492], + [9.098022, 45.546492], + [9.098022, 45.537499], + [9.089029, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.546492], + [9.089029, 45.555485], + [9.098022, 45.555485], + [9.098022, 45.546492], + [9.089029, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.555485], + [9.089029, 45.564479], + [9.098022, 45.564479], + [9.098022, 45.555485], + [9.089029, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.564479], + [9.089029, 45.573472], + [9.098022, 45.573472], + [9.098022, 45.564479], + [9.089029, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.573472], + [9.089029, 45.582465], + [9.098022, 45.582465], + [9.098022, 45.573472], + [9.089029, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.582465], + [9.089029, 45.591458], + [9.098022, 45.591458], + [9.098022, 45.582465], + [9.089029, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.591458], + [9.089029, 45.600451], + [9.098022, 45.600451], + [9.098022, 45.591458], + [9.089029, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.600451], + [9.089029, 45.609445], + [9.098022, 45.609445], + [9.098022, 45.600451], + [9.089029, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.609445], + [9.089029, 45.618438], + [9.098022, 45.618438], + [9.098022, 45.609445], + [9.089029, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.618438], + [9.089029, 45.627431], + [9.098022, 45.627431], + [9.098022, 45.618438], + [9.089029, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.627431], + [9.089029, 45.636424], + [9.098022, 45.636424], + [9.098022, 45.627431], + [9.089029, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.339648], + [9.098022, 45.348642], + [9.107016, 45.348642], + [9.107016, 45.339648], + [9.098022, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.348642], + [9.098022, 45.357635], + [9.107016, 45.357635], + [9.107016, 45.348642], + [9.098022, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.357635], + [9.098022, 45.366628], + [9.107016, 45.366628], + [9.107016, 45.357635], + [9.098022, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.366628], + [9.098022, 45.375621], + [9.107016, 45.375621], + [9.107016, 45.366628], + [9.098022, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.375621], + [9.098022, 45.384614], + [9.107016, 45.384614], + [9.107016, 45.375621], + [9.098022, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.384614], + [9.098022, 45.393608], + [9.107016, 45.393608], + [9.107016, 45.384614], + [9.098022, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.393608], + [9.098022, 45.402601], + [9.107016, 45.402601], + [9.107016, 45.393608], + [9.098022, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.402601], + [9.098022, 45.411594], + [9.107016, 45.411594], + [9.107016, 45.402601], + [9.098022, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.411594], + [9.098022, 45.420587], + [9.107016, 45.420587], + [9.107016, 45.411594], + [9.098022, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.420587], + [9.098022, 45.42958], + [9.107016, 45.42958], + [9.107016, 45.420587], + [9.098022, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.42958], + [9.098022, 45.438574], + [9.107016, 45.438574], + [9.107016, 45.42958], + [9.098022, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.438574], + [9.098022, 45.447567], + [9.107016, 45.447567], + [9.107016, 45.438574], + [9.098022, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.447567], + [9.098022, 45.45656], + [9.107016, 45.45656], + [9.107016, 45.447567], + [9.098022, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.45656], + [9.098022, 45.465553], + [9.107016, 45.465553], + [9.107016, 45.45656], + [9.098022, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.465553], + [9.098022, 45.474547], + [9.107016, 45.474547], + [9.107016, 45.465553], + [9.098022, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.474547], + [9.098022, 45.48354], + [9.107016, 45.48354], + [9.107016, 45.474547], + [9.098022, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.48354], + [9.098022, 45.492533], + [9.107016, 45.492533], + [9.107016, 45.48354], + [9.098022, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.492533], + [9.098022, 45.501526], + [9.107016, 45.501526], + [9.107016, 45.492533], + [9.098022, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.501526], + [9.098022, 45.510519], + [9.107016, 45.510519], + [9.107016, 45.501526], + [9.098022, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.510519], + [9.098022, 45.519513], + [9.107016, 45.519513], + [9.107016, 45.510519], + [9.098022, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.519513], + [9.098022, 45.528506], + [9.107016, 45.528506], + [9.107016, 45.519513], + [9.098022, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.528506], + [9.098022, 45.537499], + [9.107016, 45.537499], + [9.107016, 45.528506], + [9.098022, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.537499], + [9.098022, 45.546492], + [9.107016, 45.546492], + [9.107016, 45.537499], + [9.098022, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.546492], + [9.098022, 45.555485], + [9.107016, 45.555485], + [9.107016, 45.546492], + [9.098022, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.555485], + [9.098022, 45.564479], + [9.107016, 45.564479], + [9.107016, 45.555485], + [9.098022, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.564479], + [9.098022, 45.573472], + [9.107016, 45.573472], + [9.107016, 45.564479], + [9.098022, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.573472], + [9.098022, 45.582465], + [9.107016, 45.582465], + [9.107016, 45.573472], + [9.098022, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.582465], + [9.098022, 45.591458], + [9.107016, 45.591458], + [9.107016, 45.582465], + [9.098022, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.591458], + [9.098022, 45.600451], + [9.107016, 45.600451], + [9.107016, 45.591458], + [9.098022, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.600451], + [9.098022, 45.609445], + [9.107016, 45.609445], + [9.107016, 45.600451], + [9.098022, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.609445], + [9.098022, 45.618438], + [9.107016, 45.618438], + [9.107016, 45.609445], + [9.098022, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.618438], + [9.098022, 45.627431], + [9.107016, 45.627431], + [9.107016, 45.618438], + [9.098022, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.627431], + [9.098022, 45.636424], + [9.107016, 45.636424], + [9.107016, 45.627431], + [9.098022, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.339648], + [9.107016, 45.348642], + [9.116009, 45.348642], + [9.116009, 45.339648], + [9.107016, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.348642], + [9.107016, 45.357635], + [9.116009, 45.357635], + [9.116009, 45.348642], + [9.107016, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.357635], + [9.107016, 45.366628], + [9.116009, 45.366628], + [9.116009, 45.357635], + [9.107016, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.366628], + [9.107016, 45.375621], + [9.116009, 45.375621], + [9.116009, 45.366628], + [9.107016, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.375621], + [9.107016, 45.384614], + [9.116009, 45.384614], + [9.116009, 45.375621], + [9.107016, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.384614], + [9.107016, 45.393608], + [9.116009, 45.393608], + [9.116009, 45.384614], + [9.107016, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.393608], + [9.107016, 45.402601], + [9.116009, 45.402601], + [9.116009, 45.393608], + [9.107016, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.402601], + [9.107016, 45.411594], + [9.116009, 45.411594], + [9.116009, 45.402601], + [9.107016, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.411594], + [9.107016, 45.420587], + [9.116009, 45.420587], + [9.116009, 45.411594], + [9.107016, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.420587], + [9.107016, 45.42958], + [9.116009, 45.42958], + [9.116009, 45.420587], + [9.107016, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.42958], + [9.107016, 45.438574], + [9.116009, 45.438574], + [9.116009, 45.42958], + [9.107016, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.438574], + [9.107016, 45.447567], + [9.116009, 45.447567], + [9.116009, 45.438574], + [9.107016, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.447567], + [9.107016, 45.45656], + [9.116009, 45.45656], + [9.116009, 45.447567], + [9.107016, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.45656], + [9.107016, 45.465553], + [9.116009, 45.465553], + [9.116009, 45.45656], + [9.107016, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.465553], + [9.107016, 45.474547], + [9.116009, 45.474547], + [9.116009, 45.465553], + [9.107016, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.474547], + [9.107016, 45.48354], + [9.116009, 45.48354], + [9.116009, 45.474547], + [9.107016, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.48354], + [9.107016, 45.492533], + [9.116009, 45.492533], + [9.116009, 45.48354], + [9.107016, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.492533], + [9.107016, 45.501526], + [9.116009, 45.501526], + [9.116009, 45.492533], + [9.107016, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.501526], + [9.107016, 45.510519], + [9.116009, 45.510519], + [9.116009, 45.501526], + [9.107016, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.510519], + [9.107016, 45.519513], + [9.116009, 45.519513], + [9.116009, 45.510519], + [9.107016, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.519513], + [9.107016, 45.528506], + [9.116009, 45.528506], + [9.116009, 45.519513], + [9.107016, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.528506], + [9.107016, 45.537499], + [9.116009, 45.537499], + [9.116009, 45.528506], + [9.107016, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.537499], + [9.107016, 45.546492], + [9.116009, 45.546492], + [9.116009, 45.537499], + [9.107016, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.546492], + [9.107016, 45.555485], + [9.116009, 45.555485], + [9.116009, 45.546492], + [9.107016, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.555485], + [9.107016, 45.564479], + [9.116009, 45.564479], + [9.116009, 45.555485], + [9.107016, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.564479], + [9.107016, 45.573472], + [9.116009, 45.573472], + [9.116009, 45.564479], + [9.107016, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.573472], + [9.107016, 45.582465], + [9.116009, 45.582465], + [9.116009, 45.573472], + [9.107016, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.582465], + [9.107016, 45.591458], + [9.116009, 45.591458], + [9.116009, 45.582465], + [9.107016, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.591458], + [9.107016, 45.600451], + [9.116009, 45.600451], + [9.116009, 45.591458], + [9.107016, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.600451], + [9.107016, 45.609445], + [9.116009, 45.609445], + [9.116009, 45.600451], + [9.107016, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.609445], + [9.107016, 45.618438], + [9.116009, 45.618438], + [9.116009, 45.609445], + [9.107016, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.618438], + [9.107016, 45.627431], + [9.116009, 45.627431], + [9.116009, 45.618438], + [9.107016, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.627431], + [9.107016, 45.636424], + [9.116009, 45.636424], + [9.116009, 45.627431], + [9.107016, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.339648], + [9.116009, 45.348642], + [9.125002, 45.348642], + [9.125002, 45.339648], + [9.116009, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.348642], + [9.116009, 45.357635], + [9.125002, 45.357635], + [9.125002, 45.348642], + [9.116009, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.357635], + [9.116009, 45.366628], + [9.125002, 45.366628], + [9.125002, 45.357635], + [9.116009, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.366628], + [9.116009, 45.375621], + [9.125002, 45.375621], + [9.125002, 45.366628], + [9.116009, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.375621], + [9.116009, 45.384614], + [9.125002, 45.384614], + [9.125002, 45.375621], + [9.116009, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.384614], + [9.116009, 45.393608], + [9.125002, 45.393608], + [9.125002, 45.384614], + [9.116009, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.393608], + [9.116009, 45.402601], + [9.125002, 45.402601], + [9.125002, 45.393608], + [9.116009, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.402601], + [9.116009, 45.411594], + [9.125002, 45.411594], + [9.125002, 45.402601], + [9.116009, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.411594], + [9.116009, 45.420587], + [9.125002, 45.420587], + [9.125002, 45.411594], + [9.116009, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.420587], + [9.116009, 45.42958], + [9.125002, 45.42958], + [9.125002, 45.420587], + [9.116009, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.42958], + [9.116009, 45.438574], + [9.125002, 45.438574], + [9.125002, 45.42958], + [9.116009, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.438574], + [9.116009, 45.447567], + [9.125002, 45.447567], + [9.125002, 45.438574], + [9.116009, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.447567], + [9.116009, 45.45656], + [9.125002, 45.45656], + [9.125002, 45.447567], + [9.116009, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.45656], + [9.116009, 45.465553], + [9.125002, 45.465553], + [9.125002, 45.45656], + [9.116009, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.465553], + [9.116009, 45.474547], + [9.125002, 45.474547], + [9.125002, 45.465553], + [9.116009, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.474547], + [9.116009, 45.48354], + [9.125002, 45.48354], + [9.125002, 45.474547], + [9.116009, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.48354], + [9.116009, 45.492533], + [9.125002, 45.492533], + [9.125002, 45.48354], + [9.116009, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.492533], + [9.116009, 45.501526], + [9.125002, 45.501526], + [9.125002, 45.492533], + [9.116009, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.501526], + [9.116009, 45.510519], + [9.125002, 45.510519], + [9.125002, 45.501526], + [9.116009, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.510519], + [9.116009, 45.519513], + [9.125002, 45.519513], + [9.125002, 45.510519], + [9.116009, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.519513], + [9.116009, 45.528506], + [9.125002, 45.528506], + [9.125002, 45.519513], + [9.116009, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.528506], + [9.116009, 45.537499], + [9.125002, 45.537499], + [9.125002, 45.528506], + [9.116009, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.537499], + [9.116009, 45.546492], + [9.125002, 45.546492], + [9.125002, 45.537499], + [9.116009, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.546492], + [9.116009, 45.555485], + [9.125002, 45.555485], + [9.125002, 45.546492], + [9.116009, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.555485], + [9.116009, 45.564479], + [9.125002, 45.564479], + [9.125002, 45.555485], + [9.116009, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.564479], + [9.116009, 45.573472], + [9.125002, 45.573472], + [9.125002, 45.564479], + [9.116009, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.573472], + [9.116009, 45.582465], + [9.125002, 45.582465], + [9.125002, 45.573472], + [9.116009, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.582465], + [9.116009, 45.591458], + [9.125002, 45.591458], + [9.125002, 45.582465], + [9.116009, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.591458], + [9.116009, 45.600451], + [9.125002, 45.600451], + [9.125002, 45.591458], + [9.116009, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.600451], + [9.116009, 45.609445], + [9.125002, 45.609445], + [9.125002, 45.600451], + [9.116009, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.609445], + [9.116009, 45.618438], + [9.125002, 45.618438], + [9.125002, 45.609445], + [9.116009, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.618438], + [9.116009, 45.627431], + [9.125002, 45.627431], + [9.125002, 45.618438], + [9.116009, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.627431], + [9.116009, 45.636424], + [9.125002, 45.636424], + [9.125002, 45.627431], + [9.116009, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.339648], + [9.125002, 45.348642], + [9.133995, 45.348642], + [9.133995, 45.339648], + [9.125002, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.348642], + [9.125002, 45.357635], + [9.133995, 45.357635], + [9.133995, 45.348642], + [9.125002, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.357635], + [9.125002, 45.366628], + [9.133995, 45.366628], + [9.133995, 45.357635], + [9.125002, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.366628], + [9.125002, 45.375621], + [9.133995, 45.375621], + [9.133995, 45.366628], + [9.125002, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.375621], + [9.125002, 45.384614], + [9.133995, 45.384614], + [9.133995, 45.375621], + [9.125002, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.384614], + [9.125002, 45.393608], + [9.133995, 45.393608], + [9.133995, 45.384614], + [9.125002, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.393608], + [9.125002, 45.402601], + [9.133995, 45.402601], + [9.133995, 45.393608], + [9.125002, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.402601], + [9.125002, 45.411594], + [9.133995, 45.411594], + [9.133995, 45.402601], + [9.125002, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.411594], + [9.125002, 45.420587], + [9.133995, 45.420587], + [9.133995, 45.411594], + [9.125002, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.420587], + [9.125002, 45.42958], + [9.133995, 45.42958], + [9.133995, 45.420587], + [9.125002, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.42958], + [9.125002, 45.438574], + [9.133995, 45.438574], + [9.133995, 45.42958], + [9.125002, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.438574], + [9.125002, 45.447567], + [9.133995, 45.447567], + [9.133995, 45.438574], + [9.125002, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.447567], + [9.125002, 45.45656], + [9.133995, 45.45656], + [9.133995, 45.447567], + [9.125002, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.45656], + [9.125002, 45.465553], + [9.133995, 45.465553], + [9.133995, 45.45656], + [9.125002, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.465553], + [9.125002, 45.474547], + [9.133995, 45.474547], + [9.133995, 45.465553], + [9.125002, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.474547], + [9.125002, 45.48354], + [9.133995, 45.48354], + [9.133995, 45.474547], + [9.125002, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.48354], + [9.125002, 45.492533], + [9.133995, 45.492533], + [9.133995, 45.48354], + [9.125002, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.492533], + [9.125002, 45.501526], + [9.133995, 45.501526], + [9.133995, 45.492533], + [9.125002, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.501526], + [9.125002, 45.510519], + [9.133995, 45.510519], + [9.133995, 45.501526], + [9.125002, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.510519], + [9.125002, 45.519513], + [9.133995, 45.519513], + [9.133995, 45.510519], + [9.125002, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.519513], + [9.125002, 45.528506], + [9.133995, 45.528506], + [9.133995, 45.519513], + [9.125002, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.528506], + [9.125002, 45.537499], + [9.133995, 45.537499], + [9.133995, 45.528506], + [9.125002, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.537499], + [9.125002, 45.546492], + [9.133995, 45.546492], + [9.133995, 45.537499], + [9.125002, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.546492], + [9.125002, 45.555485], + [9.133995, 45.555485], + [9.133995, 45.546492], + [9.125002, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.555485], + [9.125002, 45.564479], + [9.133995, 45.564479], + [9.133995, 45.555485], + [9.125002, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.564479], + [9.125002, 45.573472], + [9.133995, 45.573472], + [9.133995, 45.564479], + [9.125002, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.573472], + [9.125002, 45.582465], + [9.133995, 45.582465], + [9.133995, 45.573472], + [9.125002, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.582465], + [9.125002, 45.591458], + [9.133995, 45.591458], + [9.133995, 45.582465], + [9.125002, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.591458], + [9.125002, 45.600451], + [9.133995, 45.600451], + [9.133995, 45.591458], + [9.125002, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.600451], + [9.125002, 45.609445], + [9.133995, 45.609445], + [9.133995, 45.600451], + [9.125002, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.609445], + [9.125002, 45.618438], + [9.133995, 45.618438], + [9.133995, 45.609445], + [9.125002, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.618438], + [9.125002, 45.627431], + [9.133995, 45.627431], + [9.133995, 45.618438], + [9.125002, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.627431], + [9.125002, 45.636424], + [9.133995, 45.636424], + [9.133995, 45.627431], + [9.125002, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.339648], + [9.133995, 45.348642], + [9.142988, 45.348642], + [9.142988, 45.339648], + [9.133995, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.348642], + [9.133995, 45.357635], + [9.142988, 45.357635], + [9.142988, 45.348642], + [9.133995, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.357635], + [9.133995, 45.366628], + [9.142988, 45.366628], + [9.142988, 45.357635], + [9.133995, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.366628], + [9.133995, 45.375621], + [9.142988, 45.375621], + [9.142988, 45.366628], + [9.133995, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.375621], + [9.133995, 45.384614], + [9.142988, 45.384614], + [9.142988, 45.375621], + [9.133995, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.384614], + [9.133995, 45.393608], + [9.142988, 45.393608], + [9.142988, 45.384614], + [9.133995, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.393608], + [9.133995, 45.402601], + [9.142988, 45.402601], + [9.142988, 45.393608], + [9.133995, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.402601], + [9.133995, 45.411594], + [9.142988, 45.411594], + [9.142988, 45.402601], + [9.133995, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.411594], + [9.133995, 45.420587], + [9.142988, 45.420587], + [9.142988, 45.411594], + [9.133995, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.420587], + [9.133995, 45.42958], + [9.142988, 45.42958], + [9.142988, 45.420587], + [9.133995, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.42958], + [9.133995, 45.438574], + [9.142988, 45.438574], + [9.142988, 45.42958], + [9.133995, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.438574], + [9.133995, 45.447567], + [9.142988, 45.447567], + [9.142988, 45.438574], + [9.133995, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.447567], + [9.133995, 45.45656], + [9.142988, 45.45656], + [9.142988, 45.447567], + [9.133995, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.45656], + [9.133995, 45.465553], + [9.142988, 45.465553], + [9.142988, 45.45656], + [9.133995, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.465553], + [9.133995, 45.474547], + [9.142988, 45.474547], + [9.142988, 45.465553], + [9.133995, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.474547], + [9.133995, 45.48354], + [9.142988, 45.48354], + [9.142988, 45.474547], + [9.133995, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.48354], + [9.133995, 45.492533], + [9.142988, 45.492533], + [9.142988, 45.48354], + [9.133995, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.492533], + [9.133995, 45.501526], + [9.142988, 45.501526], + [9.142988, 45.492533], + [9.133995, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.501526], + [9.133995, 45.510519], + [9.142988, 45.510519], + [9.142988, 45.501526], + [9.133995, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.510519], + [9.133995, 45.519513], + [9.142988, 45.519513], + [9.142988, 45.510519], + [9.133995, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.519513], + [9.133995, 45.528506], + [9.142988, 45.528506], + [9.142988, 45.519513], + [9.133995, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.528506], + [9.133995, 45.537499], + [9.142988, 45.537499], + [9.142988, 45.528506], + [9.133995, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.537499], + [9.133995, 45.546492], + [9.142988, 45.546492], + [9.142988, 45.537499], + [9.133995, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.546492], + [9.133995, 45.555485], + [9.142988, 45.555485], + [9.142988, 45.546492], + [9.133995, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.555485], + [9.133995, 45.564479], + [9.142988, 45.564479], + [9.142988, 45.555485], + [9.133995, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.564479], + [9.133995, 45.573472], + [9.142988, 45.573472], + [9.142988, 45.564479], + [9.133995, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.573472], + [9.133995, 45.582465], + [9.142988, 45.582465], + [9.142988, 45.573472], + [9.133995, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.582465], + [9.133995, 45.591458], + [9.142988, 45.591458], + [9.142988, 45.582465], + [9.133995, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.591458], + [9.133995, 45.600451], + [9.142988, 45.600451], + [9.142988, 45.591458], + [9.133995, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.600451], + [9.133995, 45.609445], + [9.142988, 45.609445], + [9.142988, 45.600451], + [9.133995, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.609445], + [9.133995, 45.618438], + [9.142988, 45.618438], + [9.142988, 45.609445], + [9.133995, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.618438], + [9.133995, 45.627431], + [9.142988, 45.627431], + [9.142988, 45.618438], + [9.133995, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.627431], + [9.133995, 45.636424], + [9.142988, 45.636424], + [9.142988, 45.627431], + [9.133995, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.339648], + [9.142988, 45.348642], + [9.151982, 45.348642], + [9.151982, 45.339648], + [9.142988, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.348642], + [9.142988, 45.357635], + [9.151982, 45.357635], + [9.151982, 45.348642], + [9.142988, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.357635], + [9.142988, 45.366628], + [9.151982, 45.366628], + [9.151982, 45.357635], + [9.142988, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.366628], + [9.142988, 45.375621], + [9.151982, 45.375621], + [9.151982, 45.366628], + [9.142988, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.375621], + [9.142988, 45.384614], + [9.151982, 45.384614], + [9.151982, 45.375621], + [9.142988, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.384614], + [9.142988, 45.393608], + [9.151982, 45.393608], + [9.151982, 45.384614], + [9.142988, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.393608], + [9.142988, 45.402601], + [9.151982, 45.402601], + [9.151982, 45.393608], + [9.142988, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.402601], + [9.142988, 45.411594], + [9.151982, 45.411594], + [9.151982, 45.402601], + [9.142988, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.411594], + [9.142988, 45.420587], + [9.151982, 45.420587], + [9.151982, 45.411594], + [9.142988, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.420587], + [9.142988, 45.42958], + [9.151982, 45.42958], + [9.151982, 45.420587], + [9.142988, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.42958], + [9.142988, 45.438574], + [9.151982, 45.438574], + [9.151982, 45.42958], + [9.142988, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.438574], + [9.142988, 45.447567], + [9.151982, 45.447567], + [9.151982, 45.438574], + [9.142988, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.447567], + [9.142988, 45.45656], + [9.151982, 45.45656], + [9.151982, 45.447567], + [9.142988, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.45656], + [9.142988, 45.465553], + [9.151982, 45.465553], + [9.151982, 45.45656], + [9.142988, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.465553], + [9.142988, 45.474547], + [9.151982, 45.474547], + [9.151982, 45.465553], + [9.142988, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.474547], + [9.142988, 45.48354], + [9.151982, 45.48354], + [9.151982, 45.474547], + [9.142988, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.48354], + [9.142988, 45.492533], + [9.151982, 45.492533], + [9.151982, 45.48354], + [9.142988, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.492533], + [9.142988, 45.501526], + [9.151982, 45.501526], + [9.151982, 45.492533], + [9.142988, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.501526], + [9.142988, 45.510519], + [9.151982, 45.510519], + [9.151982, 45.501526], + [9.142988, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.510519], + [9.142988, 45.519513], + [9.151982, 45.519513], + [9.151982, 45.510519], + [9.142988, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.519513], + [9.142988, 45.528506], + [9.151982, 45.528506], + [9.151982, 45.519513], + [9.142988, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.528506], + [9.142988, 45.537499], + [9.151982, 45.537499], + [9.151982, 45.528506], + [9.142988, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.537499], + [9.142988, 45.546492], + [9.151982, 45.546492], + [9.151982, 45.537499], + [9.142988, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.546492], + [9.142988, 45.555485], + [9.151982, 45.555485], + [9.151982, 45.546492], + [9.142988, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.555485], + [9.142988, 45.564479], + [9.151982, 45.564479], + [9.151982, 45.555485], + [9.142988, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.564479], + [9.142988, 45.573472], + [9.151982, 45.573472], + [9.151982, 45.564479], + [9.142988, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.573472], + [9.142988, 45.582465], + [9.151982, 45.582465], + [9.151982, 45.573472], + [9.142988, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.582465], + [9.142988, 45.591458], + [9.151982, 45.591458], + [9.151982, 45.582465], + [9.142988, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.591458], + [9.142988, 45.600451], + [9.151982, 45.600451], + [9.151982, 45.591458], + [9.142988, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.600451], + [9.142988, 45.609445], + [9.151982, 45.609445], + [9.151982, 45.600451], + [9.142988, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.609445], + [9.142988, 45.618438], + [9.151982, 45.618438], + [9.151982, 45.609445], + [9.142988, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.618438], + [9.142988, 45.627431], + [9.151982, 45.627431], + [9.151982, 45.618438], + [9.142988, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.627431], + [9.142988, 45.636424], + [9.151982, 45.636424], + [9.151982, 45.627431], + [9.142988, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.339648], + [9.151982, 45.348642], + [9.160975, 45.348642], + [9.160975, 45.339648], + [9.151982, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.348642], + [9.151982, 45.357635], + [9.160975, 45.357635], + [9.160975, 45.348642], + [9.151982, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.357635], + [9.151982, 45.366628], + [9.160975, 45.366628], + [9.160975, 45.357635], + [9.151982, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.366628], + [9.151982, 45.375621], + [9.160975, 45.375621], + [9.160975, 45.366628], + [9.151982, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.375621], + [9.151982, 45.384614], + [9.160975, 45.384614], + [9.160975, 45.375621], + [9.151982, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.384614], + [9.151982, 45.393608], + [9.160975, 45.393608], + [9.160975, 45.384614], + [9.151982, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.393608], + [9.151982, 45.402601], + [9.160975, 45.402601], + [9.160975, 45.393608], + [9.151982, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.402601], + [9.151982, 45.411594], + [9.160975, 45.411594], + [9.160975, 45.402601], + [9.151982, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.411594], + [9.151982, 45.420587], + [9.160975, 45.420587], + [9.160975, 45.411594], + [9.151982, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.420587], + [9.151982, 45.42958], + [9.160975, 45.42958], + [9.160975, 45.420587], + [9.151982, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.42958], + [9.151982, 45.438574], + [9.160975, 45.438574], + [9.160975, 45.42958], + [9.151982, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.438574], + [9.151982, 45.447567], + [9.160975, 45.447567], + [9.160975, 45.438574], + [9.151982, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.447567], + [9.151982, 45.45656], + [9.160975, 45.45656], + [9.160975, 45.447567], + [9.151982, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.45656], + [9.151982, 45.465553], + [9.160975, 45.465553], + [9.160975, 45.45656], + [9.151982, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 14, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.465553], + [9.151982, 45.474547], + [9.160975, 45.474547], + [9.160975, 45.465553], + [9.151982, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.474547], + [9.151982, 45.48354], + [9.160975, 45.48354], + [9.160975, 45.474547], + [9.151982, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.48354], + [9.151982, 45.492533], + [9.160975, 45.492533], + [9.160975, 45.48354], + [9.151982, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.492533], + [9.151982, 45.501526], + [9.160975, 45.501526], + [9.160975, 45.492533], + [9.151982, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.501526], + [9.151982, 45.510519], + [9.160975, 45.510519], + [9.160975, 45.501526], + [9.151982, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.510519], + [9.151982, 45.519513], + [9.160975, 45.519513], + [9.160975, 45.510519], + [9.151982, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.519513], + [9.151982, 45.528506], + [9.160975, 45.528506], + [9.160975, 45.519513], + [9.151982, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.528506], + [9.151982, 45.537499], + [9.160975, 45.537499], + [9.160975, 45.528506], + [9.151982, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.537499], + [9.151982, 45.546492], + [9.160975, 45.546492], + [9.160975, 45.537499], + [9.151982, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.546492], + [9.151982, 45.555485], + [9.160975, 45.555485], + [9.160975, 45.546492], + [9.151982, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.555485], + [9.151982, 45.564479], + [9.160975, 45.564479], + [9.160975, 45.555485], + [9.151982, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.564479], + [9.151982, 45.573472], + [9.160975, 45.573472], + [9.160975, 45.564479], + [9.151982, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.573472], + [9.151982, 45.582465], + [9.160975, 45.582465], + [9.160975, 45.573472], + [9.151982, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.582465], + [9.151982, 45.591458], + [9.160975, 45.591458], + [9.160975, 45.582465], + [9.151982, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.591458], + [9.151982, 45.600451], + [9.160975, 45.600451], + [9.160975, 45.591458], + [9.151982, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.600451], + [9.151982, 45.609445], + [9.160975, 45.609445], + [9.160975, 45.600451], + [9.151982, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.609445], + [9.151982, 45.618438], + [9.160975, 45.618438], + [9.160975, 45.609445], + [9.151982, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.618438], + [9.151982, 45.627431], + [9.160975, 45.627431], + [9.160975, 45.618438], + [9.151982, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.627431], + [9.151982, 45.636424], + [9.160975, 45.636424], + [9.160975, 45.627431], + [9.151982, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.339648], + [9.160975, 45.348642], + [9.169968, 45.348642], + [9.169968, 45.339648], + [9.160975, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.348642], + [9.160975, 45.357635], + [9.169968, 45.357635], + [9.169968, 45.348642], + [9.160975, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.357635], + [9.160975, 45.366628], + [9.169968, 45.366628], + [9.169968, 45.357635], + [9.160975, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.366628], + [9.160975, 45.375621], + [9.169968, 45.375621], + [9.169968, 45.366628], + [9.160975, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.375621], + [9.160975, 45.384614], + [9.169968, 45.384614], + [9.169968, 45.375621], + [9.160975, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.384614], + [9.160975, 45.393608], + [9.169968, 45.393608], + [9.169968, 45.384614], + [9.160975, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.393608], + [9.160975, 45.402601], + [9.169968, 45.402601], + [9.169968, 45.393608], + [9.160975, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.402601], + [9.160975, 45.411594], + [9.169968, 45.411594], + [9.169968, 45.402601], + [9.160975, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.411594], + [9.160975, 45.420587], + [9.169968, 45.420587], + [9.169968, 45.411594], + [9.160975, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.420587], + [9.160975, 45.42958], + [9.169968, 45.42958], + [9.169968, 45.420587], + [9.160975, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.42958], + [9.160975, 45.438574], + [9.169968, 45.438574], + [9.169968, 45.42958], + [9.160975, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.438574], + [9.160975, 45.447567], + [9.169968, 45.447567], + [9.169968, 45.438574], + [9.160975, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.447567], + [9.160975, 45.45656], + [9.169968, 45.45656], + [9.169968, 45.447567], + [9.160975, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.45656], + [9.160975, 45.465553], + [9.169968, 45.465553], + [9.169968, 45.45656], + [9.160975, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.465553], + [9.160975, 45.474547], + [9.169968, 45.474547], + [9.169968, 45.465553], + [9.160975, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.474547], + [9.160975, 45.48354], + [9.169968, 45.48354], + [9.169968, 45.474547], + [9.160975, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.48354], + [9.160975, 45.492533], + [9.169968, 45.492533], + [9.169968, 45.48354], + [9.160975, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.492533], + [9.160975, 45.501526], + [9.169968, 45.501526], + [9.169968, 45.492533], + [9.160975, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.501526], + [9.160975, 45.510519], + [9.169968, 45.510519], + [9.169968, 45.501526], + [9.160975, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.510519], + [9.160975, 45.519513], + [9.169968, 45.519513], + [9.169968, 45.510519], + [9.160975, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.519513], + [9.160975, 45.528506], + [9.169968, 45.528506], + [9.169968, 45.519513], + [9.160975, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.528506], + [9.160975, 45.537499], + [9.169968, 45.537499], + [9.169968, 45.528506], + [9.160975, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.537499], + [9.160975, 45.546492], + [9.169968, 45.546492], + [9.169968, 45.537499], + [9.160975, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.546492], + [9.160975, 45.555485], + [9.169968, 45.555485], + [9.169968, 45.546492], + [9.160975, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.555485], + [9.160975, 45.564479], + [9.169968, 45.564479], + [9.169968, 45.555485], + [9.160975, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.564479], + [9.160975, 45.573472], + [9.169968, 45.573472], + [9.169968, 45.564479], + [9.160975, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.573472], + [9.160975, 45.582465], + [9.169968, 45.582465], + [9.169968, 45.573472], + [9.160975, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.582465], + [9.160975, 45.591458], + [9.169968, 45.591458], + [9.169968, 45.582465], + [9.160975, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.591458], + [9.160975, 45.600451], + [9.169968, 45.600451], + [9.169968, 45.591458], + [9.160975, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.600451], + [9.160975, 45.609445], + [9.169968, 45.609445], + [9.169968, 45.600451], + [9.160975, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.609445], + [9.160975, 45.618438], + [9.169968, 45.618438], + [9.169968, 45.609445], + [9.160975, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.618438], + [9.160975, 45.627431], + [9.169968, 45.627431], + [9.169968, 45.618438], + [9.160975, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.627431], + [9.160975, 45.636424], + [9.169968, 45.636424], + [9.169968, 45.627431], + [9.160975, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.339648], + [9.169968, 45.348642], + [9.178961, 45.348642], + [9.178961, 45.339648], + [9.169968, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.348642], + [9.169968, 45.357635], + [9.178961, 45.357635], + [9.178961, 45.348642], + [9.169968, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.357635], + [9.169968, 45.366628], + [9.178961, 45.366628], + [9.178961, 45.357635], + [9.169968, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.366628], + [9.169968, 45.375621], + [9.178961, 45.375621], + [9.178961, 45.366628], + [9.169968, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.375621], + [9.169968, 45.384614], + [9.178961, 45.384614], + [9.178961, 45.375621], + [9.169968, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.384614], + [9.169968, 45.393608], + [9.178961, 45.393608], + [9.178961, 45.384614], + [9.169968, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.393608], + [9.169968, 45.402601], + [9.178961, 45.402601], + [9.178961, 45.393608], + [9.169968, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.402601], + [9.169968, 45.411594], + [9.178961, 45.411594], + [9.178961, 45.402601], + [9.169968, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.411594], + [9.169968, 45.420587], + [9.178961, 45.420587], + [9.178961, 45.411594], + [9.169968, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.420587], + [9.169968, 45.42958], + [9.178961, 45.42958], + [9.178961, 45.420587], + [9.169968, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.42958], + [9.169968, 45.438574], + [9.178961, 45.438574], + [9.178961, 45.42958], + [9.169968, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.438574], + [9.169968, 45.447567], + [9.178961, 45.447567], + [9.178961, 45.438574], + [9.169968, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.447567], + [9.169968, 45.45656], + [9.178961, 45.45656], + [9.178961, 45.447567], + [9.169968, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.45656], + [9.169968, 45.465553], + [9.178961, 45.465553], + [9.178961, 45.45656], + [9.169968, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.465553], + [9.169968, 45.474547], + [9.178961, 45.474547], + [9.178961, 45.465553], + [9.169968, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.474547], + [9.169968, 45.48354], + [9.178961, 45.48354], + [9.178961, 45.474547], + [9.169968, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.48354], + [9.169968, 45.492533], + [9.178961, 45.492533], + [9.178961, 45.48354], + [9.169968, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.492533], + [9.169968, 45.501526], + [9.178961, 45.501526], + [9.178961, 45.492533], + [9.169968, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.501526], + [9.169968, 45.510519], + [9.178961, 45.510519], + [9.178961, 45.501526], + [9.169968, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.510519], + [9.169968, 45.519513], + [9.178961, 45.519513], + [9.178961, 45.510519], + [9.169968, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.519513], + [9.169968, 45.528506], + [9.178961, 45.528506], + [9.178961, 45.519513], + [9.169968, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.528506], + [9.169968, 45.537499], + [9.178961, 45.537499], + [9.178961, 45.528506], + [9.169968, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.537499], + [9.169968, 45.546492], + [9.178961, 45.546492], + [9.178961, 45.537499], + [9.169968, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.546492], + [9.169968, 45.555485], + [9.178961, 45.555485], + [9.178961, 45.546492], + [9.169968, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.555485], + [9.169968, 45.564479], + [9.178961, 45.564479], + [9.178961, 45.555485], + [9.169968, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.564479], + [9.169968, 45.573472], + [9.178961, 45.573472], + [9.178961, 45.564479], + [9.169968, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.573472], + [9.169968, 45.582465], + [9.178961, 45.582465], + [9.178961, 45.573472], + [9.169968, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.582465], + [9.169968, 45.591458], + [9.178961, 45.591458], + [9.178961, 45.582465], + [9.169968, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.591458], + [9.169968, 45.600451], + [9.178961, 45.600451], + [9.178961, 45.591458], + [9.169968, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.600451], + [9.169968, 45.609445], + [9.178961, 45.609445], + [9.178961, 45.600451], + [9.169968, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.609445], + [9.169968, 45.618438], + [9.178961, 45.618438], + [9.178961, 45.609445], + [9.169968, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.618438], + [9.169968, 45.627431], + [9.178961, 45.627431], + [9.178961, 45.618438], + [9.169968, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.627431], + [9.169968, 45.636424], + [9.178961, 45.636424], + [9.178961, 45.627431], + [9.169968, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.339648], + [9.178961, 45.348642], + [9.187954, 45.348642], + [9.187954, 45.339648], + [9.178961, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.348642], + [9.178961, 45.357635], + [9.187954, 45.357635], + [9.187954, 45.348642], + [9.178961, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.357635], + [9.178961, 45.366628], + [9.187954, 45.366628], + [9.187954, 45.357635], + [9.178961, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.366628], + [9.178961, 45.375621], + [9.187954, 45.375621], + [9.187954, 45.366628], + [9.178961, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.375621], + [9.178961, 45.384614], + [9.187954, 45.384614], + [9.187954, 45.375621], + [9.178961, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.384614], + [9.178961, 45.393608], + [9.187954, 45.393608], + [9.187954, 45.384614], + [9.178961, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.393608], + [9.178961, 45.402601], + [9.187954, 45.402601], + [9.187954, 45.393608], + [9.178961, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.402601], + [9.178961, 45.411594], + [9.187954, 45.411594], + [9.187954, 45.402601], + [9.178961, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.411594], + [9.178961, 45.420587], + [9.187954, 45.420587], + [9.187954, 45.411594], + [9.178961, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.420587], + [9.178961, 45.42958], + [9.187954, 45.42958], + [9.187954, 45.420587], + [9.178961, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.42958], + [9.178961, 45.438574], + [9.187954, 45.438574], + [9.187954, 45.42958], + [9.178961, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.438574], + [9.178961, 45.447567], + [9.187954, 45.447567], + [9.187954, 45.438574], + [9.178961, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.447567], + [9.178961, 45.45656], + [9.187954, 45.45656], + [9.187954, 45.447567], + [9.178961, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.45656], + [9.178961, 45.465553], + [9.187954, 45.465553], + [9.187954, 45.45656], + [9.178961, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.465553], + [9.178961, 45.474547], + [9.187954, 45.474547], + [9.187954, 45.465553], + [9.178961, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.474547], + [9.178961, 45.48354], + [9.187954, 45.48354], + [9.187954, 45.474547], + [9.178961, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.48354], + [9.178961, 45.492533], + [9.187954, 45.492533], + [9.187954, 45.48354], + [9.178961, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.492533], + [9.178961, 45.501526], + [9.187954, 45.501526], + [9.187954, 45.492533], + [9.178961, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.501526], + [9.178961, 45.510519], + [9.187954, 45.510519], + [9.187954, 45.501526], + [9.178961, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.510519], + [9.178961, 45.519513], + [9.187954, 45.519513], + [9.187954, 45.510519], + [9.178961, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.519513], + [9.178961, 45.528506], + [9.187954, 45.528506], + [9.187954, 45.519513], + [9.178961, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#00407a", + "fill": "#00407a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.528506], + [9.178961, 45.537499], + [9.187954, 45.537499], + [9.187954, 45.528506], + [9.178961, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.537499], + [9.178961, 45.546492], + [9.187954, 45.546492], + [9.187954, 45.537499], + [9.178961, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0055a3", + "fill": "#0055a3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.546492], + [9.178961, 45.555485], + [9.187954, 45.555485], + [9.187954, 45.546492], + [9.178961, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.555485], + [9.178961, 45.564479], + [9.187954, 45.564479], + [9.187954, 45.555485], + [9.178961, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.564479], + [9.178961, 45.573472], + [9.187954, 45.573472], + [9.187954, 45.564479], + [9.178961, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.573472], + [9.178961, 45.582465], + [9.187954, 45.582465], + [9.187954, 45.573472], + [9.178961, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.582465], + [9.178961, 45.591458], + [9.187954, 45.591458], + [9.187954, 45.582465], + [9.178961, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.591458], + [9.178961, 45.600451], + [9.187954, 45.600451], + [9.187954, 45.591458], + [9.178961, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.600451], + [9.178961, 45.609445], + [9.187954, 45.609445], + [9.187954, 45.600451], + [9.178961, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.609445], + [9.178961, 45.618438], + [9.187954, 45.618438], + [9.187954, 45.609445], + [9.178961, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.618438], + [9.178961, 45.627431], + [9.187954, 45.627431], + [9.187954, 45.618438], + [9.178961, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.627431], + [9.178961, 45.636424], + [9.187954, 45.636424], + [9.187954, 45.627431], + [9.178961, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.339648], + [9.187954, 45.348642], + [9.196948, 45.348642], + [9.196948, 45.339648], + [9.187954, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.348642], + [9.187954, 45.357635], + [9.196948, 45.357635], + [9.196948, 45.348642], + [9.187954, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.357635], + [9.187954, 45.366628], + [9.196948, 45.366628], + [9.196948, 45.357635], + [9.187954, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.366628], + [9.187954, 45.375621], + [9.196948, 45.375621], + [9.196948, 45.366628], + [9.187954, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.375621], + [9.187954, 45.384614], + [9.196948, 45.384614], + [9.196948, 45.375621], + [9.187954, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.384614], + [9.187954, 45.393608], + [9.196948, 45.393608], + [9.196948, 45.384614], + [9.187954, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.393608], + [9.187954, 45.402601], + [9.196948, 45.402601], + [9.196948, 45.393608], + [9.187954, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.402601], + [9.187954, 45.411594], + [9.196948, 45.411594], + [9.196948, 45.402601], + [9.187954, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.411594], + [9.187954, 45.420587], + [9.196948, 45.420587], + [9.196948, 45.411594], + [9.187954, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.420587], + [9.187954, 45.42958], + [9.196948, 45.42958], + [9.196948, 45.420587], + [9.187954, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.42958], + [9.187954, 45.438574], + [9.196948, 45.438574], + [9.196948, 45.42958], + [9.187954, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.438574], + [9.187954, 45.447567], + [9.196948, 45.447567], + [9.196948, 45.438574], + [9.187954, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.447567], + [9.187954, 45.45656], + [9.196948, 45.45656], + [9.196948, 45.447567], + [9.187954, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.45656], + [9.187954, 45.465553], + [9.196948, 45.465553], + [9.196948, 45.45656], + [9.187954, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.465553], + [9.187954, 45.474547], + [9.196948, 45.474547], + [9.196948, 45.465553], + [9.187954, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.474547], + [9.187954, 45.48354], + [9.196948, 45.48354], + [9.196948, 45.474547], + [9.187954, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.48354], + [9.187954, 45.492533], + [9.196948, 45.492533], + [9.196948, 45.48354], + [9.187954, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.492533], + [9.187954, 45.501526], + [9.196948, 45.501526], + [9.196948, 45.492533], + [9.187954, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.501526], + [9.187954, 45.510519], + [9.196948, 45.510519], + [9.196948, 45.501526], + [9.187954, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.510519], + [9.187954, 45.519513], + [9.196948, 45.519513], + [9.196948, 45.510519], + [9.187954, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.519513], + [9.187954, 45.528506], + [9.196948, 45.528506], + [9.196948, 45.519513], + [9.187954, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 51, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.528506], + [9.187954, 45.537499], + [9.196948, 45.537499], + [9.196948, 45.528506], + [9.187954, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 50, + "stroke": "#00080f", + "fill": "#00080f", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.537499], + [9.187954, 45.546492], + [9.196948, 45.546492], + [9.196948, 45.537499], + [9.187954, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.546492], + [9.187954, 45.555485], + [9.196948, 45.555485], + [9.196948, 45.546492], + [9.187954, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.555485], + [9.187954, 45.564479], + [9.196948, 45.564479], + [9.196948, 45.555485], + [9.187954, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.564479], + [9.187954, 45.573472], + [9.196948, 45.573472], + [9.196948, 45.564479], + [9.187954, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.573472], + [9.187954, 45.582465], + [9.196948, 45.582465], + [9.196948, 45.573472], + [9.187954, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.582465], + [9.187954, 45.591458], + [9.196948, 45.591458], + [9.196948, 45.582465], + [9.187954, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.591458], + [9.187954, 45.600451], + [9.196948, 45.600451], + [9.196948, 45.591458], + [9.187954, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.600451], + [9.187954, 45.609445], + [9.196948, 45.609445], + [9.196948, 45.600451], + [9.187954, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.609445], + [9.187954, 45.618438], + [9.196948, 45.618438], + [9.196948, 45.609445], + [9.187954, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.618438], + [9.187954, 45.627431], + [9.196948, 45.627431], + [9.196948, 45.618438], + [9.187954, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.627431], + [9.187954, 45.636424], + [9.196948, 45.636424], + [9.196948, 45.627431], + [9.187954, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.339648], + [9.196948, 45.348642], + [9.205941, 45.348642], + [9.205941, 45.339648], + [9.196948, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.348642], + [9.196948, 45.357635], + [9.205941, 45.357635], + [9.205941, 45.348642], + [9.196948, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.357635], + [9.196948, 45.366628], + [9.205941, 45.366628], + [9.205941, 45.357635], + [9.196948, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.366628], + [9.196948, 45.375621], + [9.205941, 45.375621], + [9.205941, 45.366628], + [9.196948, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.375621], + [9.196948, 45.384614], + [9.205941, 45.384614], + [9.205941, 45.375621], + [9.196948, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.384614], + [9.196948, 45.393608], + [9.205941, 45.393608], + [9.205941, 45.384614], + [9.196948, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.393608], + [9.196948, 45.402601], + [9.205941, 45.402601], + [9.205941, 45.393608], + [9.196948, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.402601], + [9.196948, 45.411594], + [9.205941, 45.411594], + [9.205941, 45.402601], + [9.196948, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.411594], + [9.196948, 45.420587], + [9.205941, 45.420587], + [9.205941, 45.411594], + [9.196948, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.420587], + [9.196948, 45.42958], + [9.205941, 45.42958], + [9.205941, 45.420587], + [9.196948, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.42958], + [9.196948, 45.438574], + [9.205941, 45.438574], + [9.205941, 45.42958], + [9.196948, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.438574], + [9.196948, 45.447567], + [9.205941, 45.447567], + [9.205941, 45.438574], + [9.196948, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.447567], + [9.196948, 45.45656], + [9.205941, 45.45656], + [9.205941, 45.447567], + [9.196948, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.45656], + [9.196948, 45.465553], + [9.205941, 45.465553], + [9.205941, 45.45656], + [9.196948, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.465553], + [9.196948, 45.474547], + [9.205941, 45.474547], + [9.205941, 45.465553], + [9.196948, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.474547], + [9.196948, 45.48354], + [9.205941, 45.48354], + [9.205941, 45.474547], + [9.196948, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.48354], + [9.196948, 45.492533], + [9.205941, 45.492533], + [9.205941, 45.48354], + [9.196948, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.492533], + [9.196948, 45.501526], + [9.205941, 45.501526], + [9.205941, 45.492533], + [9.196948, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.501526], + [9.196948, 45.510519], + [9.205941, 45.510519], + [9.205941, 45.501526], + [9.196948, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.510519], + [9.196948, 45.519513], + [9.205941, 45.519513], + [9.205941, 45.510519], + [9.196948, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.519513], + [9.196948, 45.528506], + [9.205941, 45.528506], + [9.205941, 45.519513], + [9.196948, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 48, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.528506], + [9.196948, 45.537499], + [9.205941, 45.537499], + [9.205941, 45.528506], + [9.196948, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 48, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.537499], + [9.196948, 45.546492], + [9.205941, 45.546492], + [9.205941, 45.537499], + [9.196948, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#005099", + "fill": "#005099", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.546492], + [9.196948, 45.555485], + [9.205941, 45.555485], + [9.205941, 45.546492], + [9.196948, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.555485], + [9.196948, 45.564479], + [9.205941, 45.564479], + [9.205941, 45.555485], + [9.196948, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.564479], + [9.196948, 45.573472], + [9.205941, 45.573472], + [9.205941, 45.564479], + [9.196948, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.573472], + [9.196948, 45.582465], + [9.205941, 45.582465], + [9.205941, 45.573472], + [9.196948, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.582465], + [9.196948, 45.591458], + [9.205941, 45.591458], + [9.205941, 45.582465], + [9.196948, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.591458], + [9.196948, 45.600451], + [9.205941, 45.600451], + [9.205941, 45.591458], + [9.196948, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.600451], + [9.196948, 45.609445], + [9.205941, 45.609445], + [9.205941, 45.600451], + [9.196948, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.609445], + [9.196948, 45.618438], + [9.205941, 45.618438], + [9.205941, 45.609445], + [9.196948, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.618438], + [9.196948, 45.627431], + [9.205941, 45.627431], + [9.205941, 45.618438], + [9.196948, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.627431], + [9.196948, 45.636424], + [9.205941, 45.636424], + [9.205941, 45.627431], + [9.196948, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.339648], + [9.205941, 45.348642], + [9.214934, 45.348642], + [9.214934, 45.339648], + [9.205941, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.348642], + [9.205941, 45.357635], + [9.214934, 45.357635], + [9.214934, 45.348642], + [9.205941, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.357635], + [9.205941, 45.366628], + [9.214934, 45.366628], + [9.214934, 45.357635], + [9.205941, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.366628], + [9.205941, 45.375621], + [9.214934, 45.375621], + [9.214934, 45.366628], + [9.205941, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.375621], + [9.205941, 45.384614], + [9.214934, 45.384614], + [9.214934, 45.375621], + [9.205941, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.384614], + [9.205941, 45.393608], + [9.214934, 45.393608], + [9.214934, 45.384614], + [9.205941, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.393608], + [9.205941, 45.402601], + [9.214934, 45.402601], + [9.214934, 45.393608], + [9.205941, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.402601], + [9.205941, 45.411594], + [9.214934, 45.411594], + [9.214934, 45.402601], + [9.205941, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.411594], + [9.205941, 45.420587], + [9.214934, 45.420587], + [9.214934, 45.411594], + [9.205941, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.420587], + [9.205941, 45.42958], + [9.214934, 45.42958], + [9.214934, 45.420587], + [9.205941, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.42958], + [9.205941, 45.438574], + [9.214934, 45.438574], + [9.214934, 45.42958], + [9.205941, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.438574], + [9.205941, 45.447567], + [9.214934, 45.447567], + [9.214934, 45.438574], + [9.205941, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.447567], + [9.205941, 45.45656], + [9.214934, 45.45656], + [9.214934, 45.447567], + [9.205941, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.45656], + [9.205941, 45.465553], + [9.214934, 45.465553], + [9.214934, 45.45656], + [9.205941, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.465553], + [9.205941, 45.474547], + [9.214934, 45.474547], + [9.214934, 45.465553], + [9.205941, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.474547], + [9.205941, 45.48354], + [9.214934, 45.48354], + [9.214934, 45.474547], + [9.205941, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.48354], + [9.205941, 45.492533], + [9.214934, 45.492533], + [9.214934, 45.48354], + [9.205941, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.492533], + [9.205941, 45.501526], + [9.214934, 45.501526], + [9.214934, 45.492533], + [9.205941, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.501526], + [9.205941, 45.510519], + [9.214934, 45.510519], + [9.214934, 45.501526], + [9.205941, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.510519], + [9.205941, 45.519513], + [9.214934, 45.519513], + [9.214934, 45.510519], + [9.205941, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.519513], + [9.205941, 45.528506], + [9.214934, 45.528506], + [9.214934, 45.519513], + [9.205941, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#005099", + "fill": "#005099", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.528506], + [9.205941, 45.537499], + [9.214934, 45.537499], + [9.214934, 45.528506], + [9.205941, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#00407a", + "fill": "#00407a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.537499], + [9.205941, 45.546492], + [9.214934, 45.546492], + [9.214934, 45.537499], + [9.205941, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0055a3", + "fill": "#0055a3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.546492], + [9.205941, 45.555485], + [9.214934, 45.555485], + [9.214934, 45.546492], + [9.205941, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.555485], + [9.205941, 45.564479], + [9.214934, 45.564479], + [9.214934, 45.555485], + [9.205941, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.564479], + [9.205941, 45.573472], + [9.214934, 45.573472], + [9.214934, 45.564479], + [9.205941, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.573472], + [9.205941, 45.582465], + [9.214934, 45.582465], + [9.214934, 45.573472], + [9.205941, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.582465], + [9.205941, 45.591458], + [9.214934, 45.591458], + [9.214934, 45.582465], + [9.205941, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.591458], + [9.205941, 45.600451], + [9.214934, 45.600451], + [9.214934, 45.591458], + [9.205941, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.600451], + [9.205941, 45.609445], + [9.214934, 45.609445], + [9.214934, 45.600451], + [9.205941, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.609445], + [9.205941, 45.618438], + [9.214934, 45.618438], + [9.214934, 45.609445], + [9.205941, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.618438], + [9.205941, 45.627431], + [9.214934, 45.627431], + [9.214934, 45.618438], + [9.205941, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.627431], + [9.205941, 45.636424], + [9.214934, 45.636424], + [9.214934, 45.627431], + [9.205941, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.339648], + [9.214934, 45.348642], + [9.223927, 45.348642], + [9.223927, 45.339648], + [9.214934, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.348642], + [9.214934, 45.357635], + [9.223927, 45.357635], + [9.223927, 45.348642], + [9.214934, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.357635], + [9.214934, 45.366628], + [9.223927, 45.366628], + [9.223927, 45.357635], + [9.214934, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.366628], + [9.214934, 45.375621], + [9.223927, 45.375621], + [9.223927, 45.366628], + [9.214934, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.375621], + [9.214934, 45.384614], + [9.223927, 45.384614], + [9.223927, 45.375621], + [9.214934, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.384614], + [9.214934, 45.393608], + [9.223927, 45.393608], + [9.223927, 45.384614], + [9.214934, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.393608], + [9.214934, 45.402601], + [9.223927, 45.402601], + [9.223927, 45.393608], + [9.214934, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.402601], + [9.214934, 45.411594], + [9.223927, 45.411594], + [9.223927, 45.402601], + [9.214934, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.411594], + [9.214934, 45.420587], + [9.223927, 45.420587], + [9.223927, 45.411594], + [9.214934, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.420587], + [9.214934, 45.42958], + [9.223927, 45.42958], + [9.223927, 45.420587], + [9.214934, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.42958], + [9.214934, 45.438574], + [9.223927, 45.438574], + [9.223927, 45.42958], + [9.214934, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.438574], + [9.214934, 45.447567], + [9.223927, 45.447567], + [9.223927, 45.438574], + [9.214934, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.447567], + [9.214934, 45.45656], + [9.223927, 45.45656], + [9.223927, 45.447567], + [9.214934, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.45656], + [9.214934, 45.465553], + [9.223927, 45.465553], + [9.223927, 45.45656], + [9.214934, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.465553], + [9.214934, 45.474547], + [9.223927, 45.474547], + [9.223927, 45.465553], + [9.214934, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.474547], + [9.214934, 45.48354], + [9.223927, 45.48354], + [9.223927, 45.474547], + [9.214934, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.48354], + [9.214934, 45.492533], + [9.223927, 45.492533], + [9.223927, 45.48354], + [9.214934, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.492533], + [9.214934, 45.501526], + [9.223927, 45.501526], + [9.223927, 45.492533], + [9.214934, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.501526], + [9.214934, 45.510519], + [9.223927, 45.510519], + [9.223927, 45.501526], + [9.214934, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.510519], + [9.214934, 45.519513], + [9.223927, 45.519513], + [9.223927, 45.510519], + [9.214934, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.519513], + [9.214934, 45.528506], + [9.223927, 45.528506], + [9.223927, 45.519513], + [9.214934, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.528506], + [9.214934, 45.537499], + [9.223927, 45.537499], + [9.223927, 45.528506], + [9.214934, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.537499], + [9.214934, 45.546492], + [9.223927, 45.546492], + [9.223927, 45.537499], + [9.214934, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.546492], + [9.214934, 45.555485], + [9.223927, 45.555485], + [9.223927, 45.546492], + [9.214934, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.555485], + [9.214934, 45.564479], + [9.223927, 45.564479], + [9.223927, 45.555485], + [9.214934, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.564479], + [9.214934, 45.573472], + [9.223927, 45.573472], + [9.223927, 45.564479], + [9.214934, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.573472], + [9.214934, 45.582465], + [9.223927, 45.582465], + [9.223927, 45.573472], + [9.214934, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.582465], + [9.214934, 45.591458], + [9.223927, 45.591458], + [9.223927, 45.582465], + [9.214934, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.591458], + [9.214934, 45.600451], + [9.223927, 45.600451], + [9.223927, 45.591458], + [9.214934, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.600451], + [9.214934, 45.609445], + [9.223927, 45.609445], + [9.223927, 45.600451], + [9.214934, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.609445], + [9.214934, 45.618438], + [9.223927, 45.618438], + [9.223927, 45.609445], + [9.214934, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.618438], + [9.214934, 45.627431], + [9.223927, 45.627431], + [9.223927, 45.618438], + [9.214934, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.627431], + [9.214934, 45.636424], + [9.223927, 45.636424], + [9.223927, 45.627431], + [9.214934, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.339648], + [9.223927, 45.348642], + [9.232921, 45.348642], + [9.232921, 45.339648], + [9.223927, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.348642], + [9.223927, 45.357635], + [9.232921, 45.357635], + [9.232921, 45.348642], + [9.223927, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.357635], + [9.223927, 45.366628], + [9.232921, 45.366628], + [9.232921, 45.357635], + [9.223927, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.366628], + [9.223927, 45.375621], + [9.232921, 45.375621], + [9.232921, 45.366628], + [9.223927, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.375621], + [9.223927, 45.384614], + [9.232921, 45.384614], + [9.232921, 45.375621], + [9.223927, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.384614], + [9.223927, 45.393608], + [9.232921, 45.393608], + [9.232921, 45.384614], + [9.223927, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.393608], + [9.223927, 45.402601], + [9.232921, 45.402601], + [9.232921, 45.393608], + [9.223927, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.402601], + [9.223927, 45.411594], + [9.232921, 45.411594], + [9.232921, 45.402601], + [9.223927, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.411594], + [9.223927, 45.420587], + [9.232921, 45.420587], + [9.232921, 45.411594], + [9.223927, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.420587], + [9.223927, 45.42958], + [9.232921, 45.42958], + [9.232921, 45.420587], + [9.223927, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.42958], + [9.223927, 45.438574], + [9.232921, 45.438574], + [9.232921, 45.42958], + [9.223927, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.438574], + [9.223927, 45.447567], + [9.232921, 45.447567], + [9.232921, 45.438574], + [9.223927, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.447567], + [9.223927, 45.45656], + [9.232921, 45.45656], + [9.232921, 45.447567], + [9.223927, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.45656], + [9.223927, 45.465553], + [9.232921, 45.465553], + [9.232921, 45.45656], + [9.223927, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.465553], + [9.223927, 45.474547], + [9.232921, 45.474547], + [9.232921, 45.465553], + [9.223927, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.474547], + [9.223927, 45.48354], + [9.232921, 45.48354], + [9.232921, 45.474547], + [9.223927, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.48354], + [9.223927, 45.492533], + [9.232921, 45.492533], + [9.232921, 45.48354], + [9.223927, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.492533], + [9.223927, 45.501526], + [9.232921, 45.501526], + [9.232921, 45.492533], + [9.223927, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.501526], + [9.223927, 45.510519], + [9.232921, 45.510519], + [9.232921, 45.501526], + [9.223927, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.510519], + [9.223927, 45.519513], + [9.232921, 45.519513], + [9.232921, 45.510519], + [9.223927, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.519513], + [9.223927, 45.528506], + [9.232921, 45.528506], + [9.232921, 45.519513], + [9.223927, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.528506], + [9.223927, 45.537499], + [9.232921, 45.537499], + [9.232921, 45.528506], + [9.223927, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.537499], + [9.223927, 45.546492], + [9.232921, 45.546492], + [9.232921, 45.537499], + [9.223927, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.546492], + [9.223927, 45.555485], + [9.232921, 45.555485], + [9.232921, 45.546492], + [9.223927, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.555485], + [9.223927, 45.564479], + [9.232921, 45.564479], + [9.232921, 45.555485], + [9.223927, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.564479], + [9.223927, 45.573472], + [9.232921, 45.573472], + [9.232921, 45.564479], + [9.223927, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.573472], + [9.223927, 45.582465], + [9.232921, 45.582465], + [9.232921, 45.573472], + [9.223927, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.582465], + [9.223927, 45.591458], + [9.232921, 45.591458], + [9.232921, 45.582465], + [9.223927, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.591458], + [9.223927, 45.600451], + [9.232921, 45.600451], + [9.232921, 45.591458], + [9.223927, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.600451], + [9.223927, 45.609445], + [9.232921, 45.609445], + [9.232921, 45.600451], + [9.223927, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.609445], + [9.223927, 45.618438], + [9.232921, 45.618438], + [9.232921, 45.609445], + [9.223927, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.618438], + [9.223927, 45.627431], + [9.232921, 45.627431], + [9.232921, 45.618438], + [9.223927, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.627431], + [9.223927, 45.636424], + [9.232921, 45.636424], + [9.232921, 45.627431], + [9.223927, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.339648], + [9.232921, 45.348642], + [9.241914, 45.348642], + [9.241914, 45.339648], + [9.232921, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.348642], + [9.232921, 45.357635], + [9.241914, 45.357635], + [9.241914, 45.348642], + [9.232921, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.357635], + [9.232921, 45.366628], + [9.241914, 45.366628], + [9.241914, 45.357635], + [9.232921, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.366628], + [9.232921, 45.375621], + [9.241914, 45.375621], + [9.241914, 45.366628], + [9.232921, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.375621], + [9.232921, 45.384614], + [9.241914, 45.384614], + [9.241914, 45.375621], + [9.232921, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.384614], + [9.232921, 45.393608], + [9.241914, 45.393608], + [9.241914, 45.384614], + [9.232921, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.393608], + [9.232921, 45.402601], + [9.241914, 45.402601], + [9.241914, 45.393608], + [9.232921, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.402601], + [9.232921, 45.411594], + [9.241914, 45.411594], + [9.241914, 45.402601], + [9.232921, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.411594], + [9.232921, 45.420587], + [9.241914, 45.420587], + [9.241914, 45.411594], + [9.232921, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.420587], + [9.232921, 45.42958], + [9.241914, 45.42958], + [9.241914, 45.420587], + [9.232921, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.42958], + [9.232921, 45.438574], + [9.241914, 45.438574], + [9.241914, 45.42958], + [9.232921, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.438574], + [9.232921, 45.447567], + [9.241914, 45.447567], + [9.241914, 45.438574], + [9.232921, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.447567], + [9.232921, 45.45656], + [9.241914, 45.45656], + [9.241914, 45.447567], + [9.232921, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.45656], + [9.232921, 45.465553], + [9.241914, 45.465553], + [9.241914, 45.45656], + [9.232921, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.465553], + [9.232921, 45.474547], + [9.241914, 45.474547], + [9.241914, 45.465553], + [9.232921, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.474547], + [9.232921, 45.48354], + [9.241914, 45.48354], + [9.241914, 45.474547], + [9.232921, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.48354], + [9.232921, 45.492533], + [9.241914, 45.492533], + [9.241914, 45.48354], + [9.232921, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.492533], + [9.232921, 45.501526], + [9.241914, 45.501526], + [9.241914, 45.492533], + [9.232921, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.501526], + [9.232921, 45.510519], + [9.241914, 45.510519], + [9.241914, 45.501526], + [9.232921, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.510519], + [9.232921, 45.519513], + [9.241914, 45.519513], + [9.241914, 45.510519], + [9.232921, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.519513], + [9.232921, 45.528506], + [9.241914, 45.528506], + [9.241914, 45.519513], + [9.232921, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.528506], + [9.232921, 45.537499], + [9.241914, 45.537499], + [9.241914, 45.528506], + [9.232921, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.537499], + [9.232921, 45.546492], + [9.241914, 45.546492], + [9.241914, 45.537499], + [9.232921, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.546492], + [9.232921, 45.555485], + [9.241914, 45.555485], + [9.241914, 45.546492], + [9.232921, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.555485], + [9.232921, 45.564479], + [9.241914, 45.564479], + [9.241914, 45.555485], + [9.232921, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.564479], + [9.232921, 45.573472], + [9.241914, 45.573472], + [9.241914, 45.564479], + [9.232921, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.573472], + [9.232921, 45.582465], + [9.241914, 45.582465], + [9.241914, 45.573472], + [9.232921, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.582465], + [9.232921, 45.591458], + [9.241914, 45.591458], + [9.241914, 45.582465], + [9.232921, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.591458], + [9.232921, 45.600451], + [9.241914, 45.600451], + [9.241914, 45.591458], + [9.232921, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.600451], + [9.232921, 45.609445], + [9.241914, 45.609445], + [9.241914, 45.600451], + [9.232921, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.609445], + [9.232921, 45.618438], + [9.241914, 45.618438], + [9.241914, 45.609445], + [9.232921, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.618438], + [9.232921, 45.627431], + [9.241914, 45.627431], + [9.241914, 45.618438], + [9.232921, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.627431], + [9.232921, 45.636424], + [9.241914, 45.636424], + [9.241914, 45.627431], + [9.232921, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.339648], + [9.241914, 45.348642], + [9.250907, 45.348642], + [9.250907, 45.339648], + [9.241914, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.348642], + [9.241914, 45.357635], + [9.250907, 45.357635], + [9.250907, 45.348642], + [9.241914, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.357635], + [9.241914, 45.366628], + [9.250907, 45.366628], + [9.250907, 45.357635], + [9.241914, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.366628], + [9.241914, 45.375621], + [9.250907, 45.375621], + [9.250907, 45.366628], + [9.241914, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.375621], + [9.241914, 45.384614], + [9.250907, 45.384614], + [9.250907, 45.375621], + [9.241914, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.384614], + [9.241914, 45.393608], + [9.250907, 45.393608], + [9.250907, 45.384614], + [9.241914, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.393608], + [9.241914, 45.402601], + [9.250907, 45.402601], + [9.250907, 45.393608], + [9.241914, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.402601], + [9.241914, 45.411594], + [9.250907, 45.411594], + [9.250907, 45.402601], + [9.241914, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.411594], + [9.241914, 45.420587], + [9.250907, 45.420587], + [9.250907, 45.411594], + [9.241914, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.420587], + [9.241914, 45.42958], + [9.250907, 45.42958], + [9.250907, 45.420587], + [9.241914, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.42958], + [9.241914, 45.438574], + [9.250907, 45.438574], + [9.250907, 45.42958], + [9.241914, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.438574], + [9.241914, 45.447567], + [9.250907, 45.447567], + [9.250907, 45.438574], + [9.241914, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.447567], + [9.241914, 45.45656], + [9.250907, 45.45656], + [9.250907, 45.447567], + [9.241914, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.45656], + [9.241914, 45.465553], + [9.250907, 45.465553], + [9.250907, 45.45656], + [9.241914, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.465553], + [9.241914, 45.474547], + [9.250907, 45.474547], + [9.250907, 45.465553], + [9.241914, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.474547], + [9.241914, 45.48354], + [9.250907, 45.48354], + [9.250907, 45.474547], + [9.241914, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.48354], + [9.241914, 45.492533], + [9.250907, 45.492533], + [9.250907, 45.48354], + [9.241914, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.492533], + [9.241914, 45.501526], + [9.250907, 45.501526], + [9.250907, 45.492533], + [9.241914, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.501526], + [9.241914, 45.510519], + [9.250907, 45.510519], + [9.250907, 45.501526], + [9.241914, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.510519], + [9.241914, 45.519513], + [9.250907, 45.519513], + [9.250907, 45.510519], + [9.241914, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.519513], + [9.241914, 45.528506], + [9.250907, 45.528506], + [9.250907, 45.519513], + [9.241914, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.528506], + [9.241914, 45.537499], + [9.250907, 45.537499], + [9.250907, 45.528506], + [9.241914, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.537499], + [9.241914, 45.546492], + [9.250907, 45.546492], + [9.250907, 45.537499], + [9.241914, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.546492], + [9.241914, 45.555485], + [9.250907, 45.555485], + [9.250907, 45.546492], + [9.241914, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.555485], + [9.241914, 45.564479], + [9.250907, 45.564479], + [9.250907, 45.555485], + [9.241914, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.564479], + [9.241914, 45.573472], + [9.250907, 45.573472], + [9.250907, 45.564479], + [9.241914, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.573472], + [9.241914, 45.582465], + [9.250907, 45.582465], + [9.250907, 45.573472], + [9.241914, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.582465], + [9.241914, 45.591458], + [9.250907, 45.591458], + [9.250907, 45.582465], + [9.241914, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.591458], + [9.241914, 45.600451], + [9.250907, 45.600451], + [9.250907, 45.591458], + [9.241914, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.600451], + [9.241914, 45.609445], + [9.250907, 45.609445], + [9.250907, 45.600451], + [9.241914, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.609445], + [9.241914, 45.618438], + [9.250907, 45.618438], + [9.250907, 45.609445], + [9.241914, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.618438], + [9.241914, 45.627431], + [9.250907, 45.627431], + [9.250907, 45.618438], + [9.241914, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.627431], + [9.241914, 45.636424], + [9.250907, 45.636424], + [9.250907, 45.627431], + [9.241914, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.339648], + [9.250907, 45.348642], + [9.2599, 45.348642], + [9.2599, 45.339648], + [9.250907, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.348642], + [9.250907, 45.357635], + [9.2599, 45.357635], + [9.2599, 45.348642], + [9.250907, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.357635], + [9.250907, 45.366628], + [9.2599, 45.366628], + [9.2599, 45.357635], + [9.250907, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.366628], + [9.250907, 45.375621], + [9.2599, 45.375621], + [9.2599, 45.366628], + [9.250907, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.375621], + [9.250907, 45.384614], + [9.2599, 45.384614], + [9.2599, 45.375621], + [9.250907, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.384614], + [9.250907, 45.393608], + [9.2599, 45.393608], + [9.2599, 45.384614], + [9.250907, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.393608], + [9.250907, 45.402601], + [9.2599, 45.402601], + [9.2599, 45.393608], + [9.250907, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.402601], + [9.250907, 45.411594], + [9.2599, 45.411594], + [9.2599, 45.402601], + [9.250907, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.411594], + [9.250907, 45.420587], + [9.2599, 45.420587], + [9.2599, 45.411594], + [9.250907, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.420587], + [9.250907, 45.42958], + [9.2599, 45.42958], + [9.2599, 45.420587], + [9.250907, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.42958], + [9.250907, 45.438574], + [9.2599, 45.438574], + [9.2599, 45.42958], + [9.250907, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.438574], + [9.250907, 45.447567], + [9.2599, 45.447567], + [9.2599, 45.438574], + [9.250907, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.447567], + [9.250907, 45.45656], + [9.2599, 45.45656], + [9.2599, 45.447567], + [9.250907, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.45656], + [9.250907, 45.465553], + [9.2599, 45.465553], + [9.2599, 45.45656], + [9.250907, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.465553], + [9.250907, 45.474547], + [9.2599, 45.474547], + [9.2599, 45.465553], + [9.250907, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.474547], + [9.250907, 45.48354], + [9.2599, 45.48354], + [9.2599, 45.474547], + [9.250907, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.48354], + [9.250907, 45.492533], + [9.2599, 45.492533], + [9.2599, 45.48354], + [9.250907, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.492533], + [9.250907, 45.501526], + [9.2599, 45.501526], + [9.2599, 45.492533], + [9.250907, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.501526], + [9.250907, 45.510519], + [9.2599, 45.510519], + [9.2599, 45.501526], + [9.250907, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.510519], + [9.250907, 45.519513], + [9.2599, 45.519513], + [9.2599, 45.510519], + [9.250907, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.519513], + [9.250907, 45.528506], + [9.2599, 45.528506], + [9.2599, 45.519513], + [9.250907, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.528506], + [9.250907, 45.537499], + [9.2599, 45.537499], + [9.2599, 45.528506], + [9.250907, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.537499], + [9.250907, 45.546492], + [9.2599, 45.546492], + [9.2599, 45.537499], + [9.250907, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.546492], + [9.250907, 45.555485], + [9.2599, 45.555485], + [9.2599, 45.546492], + [9.250907, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.555485], + [9.250907, 45.564479], + [9.2599, 45.564479], + [9.2599, 45.555485], + [9.250907, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.564479], + [9.250907, 45.573472], + [9.2599, 45.573472], + [9.2599, 45.564479], + [9.250907, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.573472], + [9.250907, 45.582465], + [9.2599, 45.582465], + [9.2599, 45.573472], + [9.250907, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.582465], + [9.250907, 45.591458], + [9.2599, 45.591458], + [9.2599, 45.582465], + [9.250907, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.591458], + [9.250907, 45.600451], + [9.2599, 45.600451], + [9.2599, 45.591458], + [9.250907, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.600451], + [9.250907, 45.609445], + [9.2599, 45.609445], + [9.2599, 45.600451], + [9.250907, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.609445], + [9.250907, 45.618438], + [9.2599, 45.618438], + [9.2599, 45.609445], + [9.250907, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.618438], + [9.250907, 45.627431], + [9.2599, 45.627431], + [9.2599, 45.618438], + [9.250907, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.627431], + [9.250907, 45.636424], + [9.2599, 45.636424], + [9.2599, 45.627431], + [9.250907, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.339648], + [9.2599, 45.348642], + [9.268893, 45.348642], + [9.268893, 45.339648], + [9.2599, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.348642], + [9.2599, 45.357635], + [9.268893, 45.357635], + [9.268893, 45.348642], + [9.2599, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.357635], + [9.2599, 45.366628], + [9.268893, 45.366628], + [9.268893, 45.357635], + [9.2599, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.366628], + [9.2599, 45.375621], + [9.268893, 45.375621], + [9.268893, 45.366628], + [9.2599, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.375621], + [9.2599, 45.384614], + [9.268893, 45.384614], + [9.268893, 45.375621], + [9.2599, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.384614], + [9.2599, 45.393608], + [9.268893, 45.393608], + [9.268893, 45.384614], + [9.2599, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.393608], + [9.2599, 45.402601], + [9.268893, 45.402601], + [9.268893, 45.393608], + [9.2599, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.402601], + [9.2599, 45.411594], + [9.268893, 45.411594], + [9.268893, 45.402601], + [9.2599, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.411594], + [9.2599, 45.420587], + [9.268893, 45.420587], + [9.268893, 45.411594], + [9.2599, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.420587], + [9.2599, 45.42958], + [9.268893, 45.42958], + [9.268893, 45.420587], + [9.2599, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.42958], + [9.2599, 45.438574], + [9.268893, 45.438574], + [9.268893, 45.42958], + [9.2599, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.438574], + [9.2599, 45.447567], + [9.268893, 45.447567], + [9.268893, 45.438574], + [9.2599, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.447567], + [9.2599, 45.45656], + [9.268893, 45.45656], + [9.268893, 45.447567], + [9.2599, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.45656], + [9.2599, 45.465553], + [9.268893, 45.465553], + [9.268893, 45.45656], + [9.2599, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.465553], + [9.2599, 45.474547], + [9.268893, 45.474547], + [9.268893, 45.465553], + [9.2599, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.474547], + [9.2599, 45.48354], + [9.268893, 45.48354], + [9.268893, 45.474547], + [9.2599, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.48354], + [9.2599, 45.492533], + [9.268893, 45.492533], + [9.268893, 45.48354], + [9.2599, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.492533], + [9.2599, 45.501526], + [9.268893, 45.501526], + [9.268893, 45.492533], + [9.2599, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.501526], + [9.2599, 45.510519], + [9.268893, 45.510519], + [9.268893, 45.501526], + [9.2599, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.510519], + [9.2599, 45.519513], + [9.268893, 45.519513], + [9.268893, 45.510519], + [9.2599, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.519513], + [9.2599, 45.528506], + [9.268893, 45.528506], + [9.268893, 45.519513], + [9.2599, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.528506], + [9.2599, 45.537499], + [9.268893, 45.537499], + [9.268893, 45.528506], + [9.2599, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.537499], + [9.2599, 45.546492], + [9.268893, 45.546492], + [9.268893, 45.537499], + [9.2599, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.546492], + [9.2599, 45.555485], + [9.268893, 45.555485], + [9.268893, 45.546492], + [9.2599, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.555485], + [9.2599, 45.564479], + [9.268893, 45.564479], + [9.268893, 45.555485], + [9.2599, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.564479], + [9.2599, 45.573472], + [9.268893, 45.573472], + [9.268893, 45.564479], + [9.2599, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.573472], + [9.2599, 45.582465], + [9.268893, 45.582465], + [9.268893, 45.573472], + [9.2599, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.582465], + [9.2599, 45.591458], + [9.268893, 45.591458], + [9.268893, 45.582465], + [9.2599, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.591458], + [9.2599, 45.600451], + [9.268893, 45.600451], + [9.268893, 45.591458], + [9.2599, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.600451], + [9.2599, 45.609445], + [9.268893, 45.609445], + [9.268893, 45.600451], + [9.2599, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.609445], + [9.2599, 45.618438], + [9.268893, 45.618438], + [9.268893, 45.609445], + [9.2599, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.618438], + [9.2599, 45.627431], + [9.268893, 45.627431], + [9.268893, 45.618438], + [9.2599, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.627431], + [9.2599, 45.636424], + [9.268893, 45.636424], + [9.268893, 45.627431], + [9.2599, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.339648], + [9.268893, 45.348642], + [9.277887, 45.348642], + [9.277887, 45.339648], + [9.268893, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.348642], + [9.268893, 45.357635], + [9.277887, 45.357635], + [9.277887, 45.348642], + [9.268893, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.357635], + [9.268893, 45.366628], + [9.277887, 45.366628], + [9.277887, 45.357635], + [9.268893, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.366628], + [9.268893, 45.375621], + [9.277887, 45.375621], + [9.277887, 45.366628], + [9.268893, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.375621], + [9.268893, 45.384614], + [9.277887, 45.384614], + [9.277887, 45.375621], + [9.268893, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.384614], + [9.268893, 45.393608], + [9.277887, 45.393608], + [9.277887, 45.384614], + [9.268893, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.393608], + [9.268893, 45.402601], + [9.277887, 45.402601], + [9.277887, 45.393608], + [9.268893, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.402601], + [9.268893, 45.411594], + [9.277887, 45.411594], + [9.277887, 45.402601], + [9.268893, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.411594], + [9.268893, 45.420587], + [9.277887, 45.420587], + [9.277887, 45.411594], + [9.268893, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.420587], + [9.268893, 45.42958], + [9.277887, 45.42958], + [9.277887, 45.420587], + [9.268893, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.42958], + [9.268893, 45.438574], + [9.277887, 45.438574], + [9.277887, 45.42958], + [9.268893, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.438574], + [9.268893, 45.447567], + [9.277887, 45.447567], + [9.277887, 45.438574], + [9.268893, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.447567], + [9.268893, 45.45656], + [9.277887, 45.45656], + [9.277887, 45.447567], + [9.268893, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.45656], + [9.268893, 45.465553], + [9.277887, 45.465553], + [9.277887, 45.45656], + [9.268893, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.465553], + [9.268893, 45.474547], + [9.277887, 45.474547], + [9.277887, 45.465553], + [9.268893, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.474547], + [9.268893, 45.48354], + [9.277887, 45.48354], + [9.277887, 45.474547], + [9.268893, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.48354], + [9.268893, 45.492533], + [9.277887, 45.492533], + [9.277887, 45.48354], + [9.268893, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.492533], + [9.268893, 45.501526], + [9.277887, 45.501526], + [9.277887, 45.492533], + [9.268893, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.501526], + [9.268893, 45.510519], + [9.277887, 45.510519], + [9.277887, 45.501526], + [9.268893, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.510519], + [9.268893, 45.519513], + [9.277887, 45.519513], + [9.277887, 45.510519], + [9.268893, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.519513], + [9.268893, 45.528506], + [9.277887, 45.528506], + [9.277887, 45.519513], + [9.268893, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.528506], + [9.268893, 45.537499], + [9.277887, 45.537499], + [9.277887, 45.528506], + [9.268893, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.537499], + [9.268893, 45.546492], + [9.277887, 45.546492], + [9.277887, 45.537499], + [9.268893, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.546492], + [9.268893, 45.555485], + [9.277887, 45.555485], + [9.277887, 45.546492], + [9.268893, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.555485], + [9.268893, 45.564479], + [9.277887, 45.564479], + [9.277887, 45.555485], + [9.268893, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.564479], + [9.268893, 45.573472], + [9.277887, 45.573472], + [9.277887, 45.564479], + [9.268893, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.573472], + [9.268893, 45.582465], + [9.277887, 45.582465], + [9.277887, 45.573472], + [9.268893, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.582465], + [9.268893, 45.591458], + [9.277887, 45.591458], + [9.277887, 45.582465], + [9.268893, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.591458], + [9.268893, 45.600451], + [9.277887, 45.600451], + [9.277887, 45.591458], + [9.268893, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.600451], + [9.268893, 45.609445], + [9.277887, 45.609445], + [9.277887, 45.600451], + [9.268893, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.609445], + [9.268893, 45.618438], + [9.277887, 45.618438], + [9.277887, 45.609445], + [9.268893, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.618438], + [9.268893, 45.627431], + [9.277887, 45.627431], + [9.277887, 45.618438], + [9.268893, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.627431], + [9.268893, 45.636424], + [9.277887, 45.636424], + [9.277887, 45.627431], + [9.268893, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.339648], + [9.277887, 45.348642], + [9.28688, 45.348642], + [9.28688, 45.339648], + [9.277887, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.348642], + [9.277887, 45.357635], + [9.28688, 45.357635], + [9.28688, 45.348642], + [9.277887, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.357635], + [9.277887, 45.366628], + [9.28688, 45.366628], + [9.28688, 45.357635], + [9.277887, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.366628], + [9.277887, 45.375621], + [9.28688, 45.375621], + [9.28688, 45.366628], + [9.277887, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.375621], + [9.277887, 45.384614], + [9.28688, 45.384614], + [9.28688, 45.375621], + [9.277887, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.384614], + [9.277887, 45.393608], + [9.28688, 45.393608], + [9.28688, 45.384614], + [9.277887, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.393608], + [9.277887, 45.402601], + [9.28688, 45.402601], + [9.28688, 45.393608], + [9.277887, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.402601], + [9.277887, 45.411594], + [9.28688, 45.411594], + [9.28688, 45.402601], + [9.277887, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.411594], + [9.277887, 45.420587], + [9.28688, 45.420587], + [9.28688, 45.411594], + [9.277887, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.420587], + [9.277887, 45.42958], + [9.28688, 45.42958], + [9.28688, 45.420587], + [9.277887, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.42958], + [9.277887, 45.438574], + [9.28688, 45.438574], + [9.28688, 45.42958], + [9.277887, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.438574], + [9.277887, 45.447567], + [9.28688, 45.447567], + [9.28688, 45.438574], + [9.277887, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.447567], + [9.277887, 45.45656], + [9.28688, 45.45656], + [9.28688, 45.447567], + [9.277887, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.45656], + [9.277887, 45.465553], + [9.28688, 45.465553], + [9.28688, 45.45656], + [9.277887, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.465553], + [9.277887, 45.474547], + [9.28688, 45.474547], + [9.28688, 45.465553], + [9.277887, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.474547], + [9.277887, 45.48354], + [9.28688, 45.48354], + [9.28688, 45.474547], + [9.277887, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.48354], + [9.277887, 45.492533], + [9.28688, 45.492533], + [9.28688, 45.48354], + [9.277887, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.492533], + [9.277887, 45.501526], + [9.28688, 45.501526], + [9.28688, 45.492533], + [9.277887, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.501526], + [9.277887, 45.510519], + [9.28688, 45.510519], + [9.28688, 45.501526], + [9.277887, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.510519], + [9.277887, 45.519513], + [9.28688, 45.519513], + [9.28688, 45.510519], + [9.277887, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.519513], + [9.277887, 45.528506], + [9.28688, 45.528506], + [9.28688, 45.519513], + [9.277887, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.528506], + [9.277887, 45.537499], + [9.28688, 45.537499], + [9.28688, 45.528506], + [9.277887, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.537499], + [9.277887, 45.546492], + [9.28688, 45.546492], + [9.28688, 45.537499], + [9.277887, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.546492], + [9.277887, 45.555485], + [9.28688, 45.555485], + [9.28688, 45.546492], + [9.277887, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.555485], + [9.277887, 45.564479], + [9.28688, 45.564479], + [9.28688, 45.555485], + [9.277887, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.564479], + [9.277887, 45.573472], + [9.28688, 45.573472], + [9.28688, 45.564479], + [9.277887, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.573472], + [9.277887, 45.582465], + [9.28688, 45.582465], + [9.28688, 45.573472], + [9.277887, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.582465], + [9.277887, 45.591458], + [9.28688, 45.591458], + [9.28688, 45.582465], + [9.277887, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.591458], + [9.277887, 45.600451], + [9.28688, 45.600451], + [9.28688, 45.591458], + [9.277887, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.600451], + [9.277887, 45.609445], + [9.28688, 45.609445], + [9.28688, 45.600451], + [9.277887, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.609445], + [9.277887, 45.618438], + [9.28688, 45.618438], + [9.28688, 45.609445], + [9.277887, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.618438], + [9.277887, 45.627431], + [9.28688, 45.627431], + [9.28688, 45.618438], + [9.277887, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.627431], + [9.277887, 45.636424], + [9.28688, 45.636424], + [9.28688, 45.627431], + [9.277887, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.339648], + [9.28688, 45.348642], + [9.295873, 45.348642], + [9.295873, 45.339648], + [9.28688, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.348642], + [9.28688, 45.357635], + [9.295873, 45.357635], + [9.295873, 45.348642], + [9.28688, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.357635], + [9.28688, 45.366628], + [9.295873, 45.366628], + [9.295873, 45.357635], + [9.28688, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.366628], + [9.28688, 45.375621], + [9.295873, 45.375621], + [9.295873, 45.366628], + [9.28688, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.375621], + [9.28688, 45.384614], + [9.295873, 45.384614], + [9.295873, 45.375621], + [9.28688, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.384614], + [9.28688, 45.393608], + [9.295873, 45.393608], + [9.295873, 45.384614], + [9.28688, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.393608], + [9.28688, 45.402601], + [9.295873, 45.402601], + [9.295873, 45.393608], + [9.28688, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.402601], + [9.28688, 45.411594], + [9.295873, 45.411594], + [9.295873, 45.402601], + [9.28688, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.411594], + [9.28688, 45.420587], + [9.295873, 45.420587], + [9.295873, 45.411594], + [9.28688, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.420587], + [9.28688, 45.42958], + [9.295873, 45.42958], + [9.295873, 45.420587], + [9.28688, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.42958], + [9.28688, 45.438574], + [9.295873, 45.438574], + [9.295873, 45.42958], + [9.28688, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.438574], + [9.28688, 45.447567], + [9.295873, 45.447567], + [9.295873, 45.438574], + [9.28688, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.447567], + [9.28688, 45.45656], + [9.295873, 45.45656], + [9.295873, 45.447567], + [9.28688, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.45656], + [9.28688, 45.465553], + [9.295873, 45.465553], + [9.295873, 45.45656], + [9.28688, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.465553], + [9.28688, 45.474547], + [9.295873, 45.474547], + [9.295873, 45.465553], + [9.28688, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.474547], + [9.28688, 45.48354], + [9.295873, 45.48354], + [9.295873, 45.474547], + [9.28688, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.48354], + [9.28688, 45.492533], + [9.295873, 45.492533], + [9.295873, 45.48354], + [9.28688, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.492533], + [9.28688, 45.501526], + [9.295873, 45.501526], + [9.295873, 45.492533], + [9.28688, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.501526], + [9.28688, 45.510519], + [9.295873, 45.510519], + [9.295873, 45.501526], + [9.28688, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.510519], + [9.28688, 45.519513], + [9.295873, 45.519513], + [9.295873, 45.510519], + [9.28688, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.519513], + [9.28688, 45.528506], + [9.295873, 45.528506], + [9.295873, 45.519513], + [9.28688, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.528506], + [9.28688, 45.537499], + [9.295873, 45.537499], + [9.295873, 45.528506], + [9.28688, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.537499], + [9.28688, 45.546492], + [9.295873, 45.546492], + [9.295873, 45.537499], + [9.28688, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.546492], + [9.28688, 45.555485], + [9.295873, 45.555485], + [9.295873, 45.546492], + [9.28688, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.555485], + [9.28688, 45.564479], + [9.295873, 45.564479], + [9.295873, 45.555485], + [9.28688, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.564479], + [9.28688, 45.573472], + [9.295873, 45.573472], + [9.295873, 45.564479], + [9.28688, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.573472], + [9.28688, 45.582465], + [9.295873, 45.582465], + [9.295873, 45.573472], + [9.28688, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.582465], + [9.28688, 45.591458], + [9.295873, 45.591458], + [9.295873, 45.582465], + [9.28688, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.591458], + [9.28688, 45.600451], + [9.295873, 45.600451], + [9.295873, 45.591458], + [9.28688, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.600451], + [9.28688, 45.609445], + [9.295873, 45.609445], + [9.295873, 45.600451], + [9.28688, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.609445], + [9.28688, 45.618438], + [9.295873, 45.618438], + [9.295873, 45.609445], + [9.28688, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.618438], + [9.28688, 45.627431], + [9.295873, 45.627431], + [9.295873, 45.618438], + [9.28688, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.627431], + [9.28688, 45.636424], + [9.295873, 45.636424], + [9.295873, 45.627431], + [9.28688, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.339648], + [9.295873, 45.348642], + [9.304866, 45.348642], + [9.304866, 45.339648], + [9.295873, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.348642], + [9.295873, 45.357635], + [9.304866, 45.357635], + [9.304866, 45.348642], + [9.295873, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.357635], + [9.295873, 45.366628], + [9.304866, 45.366628], + [9.304866, 45.357635], + [9.295873, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.366628], + [9.295873, 45.375621], + [9.304866, 45.375621], + [9.304866, 45.366628], + [9.295873, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.375621], + [9.295873, 45.384614], + [9.304866, 45.384614], + [9.304866, 45.375621], + [9.295873, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.384614], + [9.295873, 45.393608], + [9.304866, 45.393608], + [9.304866, 45.384614], + [9.295873, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.393608], + [9.295873, 45.402601], + [9.304866, 45.402601], + [9.304866, 45.393608], + [9.295873, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.402601], + [9.295873, 45.411594], + [9.304866, 45.411594], + [9.304866, 45.402601], + [9.295873, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.411594], + [9.295873, 45.420587], + [9.304866, 45.420587], + [9.304866, 45.411594], + [9.295873, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.420587], + [9.295873, 45.42958], + [9.304866, 45.42958], + [9.304866, 45.420587], + [9.295873, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.42958], + [9.295873, 45.438574], + [9.304866, 45.438574], + [9.304866, 45.42958], + [9.295873, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.438574], + [9.295873, 45.447567], + [9.304866, 45.447567], + [9.304866, 45.438574], + [9.295873, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.447567], + [9.295873, 45.45656], + [9.304866, 45.45656], + [9.304866, 45.447567], + [9.295873, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.45656], + [9.295873, 45.465553], + [9.304866, 45.465553], + [9.304866, 45.45656], + [9.295873, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.465553], + [9.295873, 45.474547], + [9.304866, 45.474547], + [9.304866, 45.465553], + [9.295873, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.474547], + [9.295873, 45.48354], + [9.304866, 45.48354], + [9.304866, 45.474547], + [9.295873, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.48354], + [9.295873, 45.492533], + [9.304866, 45.492533], + [9.304866, 45.48354], + [9.295873, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.492533], + [9.295873, 45.501526], + [9.304866, 45.501526], + [9.304866, 45.492533], + [9.295873, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.501526], + [9.295873, 45.510519], + [9.304866, 45.510519], + [9.304866, 45.501526], + [9.295873, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.510519], + [9.295873, 45.519513], + [9.304866, 45.519513], + [9.304866, 45.510519], + [9.295873, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.519513], + [9.295873, 45.528506], + [9.304866, 45.528506], + [9.304866, 45.519513], + [9.295873, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.528506], + [9.295873, 45.537499], + [9.304866, 45.537499], + [9.304866, 45.528506], + [9.295873, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.537499], + [9.295873, 45.546492], + [9.304866, 45.546492], + [9.304866, 45.537499], + [9.295873, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.546492], + [9.295873, 45.555485], + [9.304866, 45.555485], + [9.304866, 45.546492], + [9.295873, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.555485], + [9.295873, 45.564479], + [9.304866, 45.564479], + [9.304866, 45.555485], + [9.295873, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.564479], + [9.295873, 45.573472], + [9.304866, 45.573472], + [9.304866, 45.564479], + [9.295873, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.573472], + [9.295873, 45.582465], + [9.304866, 45.582465], + [9.304866, 45.573472], + [9.295873, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.582465], + [9.295873, 45.591458], + [9.304866, 45.591458], + [9.304866, 45.582465], + [9.295873, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.591458], + [9.295873, 45.600451], + [9.304866, 45.600451], + [9.304866, 45.591458], + [9.295873, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.600451], + [9.295873, 45.609445], + [9.304866, 45.609445], + [9.304866, 45.600451], + [9.295873, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.609445], + [9.295873, 45.618438], + [9.304866, 45.618438], + [9.304866, 45.609445], + [9.295873, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.618438], + [9.295873, 45.627431], + [9.304866, 45.627431], + [9.304866, 45.618438], + [9.295873, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.627431], + [9.295873, 45.636424], + [9.304866, 45.636424], + [9.304866, 45.627431], + [9.295873, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.339648], + [9.304866, 45.348642], + [9.313859, 45.348642], + [9.313859, 45.339648], + [9.304866, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.348642], + [9.304866, 45.357635], + [9.313859, 45.357635], + [9.313859, 45.348642], + [9.304866, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.357635], + [9.304866, 45.366628], + [9.313859, 45.366628], + [9.313859, 45.357635], + [9.304866, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.366628], + [9.304866, 45.375621], + [9.313859, 45.375621], + [9.313859, 45.366628], + [9.304866, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.375621], + [9.304866, 45.384614], + [9.313859, 45.384614], + [9.313859, 45.375621], + [9.304866, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.384614], + [9.304866, 45.393608], + [9.313859, 45.393608], + [9.313859, 45.384614], + [9.304866, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.393608], + [9.304866, 45.402601], + [9.313859, 45.402601], + [9.313859, 45.393608], + [9.304866, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.402601], + [9.304866, 45.411594], + [9.313859, 45.411594], + [9.313859, 45.402601], + [9.304866, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.411594], + [9.304866, 45.420587], + [9.313859, 45.420587], + [9.313859, 45.411594], + [9.304866, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.420587], + [9.304866, 45.42958], + [9.313859, 45.42958], + [9.313859, 45.420587], + [9.304866, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.42958], + [9.304866, 45.438574], + [9.313859, 45.438574], + [9.313859, 45.42958], + [9.304866, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.438574], + [9.304866, 45.447567], + [9.313859, 45.447567], + [9.313859, 45.438574], + [9.304866, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.447567], + [9.304866, 45.45656], + [9.313859, 45.45656], + [9.313859, 45.447567], + [9.304866, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.45656], + [9.304866, 45.465553], + [9.313859, 45.465553], + [9.313859, 45.45656], + [9.304866, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.465553], + [9.304866, 45.474547], + [9.313859, 45.474547], + [9.313859, 45.465553], + [9.304866, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.474547], + [9.304866, 45.48354], + [9.313859, 45.48354], + [9.313859, 45.474547], + [9.304866, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.48354], + [9.304866, 45.492533], + [9.313859, 45.492533], + [9.313859, 45.48354], + [9.304866, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.492533], + [9.304866, 45.501526], + [9.313859, 45.501526], + [9.313859, 45.492533], + [9.304866, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.501526], + [9.304866, 45.510519], + [9.313859, 45.510519], + [9.313859, 45.501526], + [9.304866, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.510519], + [9.304866, 45.519513], + [9.313859, 45.519513], + [9.313859, 45.510519], + [9.304866, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.519513], + [9.304866, 45.528506], + [9.313859, 45.528506], + [9.313859, 45.519513], + [9.304866, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.528506], + [9.304866, 45.537499], + [9.313859, 45.537499], + [9.313859, 45.528506], + [9.304866, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.537499], + [9.304866, 45.546492], + [9.313859, 45.546492], + [9.313859, 45.537499], + [9.304866, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.546492], + [9.304866, 45.555485], + [9.313859, 45.555485], + [9.313859, 45.546492], + [9.304866, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.555485], + [9.304866, 45.564479], + [9.313859, 45.564479], + [9.313859, 45.555485], + [9.304866, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.564479], + [9.304866, 45.573472], + [9.313859, 45.573472], + [9.313859, 45.564479], + [9.304866, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.573472], + [9.304866, 45.582465], + [9.313859, 45.582465], + [9.313859, 45.573472], + [9.304866, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.582465], + [9.304866, 45.591458], + [9.313859, 45.591458], + [9.313859, 45.582465], + [9.304866, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.591458], + [9.304866, 45.600451], + [9.313859, 45.600451], + [9.313859, 45.591458], + [9.304866, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.600451], + [9.304866, 45.609445], + [9.313859, 45.609445], + [9.313859, 45.600451], + [9.304866, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.609445], + [9.304866, 45.618438], + [9.313859, 45.618438], + [9.313859, 45.609445], + [9.304866, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.618438], + [9.304866, 45.627431], + [9.313859, 45.627431], + [9.313859, 45.618438], + [9.304866, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.627431], + [9.304866, 45.636424], + [9.313859, 45.636424], + [9.313859, 45.627431], + [9.304866, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.339648], + [9.313859, 45.348642], + [9.322853, 45.348642], + [9.322853, 45.339648], + [9.313859, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.348642], + [9.313859, 45.357635], + [9.322853, 45.357635], + [9.322853, 45.348642], + [9.313859, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.357635], + [9.313859, 45.366628], + [9.322853, 45.366628], + [9.322853, 45.357635], + [9.313859, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.366628], + [9.313859, 45.375621], + [9.322853, 45.375621], + [9.322853, 45.366628], + [9.313859, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.375621], + [9.313859, 45.384614], + [9.322853, 45.384614], + [9.322853, 45.375621], + [9.313859, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.384614], + [9.313859, 45.393608], + [9.322853, 45.393608], + [9.322853, 45.384614], + [9.313859, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.393608], + [9.313859, 45.402601], + [9.322853, 45.402601], + [9.322853, 45.393608], + [9.313859, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.402601], + [9.313859, 45.411594], + [9.322853, 45.411594], + [9.322853, 45.402601], + [9.313859, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.411594], + [9.313859, 45.420587], + [9.322853, 45.420587], + [9.322853, 45.411594], + [9.313859, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.420587], + [9.313859, 45.42958], + [9.322853, 45.42958], + [9.322853, 45.420587], + [9.313859, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.42958], + [9.313859, 45.438574], + [9.322853, 45.438574], + [9.322853, 45.42958], + [9.313859, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.438574], + [9.313859, 45.447567], + [9.322853, 45.447567], + [9.322853, 45.438574], + [9.313859, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.447567], + [9.313859, 45.45656], + [9.322853, 45.45656], + [9.322853, 45.447567], + [9.313859, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.45656], + [9.313859, 45.465553], + [9.322853, 45.465553], + [9.322853, 45.45656], + [9.313859, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.465553], + [9.313859, 45.474547], + [9.322853, 45.474547], + [9.322853, 45.465553], + [9.313859, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.474547], + [9.313859, 45.48354], + [9.322853, 45.48354], + [9.322853, 45.474547], + [9.313859, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.48354], + [9.313859, 45.492533], + [9.322853, 45.492533], + [9.322853, 45.48354], + [9.313859, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.492533], + [9.313859, 45.501526], + [9.322853, 45.501526], + [9.322853, 45.492533], + [9.313859, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.501526], + [9.313859, 45.510519], + [9.322853, 45.510519], + [9.322853, 45.501526], + [9.313859, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.510519], + [9.313859, 45.519513], + [9.322853, 45.519513], + [9.322853, 45.510519], + [9.313859, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.519513], + [9.313859, 45.528506], + [9.322853, 45.528506], + [9.322853, 45.519513], + [9.313859, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.528506], + [9.313859, 45.537499], + [9.322853, 45.537499], + [9.322853, 45.528506], + [9.313859, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.537499], + [9.313859, 45.546492], + [9.322853, 45.546492], + [9.322853, 45.537499], + [9.313859, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.546492], + [9.313859, 45.555485], + [9.322853, 45.555485], + [9.322853, 45.546492], + [9.313859, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.555485], + [9.313859, 45.564479], + [9.322853, 45.564479], + [9.322853, 45.555485], + [9.313859, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.564479], + [9.313859, 45.573472], + [9.322853, 45.573472], + [9.322853, 45.564479], + [9.313859, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.573472], + [9.313859, 45.582465], + [9.322853, 45.582465], + [9.322853, 45.573472], + [9.313859, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.582465], + [9.313859, 45.591458], + [9.322853, 45.591458], + [9.322853, 45.582465], + [9.313859, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.591458], + [9.313859, 45.600451], + [9.322853, 45.600451], + [9.322853, 45.591458], + [9.313859, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.600451], + [9.313859, 45.609445], + [9.322853, 45.609445], + [9.322853, 45.600451], + [9.313859, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.609445], + [9.313859, 45.618438], + [9.322853, 45.618438], + [9.322853, 45.609445], + [9.313859, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.618438], + [9.313859, 45.627431], + [9.322853, 45.627431], + [9.322853, 45.618438], + [9.313859, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.627431], + [9.313859, 45.636424], + [9.322853, 45.636424], + [9.322853, 45.627431], + [9.313859, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.339648], + [9.322853, 45.348642], + [9.331846, 45.348642], + [9.331846, 45.339648], + [9.322853, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.348642], + [9.322853, 45.357635], + [9.331846, 45.357635], + [9.331846, 45.348642], + [9.322853, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.357635], + [9.322853, 45.366628], + [9.331846, 45.366628], + [9.331846, 45.357635], + [9.322853, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.366628], + [9.322853, 45.375621], + [9.331846, 45.375621], + [9.331846, 45.366628], + [9.322853, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.375621], + [9.322853, 45.384614], + [9.331846, 45.384614], + [9.331846, 45.375621], + [9.322853, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.384614], + [9.322853, 45.393608], + [9.331846, 45.393608], + [9.331846, 45.384614], + [9.322853, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.393608], + [9.322853, 45.402601], + [9.331846, 45.402601], + [9.331846, 45.393608], + [9.322853, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.402601], + [9.322853, 45.411594], + [9.331846, 45.411594], + [9.331846, 45.402601], + [9.322853, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.411594], + [9.322853, 45.420587], + [9.331846, 45.420587], + [9.331846, 45.411594], + [9.322853, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.420587], + [9.322853, 45.42958], + [9.331846, 45.42958], + [9.331846, 45.420587], + [9.322853, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.42958], + [9.322853, 45.438574], + [9.331846, 45.438574], + [9.331846, 45.42958], + [9.322853, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.438574], + [9.322853, 45.447567], + [9.331846, 45.447567], + [9.331846, 45.438574], + [9.322853, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.447567], + [9.322853, 45.45656], + [9.331846, 45.45656], + [9.331846, 45.447567], + [9.322853, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.45656], + [9.322853, 45.465553], + [9.331846, 45.465553], + [9.331846, 45.45656], + [9.322853, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.465553], + [9.322853, 45.474547], + [9.331846, 45.474547], + [9.331846, 45.465553], + [9.322853, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.474547], + [9.322853, 45.48354], + [9.331846, 45.48354], + [9.331846, 45.474547], + [9.322853, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.48354], + [9.322853, 45.492533], + [9.331846, 45.492533], + [9.331846, 45.48354], + [9.322853, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.492533], + [9.322853, 45.501526], + [9.331846, 45.501526], + [9.331846, 45.492533], + [9.322853, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.501526], + [9.322853, 45.510519], + [9.331846, 45.510519], + [9.331846, 45.501526], + [9.322853, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.510519], + [9.322853, 45.519513], + [9.331846, 45.519513], + [9.331846, 45.510519], + [9.322853, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.519513], + [9.322853, 45.528506], + [9.331846, 45.528506], + [9.331846, 45.519513], + [9.322853, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.528506], + [9.322853, 45.537499], + [9.331846, 45.537499], + [9.331846, 45.528506], + [9.322853, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.537499], + [9.322853, 45.546492], + [9.331846, 45.546492], + [9.331846, 45.537499], + [9.322853, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.546492], + [9.322853, 45.555485], + [9.331846, 45.555485], + [9.331846, 45.546492], + [9.322853, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.555485], + [9.322853, 45.564479], + [9.331846, 45.564479], + [9.331846, 45.555485], + [9.322853, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.564479], + [9.322853, 45.573472], + [9.331846, 45.573472], + [9.331846, 45.564479], + [9.322853, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.573472], + [9.322853, 45.582465], + [9.331846, 45.582465], + [9.331846, 45.573472], + [9.322853, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.582465], + [9.322853, 45.591458], + [9.331846, 45.591458], + [9.331846, 45.582465], + [9.322853, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.591458], + [9.322853, 45.600451], + [9.331846, 45.600451], + [9.331846, 45.591458], + [9.322853, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.600451], + [9.322853, 45.609445], + [9.331846, 45.609445], + [9.331846, 45.600451], + [9.322853, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.609445], + [9.322853, 45.618438], + [9.331846, 45.618438], + [9.331846, 45.609445], + [9.322853, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.618438], + [9.322853, 45.627431], + [9.331846, 45.627431], + [9.331846, 45.618438], + [9.322853, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.627431], + [9.322853, 45.636424], + [9.331846, 45.636424], + [9.331846, 45.627431], + [9.322853, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.339648], + [9.331846, 45.348642], + [9.340839, 45.348642], + [9.340839, 45.339648], + [9.331846, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.348642], + [9.331846, 45.357635], + [9.340839, 45.357635], + [9.340839, 45.348642], + [9.331846, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.357635], + [9.331846, 45.366628], + [9.340839, 45.366628], + [9.340839, 45.357635], + [9.331846, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.366628], + [9.331846, 45.375621], + [9.340839, 45.375621], + [9.340839, 45.366628], + [9.331846, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.375621], + [9.331846, 45.384614], + [9.340839, 45.384614], + [9.340839, 45.375621], + [9.331846, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.384614], + [9.331846, 45.393608], + [9.340839, 45.393608], + [9.340839, 45.384614], + [9.331846, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.393608], + [9.331846, 45.402601], + [9.340839, 45.402601], + [9.340839, 45.393608], + [9.331846, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.402601], + [9.331846, 45.411594], + [9.340839, 45.411594], + [9.340839, 45.402601], + [9.331846, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.411594], + [9.331846, 45.420587], + [9.340839, 45.420587], + [9.340839, 45.411594], + [9.331846, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.420587], + [9.331846, 45.42958], + [9.340839, 45.42958], + [9.340839, 45.420587], + [9.331846, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.42958], + [9.331846, 45.438574], + [9.340839, 45.438574], + [9.340839, 45.42958], + [9.331846, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.438574], + [9.331846, 45.447567], + [9.340839, 45.447567], + [9.340839, 45.438574], + [9.331846, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.447567], + [9.331846, 45.45656], + [9.340839, 45.45656], + [9.340839, 45.447567], + [9.331846, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.45656], + [9.331846, 45.465553], + [9.340839, 45.465553], + [9.340839, 45.45656], + [9.331846, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.465553], + [9.331846, 45.474547], + [9.340839, 45.474547], + [9.340839, 45.465553], + [9.331846, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.474547], + [9.331846, 45.48354], + [9.340839, 45.48354], + [9.340839, 45.474547], + [9.331846, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.48354], + [9.331846, 45.492533], + [9.340839, 45.492533], + [9.340839, 45.48354], + [9.331846, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.492533], + [9.331846, 45.501526], + [9.340839, 45.501526], + [9.340839, 45.492533], + [9.331846, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.501526], + [9.331846, 45.510519], + [9.340839, 45.510519], + [9.340839, 45.501526], + [9.331846, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.510519], + [9.331846, 45.519513], + [9.340839, 45.519513], + [9.340839, 45.510519], + [9.331846, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.519513], + [9.331846, 45.528506], + [9.340839, 45.528506], + [9.340839, 45.519513], + [9.331846, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.528506], + [9.331846, 45.537499], + [9.340839, 45.537499], + [9.340839, 45.528506], + [9.331846, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.537499], + [9.331846, 45.546492], + [9.340839, 45.546492], + [9.340839, 45.537499], + [9.331846, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.546492], + [9.331846, 45.555485], + [9.340839, 45.555485], + [9.340839, 45.546492], + [9.331846, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.555485], + [9.331846, 45.564479], + [9.340839, 45.564479], + [9.340839, 45.555485], + [9.331846, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.564479], + [9.331846, 45.573472], + [9.340839, 45.573472], + [9.340839, 45.564479], + [9.331846, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.573472], + [9.331846, 45.582465], + [9.340839, 45.582465], + [9.340839, 45.573472], + [9.331846, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.582465], + [9.331846, 45.591458], + [9.340839, 45.591458], + [9.340839, 45.582465], + [9.331846, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.591458], + [9.331846, 45.600451], + [9.340839, 45.600451], + [9.340839, 45.591458], + [9.331846, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.600451], + [9.331846, 45.609445], + [9.340839, 45.609445], + [9.340839, 45.600451], + [9.331846, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.609445], + [9.331846, 45.618438], + [9.340839, 45.618438], + [9.340839, 45.609445], + [9.331846, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.618438], + [9.331846, 45.627431], + [9.340839, 45.627431], + [9.340839, 45.618438], + [9.331846, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.627431], + [9.331846, 45.636424], + [9.340839, 45.636424], + [9.340839, 45.627431], + [9.331846, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.339648], + [9.340839, 45.348642], + [9.349832, 45.348642], + [9.349832, 45.339648], + [9.340839, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.348642], + [9.340839, 45.357635], + [9.349832, 45.357635], + [9.349832, 45.348642], + [9.340839, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.357635], + [9.340839, 45.366628], + [9.349832, 45.366628], + [9.349832, 45.357635], + [9.340839, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.366628], + [9.340839, 45.375621], + [9.349832, 45.375621], + [9.349832, 45.366628], + [9.340839, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.375621], + [9.340839, 45.384614], + [9.349832, 45.384614], + [9.349832, 45.375621], + [9.340839, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.384614], + [9.340839, 45.393608], + [9.349832, 45.393608], + [9.349832, 45.384614], + [9.340839, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.393608], + [9.340839, 45.402601], + [9.349832, 45.402601], + [9.349832, 45.393608], + [9.340839, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.402601], + [9.340839, 45.411594], + [9.349832, 45.411594], + [9.349832, 45.402601], + [9.340839, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.411594], + [9.340839, 45.420587], + [9.349832, 45.420587], + [9.349832, 45.411594], + [9.340839, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.420587], + [9.340839, 45.42958], + [9.349832, 45.42958], + [9.349832, 45.420587], + [9.340839, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.42958], + [9.340839, 45.438574], + [9.349832, 45.438574], + [9.349832, 45.42958], + [9.340839, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.438574], + [9.340839, 45.447567], + [9.349832, 45.447567], + [9.349832, 45.438574], + [9.340839, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.447567], + [9.340839, 45.45656], + [9.349832, 45.45656], + [9.349832, 45.447567], + [9.340839, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.45656], + [9.340839, 45.465553], + [9.349832, 45.465553], + [9.349832, 45.45656], + [9.340839, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.465553], + [9.340839, 45.474547], + [9.349832, 45.474547], + [9.349832, 45.465553], + [9.340839, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.474547], + [9.340839, 45.48354], + [9.349832, 45.48354], + [9.349832, 45.474547], + [9.340839, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.48354], + [9.340839, 45.492533], + [9.349832, 45.492533], + [9.349832, 45.48354], + [9.340839, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.492533], + [9.340839, 45.501526], + [9.349832, 45.501526], + [9.349832, 45.492533], + [9.340839, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.501526], + [9.340839, 45.510519], + [9.349832, 45.510519], + [9.349832, 45.501526], + [9.340839, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.510519], + [9.340839, 45.519513], + [9.349832, 45.519513], + [9.349832, 45.510519], + [9.340839, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.519513], + [9.340839, 45.528506], + [9.349832, 45.528506], + [9.349832, 45.519513], + [9.340839, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.528506], + [9.340839, 45.537499], + [9.349832, 45.537499], + [9.349832, 45.528506], + [9.340839, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.537499], + [9.340839, 45.546492], + [9.349832, 45.546492], + [9.349832, 45.537499], + [9.340839, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.546492], + [9.340839, 45.555485], + [9.349832, 45.555485], + [9.349832, 45.546492], + [9.340839, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.555485], + [9.340839, 45.564479], + [9.349832, 45.564479], + [9.349832, 45.555485], + [9.340839, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.564479], + [9.340839, 45.573472], + [9.349832, 45.573472], + [9.349832, 45.564479], + [9.340839, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.573472], + [9.340839, 45.582465], + [9.349832, 45.582465], + [9.349832, 45.573472], + [9.340839, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.582465], + [9.340839, 45.591458], + [9.349832, 45.591458], + [9.349832, 45.582465], + [9.340839, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.591458], + [9.340839, 45.600451], + [9.349832, 45.600451], + [9.349832, 45.591458], + [9.340839, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.600451], + [9.340839, 45.609445], + [9.349832, 45.609445], + [9.349832, 45.600451], + [9.340839, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.609445], + [9.340839, 45.618438], + [9.349832, 45.618438], + [9.349832, 45.609445], + [9.340839, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.618438], + [9.340839, 45.627431], + [9.349832, 45.627431], + [9.349832, 45.618438], + [9.340839, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.627431], + [9.340839, 45.636424], + [9.349832, 45.636424], + [9.349832, 45.627431], + [9.340839, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.339648], + [9.349832, 45.348642], + [9.358825, 45.348642], + [9.358825, 45.339648], + [9.349832, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.348642], + [9.349832, 45.357635], + [9.358825, 45.357635], + [9.358825, 45.348642], + [9.349832, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.357635], + [9.349832, 45.366628], + [9.358825, 45.366628], + [9.358825, 45.357635], + [9.349832, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.366628], + [9.349832, 45.375621], + [9.358825, 45.375621], + [9.358825, 45.366628], + [9.349832, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.375621], + [9.349832, 45.384614], + [9.358825, 45.384614], + [9.358825, 45.375621], + [9.349832, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.384614], + [9.349832, 45.393608], + [9.358825, 45.393608], + [9.358825, 45.384614], + [9.349832, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.393608], + [9.349832, 45.402601], + [9.358825, 45.402601], + [9.358825, 45.393608], + [9.349832, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.402601], + [9.349832, 45.411594], + [9.358825, 45.411594], + [9.358825, 45.402601], + [9.349832, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.411594], + [9.349832, 45.420587], + [9.358825, 45.420587], + [9.358825, 45.411594], + [9.349832, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.420587], + [9.349832, 45.42958], + [9.358825, 45.42958], + [9.358825, 45.420587], + [9.349832, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.42958], + [9.349832, 45.438574], + [9.358825, 45.438574], + [9.358825, 45.42958], + [9.349832, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.438574], + [9.349832, 45.447567], + [9.358825, 45.447567], + [9.358825, 45.438574], + [9.349832, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.447567], + [9.349832, 45.45656], + [9.358825, 45.45656], + [9.358825, 45.447567], + [9.349832, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.45656], + [9.349832, 45.465553], + [9.358825, 45.465553], + [9.358825, 45.45656], + [9.349832, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.465553], + [9.349832, 45.474547], + [9.358825, 45.474547], + [9.358825, 45.465553], + [9.349832, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.474547], + [9.349832, 45.48354], + [9.358825, 45.48354], + [9.358825, 45.474547], + [9.349832, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.48354], + [9.349832, 45.492533], + [9.358825, 45.492533], + [9.358825, 45.48354], + [9.349832, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.492533], + [9.349832, 45.501526], + [9.358825, 45.501526], + [9.358825, 45.492533], + [9.349832, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.501526], + [9.349832, 45.510519], + [9.358825, 45.510519], + [9.358825, 45.501526], + [9.349832, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.510519], + [9.349832, 45.519513], + [9.358825, 45.519513], + [9.358825, 45.510519], + [9.349832, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.519513], + [9.349832, 45.528506], + [9.358825, 45.528506], + [9.358825, 45.519513], + [9.349832, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.528506], + [9.349832, 45.537499], + [9.358825, 45.537499], + [9.358825, 45.528506], + [9.349832, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.537499], + [9.349832, 45.546492], + [9.358825, 45.546492], + [9.358825, 45.537499], + [9.349832, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.546492], + [9.349832, 45.555485], + [9.358825, 45.555485], + [9.358825, 45.546492], + [9.349832, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.555485], + [9.349832, 45.564479], + [9.358825, 45.564479], + [9.358825, 45.555485], + [9.349832, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.564479], + [9.349832, 45.573472], + [9.358825, 45.573472], + [9.358825, 45.564479], + [9.349832, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.573472], + [9.349832, 45.582465], + [9.358825, 45.582465], + [9.358825, 45.573472], + [9.349832, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.582465], + [9.349832, 45.591458], + [9.358825, 45.591458], + [9.358825, 45.582465], + [9.349832, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.591458], + [9.349832, 45.600451], + [9.358825, 45.600451], + [9.358825, 45.591458], + [9.349832, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.600451], + [9.349832, 45.609445], + [9.358825, 45.609445], + [9.358825, 45.600451], + [9.349832, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.609445], + [9.349832, 45.618438], + [9.358825, 45.618438], + [9.358825, 45.609445], + [9.349832, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.618438], + [9.349832, 45.627431], + [9.358825, 45.627431], + [9.358825, 45.618438], + [9.349832, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.627431], + [9.349832, 45.636424], + [9.358825, 45.636424], + [9.358825, 45.627431], + [9.349832, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.339648], + [9.358825, 45.348642], + [9.367819, 45.348642], + [9.367819, 45.339648], + [9.358825, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.348642], + [9.358825, 45.357635], + [9.367819, 45.357635], + [9.367819, 45.348642], + [9.358825, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.357635], + [9.358825, 45.366628], + [9.367819, 45.366628], + [9.367819, 45.357635], + [9.358825, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.366628], + [9.358825, 45.375621], + [9.367819, 45.375621], + [9.367819, 45.366628], + [9.358825, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.375621], + [9.358825, 45.384614], + [9.367819, 45.384614], + [9.367819, 45.375621], + [9.358825, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.384614], + [9.358825, 45.393608], + [9.367819, 45.393608], + [9.367819, 45.384614], + [9.358825, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.393608], + [9.358825, 45.402601], + [9.367819, 45.402601], + [9.367819, 45.393608], + [9.358825, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.402601], + [9.358825, 45.411594], + [9.367819, 45.411594], + [9.367819, 45.402601], + [9.358825, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.411594], + [9.358825, 45.420587], + [9.367819, 45.420587], + [9.367819, 45.411594], + [9.358825, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.420587], + [9.358825, 45.42958], + [9.367819, 45.42958], + [9.367819, 45.420587], + [9.358825, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.42958], + [9.358825, 45.438574], + [9.367819, 45.438574], + [9.367819, 45.42958], + [9.358825, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.438574], + [9.358825, 45.447567], + [9.367819, 45.447567], + [9.367819, 45.438574], + [9.358825, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.447567], + [9.358825, 45.45656], + [9.367819, 45.45656], + [9.367819, 45.447567], + [9.358825, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.45656], + [9.358825, 45.465553], + [9.367819, 45.465553], + [9.367819, 45.45656], + [9.358825, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.465553], + [9.358825, 45.474547], + [9.367819, 45.474547], + [9.367819, 45.465553], + [9.358825, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.474547], + [9.358825, 45.48354], + [9.367819, 45.48354], + [9.367819, 45.474547], + [9.358825, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.48354], + [9.358825, 45.492533], + [9.367819, 45.492533], + [9.367819, 45.48354], + [9.358825, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.492533], + [9.358825, 45.501526], + [9.367819, 45.501526], + [9.367819, 45.492533], + [9.358825, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.501526], + [9.358825, 45.510519], + [9.367819, 45.510519], + [9.367819, 45.501526], + [9.358825, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.510519], + [9.358825, 45.519513], + [9.367819, 45.519513], + [9.367819, 45.510519], + [9.358825, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.519513], + [9.358825, 45.528506], + [9.367819, 45.528506], + [9.367819, 45.519513], + [9.358825, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.528506], + [9.358825, 45.537499], + [9.367819, 45.537499], + [9.367819, 45.528506], + [9.358825, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.537499], + [9.358825, 45.546492], + [9.367819, 45.546492], + [9.367819, 45.537499], + [9.358825, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.546492], + [9.358825, 45.555485], + [9.367819, 45.555485], + [9.367819, 45.546492], + [9.358825, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.555485], + [9.358825, 45.564479], + [9.367819, 45.564479], + [9.367819, 45.555485], + [9.358825, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.564479], + [9.358825, 45.573472], + [9.367819, 45.573472], + [9.367819, 45.564479], + [9.358825, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.573472], + [9.358825, 45.582465], + [9.367819, 45.582465], + [9.367819, 45.573472], + [9.358825, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.582465], + [9.358825, 45.591458], + [9.367819, 45.591458], + [9.367819, 45.582465], + [9.358825, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.591458], + [9.358825, 45.600451], + [9.367819, 45.600451], + [9.367819, 45.591458], + [9.358825, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.600451], + [9.358825, 45.609445], + [9.367819, 45.609445], + [9.367819, 45.600451], + [9.358825, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.609445], + [9.358825, 45.618438], + [9.367819, 45.618438], + [9.367819, 45.609445], + [9.358825, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.618438], + [9.358825, 45.627431], + [9.367819, 45.627431], + [9.367819, 45.618438], + [9.358825, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.627431], + [9.358825, 45.636424], + [9.367819, 45.636424], + [9.367819, 45.627431], + [9.358825, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.339648], + [9.367819, 45.348642], + [9.376812, 45.348642], + [9.376812, 45.339648], + [9.367819, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.348642], + [9.367819, 45.357635], + [9.376812, 45.357635], + [9.376812, 45.348642], + [9.367819, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.357635], + [9.367819, 45.366628], + [9.376812, 45.366628], + [9.376812, 45.357635], + [9.367819, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.366628], + [9.367819, 45.375621], + [9.376812, 45.375621], + [9.376812, 45.366628], + [9.367819, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.375621], + [9.367819, 45.384614], + [9.376812, 45.384614], + [9.376812, 45.375621], + [9.367819, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.384614], + [9.367819, 45.393608], + [9.376812, 45.393608], + [9.376812, 45.384614], + [9.367819, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.393608], + [9.367819, 45.402601], + [9.376812, 45.402601], + [9.376812, 45.393608], + [9.367819, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.402601], + [9.367819, 45.411594], + [9.376812, 45.411594], + [9.376812, 45.402601], + [9.367819, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.411594], + [9.367819, 45.420587], + [9.376812, 45.420587], + [9.376812, 45.411594], + [9.367819, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.420587], + [9.367819, 45.42958], + [9.376812, 45.42958], + [9.376812, 45.420587], + [9.367819, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.42958], + [9.367819, 45.438574], + [9.376812, 45.438574], + [9.376812, 45.42958], + [9.367819, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.438574], + [9.367819, 45.447567], + [9.376812, 45.447567], + [9.376812, 45.438574], + [9.367819, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.447567], + [9.367819, 45.45656], + [9.376812, 45.45656], + [9.376812, 45.447567], + [9.367819, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.45656], + [9.367819, 45.465553], + [9.376812, 45.465553], + [9.376812, 45.45656], + [9.367819, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.465553], + [9.367819, 45.474547], + [9.376812, 45.474547], + [9.376812, 45.465553], + [9.367819, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.474547], + [9.367819, 45.48354], + [9.376812, 45.48354], + [9.376812, 45.474547], + [9.367819, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.48354], + [9.367819, 45.492533], + [9.376812, 45.492533], + [9.376812, 45.48354], + [9.367819, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.492533], + [9.367819, 45.501526], + [9.376812, 45.501526], + [9.376812, 45.492533], + [9.367819, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.501526], + [9.367819, 45.510519], + [9.376812, 45.510519], + [9.376812, 45.501526], + [9.367819, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.510519], + [9.367819, 45.519513], + [9.376812, 45.519513], + [9.376812, 45.510519], + [9.367819, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.519513], + [9.367819, 45.528506], + [9.376812, 45.528506], + [9.376812, 45.519513], + [9.367819, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.528506], + [9.367819, 45.537499], + [9.376812, 45.537499], + [9.376812, 45.528506], + [9.367819, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.537499], + [9.367819, 45.546492], + [9.376812, 45.546492], + [9.376812, 45.537499], + [9.367819, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.546492], + [9.367819, 45.555485], + [9.376812, 45.555485], + [9.376812, 45.546492], + [9.367819, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.555485], + [9.367819, 45.564479], + [9.376812, 45.564479], + [9.376812, 45.555485], + [9.367819, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.564479], + [9.367819, 45.573472], + [9.376812, 45.573472], + [9.376812, 45.564479], + [9.367819, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.573472], + [9.367819, 45.582465], + [9.376812, 45.582465], + [9.376812, 45.573472], + [9.367819, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.582465], + [9.367819, 45.591458], + [9.376812, 45.591458], + [9.376812, 45.582465], + [9.367819, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.591458], + [9.367819, 45.600451], + [9.376812, 45.600451], + [9.376812, 45.591458], + [9.367819, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.600451], + [9.367819, 45.609445], + [9.376812, 45.609445], + [9.376812, 45.600451], + [9.367819, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.609445], + [9.367819, 45.618438], + [9.376812, 45.618438], + [9.376812, 45.609445], + [9.367819, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.618438], + [9.367819, 45.627431], + [9.376812, 45.627431], + [9.376812, 45.618438], + [9.367819, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.627431], + [9.367819, 45.636424], + [9.376812, 45.636424], + [9.376812, 45.627431], + [9.367819, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.339648], + [9.376812, 45.348642], + [9.385805, 45.348642], + [9.385805, 45.339648], + [9.376812, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.348642], + [9.376812, 45.357635], + [9.385805, 45.357635], + [9.385805, 45.348642], + [9.376812, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.357635], + [9.376812, 45.366628], + [9.385805, 45.366628], + [9.385805, 45.357635], + [9.376812, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.366628], + [9.376812, 45.375621], + [9.385805, 45.375621], + [9.385805, 45.366628], + [9.376812, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.375621], + [9.376812, 45.384614], + [9.385805, 45.384614], + [9.385805, 45.375621], + [9.376812, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.384614], + [9.376812, 45.393608], + [9.385805, 45.393608], + [9.385805, 45.384614], + [9.376812, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.393608], + [9.376812, 45.402601], + [9.385805, 45.402601], + [9.385805, 45.393608], + [9.376812, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.402601], + [9.376812, 45.411594], + [9.385805, 45.411594], + [9.385805, 45.402601], + [9.376812, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.411594], + [9.376812, 45.420587], + [9.385805, 45.420587], + [9.385805, 45.411594], + [9.376812, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.420587], + [9.376812, 45.42958], + [9.385805, 45.42958], + [9.385805, 45.420587], + [9.376812, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.42958], + [9.376812, 45.438574], + [9.385805, 45.438574], + [9.385805, 45.42958], + [9.376812, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.438574], + [9.376812, 45.447567], + [9.385805, 45.447567], + [9.385805, 45.438574], + [9.376812, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.447567], + [9.376812, 45.45656], + [9.385805, 45.45656], + [9.385805, 45.447567], + [9.376812, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.45656], + [9.376812, 45.465553], + [9.385805, 45.465553], + [9.385805, 45.45656], + [9.376812, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.465553], + [9.376812, 45.474547], + [9.385805, 45.474547], + [9.385805, 45.465553], + [9.376812, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.474547], + [9.376812, 45.48354], + [9.385805, 45.48354], + [9.385805, 45.474547], + [9.376812, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.48354], + [9.376812, 45.492533], + [9.385805, 45.492533], + [9.385805, 45.48354], + [9.376812, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.492533], + [9.376812, 45.501526], + [9.385805, 45.501526], + [9.385805, 45.492533], + [9.376812, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.501526], + [9.376812, 45.510519], + [9.385805, 45.510519], + [9.385805, 45.501526], + [9.376812, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.510519], + [9.376812, 45.519513], + [9.385805, 45.519513], + [9.385805, 45.510519], + [9.376812, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.519513], + [9.376812, 45.528506], + [9.385805, 45.528506], + [9.385805, 45.519513], + [9.376812, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.528506], + [9.376812, 45.537499], + [9.385805, 45.537499], + [9.385805, 45.528506], + [9.376812, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.537499], + [9.376812, 45.546492], + [9.385805, 45.546492], + [9.385805, 45.537499], + [9.376812, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.546492], + [9.376812, 45.555485], + [9.385805, 45.555485], + [9.385805, 45.546492], + [9.376812, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.555485], + [9.376812, 45.564479], + [9.385805, 45.564479], + [9.385805, 45.555485], + [9.376812, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.564479], + [9.376812, 45.573472], + [9.385805, 45.573472], + [9.385805, 45.564479], + [9.376812, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.573472], + [9.376812, 45.582465], + [9.385805, 45.582465], + [9.385805, 45.573472], + [9.376812, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.582465], + [9.376812, 45.591458], + [9.385805, 45.591458], + [9.385805, 45.582465], + [9.376812, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.591458], + [9.376812, 45.600451], + [9.385805, 45.600451], + [9.385805, 45.591458], + [9.376812, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.600451], + [9.376812, 45.609445], + [9.385805, 45.609445], + [9.385805, 45.600451], + [9.376812, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.609445], + [9.376812, 45.618438], + [9.385805, 45.618438], + [9.385805, 45.609445], + [9.376812, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.618438], + [9.376812, 45.627431], + [9.385805, 45.627431], + [9.385805, 45.618438], + [9.376812, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.627431], + [9.376812, 45.636424], + [9.385805, 45.636424], + [9.385805, 45.627431], + [9.376812, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.339648], + [9.385805, 45.348642], + [9.394798, 45.348642], + [9.394798, 45.339648], + [9.385805, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.348642], + [9.385805, 45.357635], + [9.394798, 45.357635], + [9.394798, 45.348642], + [9.385805, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.357635], + [9.385805, 45.366628], + [9.394798, 45.366628], + [9.394798, 45.357635], + [9.385805, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.366628], + [9.385805, 45.375621], + [9.394798, 45.375621], + [9.394798, 45.366628], + [9.385805, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.375621], + [9.385805, 45.384614], + [9.394798, 45.384614], + [9.394798, 45.375621], + [9.385805, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.384614], + [9.385805, 45.393608], + [9.394798, 45.393608], + [9.394798, 45.384614], + [9.385805, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.393608], + [9.385805, 45.402601], + [9.394798, 45.402601], + [9.394798, 45.393608], + [9.385805, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.402601], + [9.385805, 45.411594], + [9.394798, 45.411594], + [9.394798, 45.402601], + [9.385805, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.411594], + [9.385805, 45.420587], + [9.394798, 45.420587], + [9.394798, 45.411594], + [9.385805, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.420587], + [9.385805, 45.42958], + [9.394798, 45.42958], + [9.394798, 45.420587], + [9.385805, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.42958], + [9.385805, 45.438574], + [9.394798, 45.438574], + [9.394798, 45.42958], + [9.385805, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.438574], + [9.385805, 45.447567], + [9.394798, 45.447567], + [9.394798, 45.438574], + [9.385805, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.447567], + [9.385805, 45.45656], + [9.394798, 45.45656], + [9.394798, 45.447567], + [9.385805, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.45656], + [9.385805, 45.465553], + [9.394798, 45.465553], + [9.394798, 45.45656], + [9.385805, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.465553], + [9.385805, 45.474547], + [9.394798, 45.474547], + [9.394798, 45.465553], + [9.385805, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.474547], + [9.385805, 45.48354], + [9.394798, 45.48354], + [9.394798, 45.474547], + [9.385805, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.48354], + [9.385805, 45.492533], + [9.394798, 45.492533], + [9.394798, 45.48354], + [9.385805, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.492533], + [9.385805, 45.501526], + [9.394798, 45.501526], + [9.394798, 45.492533], + [9.385805, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.501526], + [9.385805, 45.510519], + [9.394798, 45.510519], + [9.394798, 45.501526], + [9.385805, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.510519], + [9.385805, 45.519513], + [9.394798, 45.519513], + [9.394798, 45.510519], + [9.385805, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.519513], + [9.385805, 45.528506], + [9.394798, 45.528506], + [9.394798, 45.519513], + [9.385805, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.528506], + [9.385805, 45.537499], + [9.394798, 45.537499], + [9.394798, 45.528506], + [9.385805, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.537499], + [9.385805, 45.546492], + [9.394798, 45.546492], + [9.394798, 45.537499], + [9.385805, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.546492], + [9.385805, 45.555485], + [9.394798, 45.555485], + [9.394798, 45.546492], + [9.385805, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.555485], + [9.385805, 45.564479], + [9.394798, 45.564479], + [9.394798, 45.555485], + [9.385805, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.564479], + [9.385805, 45.573472], + [9.394798, 45.573472], + [9.394798, 45.564479], + [9.385805, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.573472], + [9.385805, 45.582465], + [9.394798, 45.582465], + [9.394798, 45.573472], + [9.385805, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.582465], + [9.385805, 45.591458], + [9.394798, 45.591458], + [9.394798, 45.582465], + [9.385805, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.591458], + [9.385805, 45.600451], + [9.394798, 45.600451], + [9.394798, 45.591458], + [9.385805, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.600451], + [9.385805, 45.609445], + [9.394798, 45.609445], + [9.394798, 45.600451], + [9.385805, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.609445], + [9.385805, 45.618438], + [9.394798, 45.618438], + [9.394798, 45.609445], + [9.385805, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.618438], + [9.385805, 45.627431], + [9.394798, 45.627431], + [9.394798, 45.618438], + [9.385805, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.627431], + [9.385805, 45.636424], + [9.394798, 45.636424], + [9.394798, 45.627431], + [9.385805, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.339648], + [9.394798, 45.348642], + [9.403791, 45.348642], + [9.403791, 45.339648], + [9.394798, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.348642], + [9.394798, 45.357635], + [9.403791, 45.357635], + [9.403791, 45.348642], + [9.394798, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.357635], + [9.394798, 45.366628], + [9.403791, 45.366628], + [9.403791, 45.357635], + [9.394798, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.366628], + [9.394798, 45.375621], + [9.403791, 45.375621], + [9.403791, 45.366628], + [9.394798, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.375621], + [9.394798, 45.384614], + [9.403791, 45.384614], + [9.403791, 45.375621], + [9.394798, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.384614], + [9.394798, 45.393608], + [9.403791, 45.393608], + [9.403791, 45.384614], + [9.394798, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.393608], + [9.394798, 45.402601], + [9.403791, 45.402601], + [9.403791, 45.393608], + [9.394798, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.402601], + [9.394798, 45.411594], + [9.403791, 45.411594], + [9.403791, 45.402601], + [9.394798, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.411594], + [9.394798, 45.420587], + [9.403791, 45.420587], + [9.403791, 45.411594], + [9.394798, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.420587], + [9.394798, 45.42958], + [9.403791, 45.42958], + [9.403791, 45.420587], + [9.394798, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.42958], + [9.394798, 45.438574], + [9.403791, 45.438574], + [9.403791, 45.42958], + [9.394798, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.438574], + [9.394798, 45.447567], + [9.403791, 45.447567], + [9.403791, 45.438574], + [9.394798, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.447567], + [9.394798, 45.45656], + [9.403791, 45.45656], + [9.403791, 45.447567], + [9.394798, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.45656], + [9.394798, 45.465553], + [9.403791, 45.465553], + [9.403791, 45.45656], + [9.394798, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.465553], + [9.394798, 45.474547], + [9.403791, 45.474547], + [9.403791, 45.465553], + [9.394798, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.474547], + [9.394798, 45.48354], + [9.403791, 45.48354], + [9.403791, 45.474547], + [9.394798, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.48354], + [9.394798, 45.492533], + [9.403791, 45.492533], + [9.403791, 45.48354], + [9.394798, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.492533], + [9.394798, 45.501526], + [9.403791, 45.501526], + [9.403791, 45.492533], + [9.394798, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.501526], + [9.394798, 45.510519], + [9.403791, 45.510519], + [9.403791, 45.501526], + [9.394798, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.510519], + [9.394798, 45.519513], + [9.403791, 45.519513], + [9.403791, 45.510519], + [9.394798, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.519513], + [9.394798, 45.528506], + [9.403791, 45.528506], + [9.403791, 45.519513], + [9.394798, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.528506], + [9.394798, 45.537499], + [9.403791, 45.537499], + [9.403791, 45.528506], + [9.394798, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.537499], + [9.394798, 45.546492], + [9.403791, 45.546492], + [9.403791, 45.537499], + [9.394798, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.546492], + [9.394798, 45.555485], + [9.403791, 45.555485], + [9.403791, 45.546492], + [9.394798, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.555485], + [9.394798, 45.564479], + [9.403791, 45.564479], + [9.403791, 45.555485], + [9.394798, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.564479], + [9.394798, 45.573472], + [9.403791, 45.573472], + [9.403791, 45.564479], + [9.394798, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.573472], + [9.394798, 45.582465], + [9.403791, 45.582465], + [9.403791, 45.573472], + [9.394798, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.582465], + [9.394798, 45.591458], + [9.403791, 45.591458], + [9.403791, 45.582465], + [9.394798, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.591458], + [9.394798, 45.600451], + [9.403791, 45.600451], + [9.403791, 45.591458], + [9.394798, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.600451], + [9.394798, 45.609445], + [9.403791, 45.609445], + [9.403791, 45.600451], + [9.394798, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.609445], + [9.394798, 45.618438], + [9.403791, 45.618438], + [9.403791, 45.609445], + [9.394798, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.618438], + [9.394798, 45.627431], + [9.403791, 45.627431], + [9.403791, 45.618438], + [9.394798, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.627431], + [9.394798, 45.636424], + [9.403791, 45.636424], + [9.403791, 45.627431], + [9.394798, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.339648], + [9.403791, 45.348642], + [9.412785, 45.348642], + [9.412785, 45.339648], + [9.403791, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.348642], + [9.403791, 45.357635], + [9.412785, 45.357635], + [9.412785, 45.348642], + [9.403791, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.357635], + [9.403791, 45.366628], + [9.412785, 45.366628], + [9.412785, 45.357635], + [9.403791, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.366628], + [9.403791, 45.375621], + [9.412785, 45.375621], + [9.412785, 45.366628], + [9.403791, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.375621], + [9.403791, 45.384614], + [9.412785, 45.384614], + [9.412785, 45.375621], + [9.403791, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.384614], + [9.403791, 45.393608], + [9.412785, 45.393608], + [9.412785, 45.384614], + [9.403791, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.393608], + [9.403791, 45.402601], + [9.412785, 45.402601], + [9.412785, 45.393608], + [9.403791, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.402601], + [9.403791, 45.411594], + [9.412785, 45.411594], + [9.412785, 45.402601], + [9.403791, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.411594], + [9.403791, 45.420587], + [9.412785, 45.420587], + [9.412785, 45.411594], + [9.403791, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.420587], + [9.403791, 45.42958], + [9.412785, 45.42958], + [9.412785, 45.420587], + [9.403791, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.42958], + [9.403791, 45.438574], + [9.412785, 45.438574], + [9.412785, 45.42958], + [9.403791, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.438574], + [9.403791, 45.447567], + [9.412785, 45.447567], + [9.412785, 45.438574], + [9.403791, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.447567], + [9.403791, 45.45656], + [9.412785, 45.45656], + [9.412785, 45.447567], + [9.403791, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.45656], + [9.403791, 45.465553], + [9.412785, 45.465553], + [9.412785, 45.45656], + [9.403791, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.465553], + [9.403791, 45.474547], + [9.412785, 45.474547], + [9.412785, 45.465553], + [9.403791, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.474547], + [9.403791, 45.48354], + [9.412785, 45.48354], + [9.412785, 45.474547], + [9.403791, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.48354], + [9.403791, 45.492533], + [9.412785, 45.492533], + [9.412785, 45.48354], + [9.403791, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.492533], + [9.403791, 45.501526], + [9.412785, 45.501526], + [9.412785, 45.492533], + [9.403791, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.501526], + [9.403791, 45.510519], + [9.412785, 45.510519], + [9.412785, 45.501526], + [9.403791, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.510519], + [9.403791, 45.519513], + [9.412785, 45.519513], + [9.412785, 45.510519], + [9.403791, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.519513], + [9.403791, 45.528506], + [9.412785, 45.528506], + [9.412785, 45.519513], + [9.403791, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.528506], + [9.403791, 45.537499], + [9.412785, 45.537499], + [9.412785, 45.528506], + [9.403791, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.537499], + [9.403791, 45.546492], + [9.412785, 45.546492], + [9.412785, 45.537499], + [9.403791, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.546492], + [9.403791, 45.555485], + [9.412785, 45.555485], + [9.412785, 45.546492], + [9.403791, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.555485], + [9.403791, 45.564479], + [9.412785, 45.564479], + [9.412785, 45.555485], + [9.403791, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.564479], + [9.403791, 45.573472], + [9.412785, 45.573472], + [9.412785, 45.564479], + [9.403791, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.573472], + [9.403791, 45.582465], + [9.412785, 45.582465], + [9.412785, 45.573472], + [9.403791, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.582465], + [9.403791, 45.591458], + [9.412785, 45.591458], + [9.412785, 45.582465], + [9.403791, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.591458], + [9.403791, 45.600451], + [9.412785, 45.600451], + [9.412785, 45.591458], + [9.403791, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.600451], + [9.403791, 45.609445], + [9.412785, 45.609445], + [9.412785, 45.600451], + [9.403791, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.609445], + [9.403791, 45.618438], + [9.412785, 45.618438], + [9.412785, 45.609445], + [9.403791, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.618438], + [9.403791, 45.627431], + [9.412785, 45.627431], + [9.412785, 45.618438], + [9.403791, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.627431], + [9.403791, 45.636424], + [9.412785, 45.636424], + [9.412785, 45.627431], + [9.403791, 45.627431] + ] + ] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/data-500m-bbox.geojson b/packages/turf-interpolate/test/out/data-500m-bbox.geojson new file mode 100644 index 0000000000..e199873370 --- /dev/null +++ b/packages/turf-interpolate/test/out/data-500m-bbox.geojson @@ -0,0 +1,117815 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.339648], + [9.032822, 45.344145], + [9.037318, 45.344145], + [9.037318, 45.339648], + [9.032822, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.344145], + [9.032822, 45.348642], + [9.037318, 45.348642], + [9.037318, 45.344145], + [9.032822, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.348642], + [9.032822, 45.353138], + [9.037318, 45.353138], + [9.037318, 45.348642], + [9.032822, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.353138], + [9.032822, 45.357635], + [9.037318, 45.357635], + [9.037318, 45.353138], + [9.032822, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.357635], + [9.032822, 45.362131], + [9.037318, 45.362131], + [9.037318, 45.357635], + [9.032822, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.362131], + [9.032822, 45.366628], + [9.037318, 45.366628], + [9.037318, 45.362131], + [9.032822, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.366628], + [9.032822, 45.371125], + [9.037318, 45.371125], + [9.037318, 45.366628], + [9.032822, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.371125], + [9.032822, 45.375621], + [9.037318, 45.375621], + [9.037318, 45.371125], + [9.032822, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.375621], + [9.032822, 45.380118], + [9.037318, 45.380118], + [9.037318, 45.375621], + [9.032822, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.380118], + [9.032822, 45.384614], + [9.037318, 45.384614], + [9.037318, 45.380118], + [9.032822, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.384614], + [9.032822, 45.389111], + [9.037318, 45.389111], + [9.037318, 45.384614], + [9.032822, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.389111], + [9.032822, 45.393608], + [9.037318, 45.393608], + [9.037318, 45.389111], + [9.032822, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.393608], + [9.032822, 45.398104], + [9.037318, 45.398104], + [9.037318, 45.393608], + [9.032822, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.398104], + [9.032822, 45.402601], + [9.037318, 45.402601], + [9.037318, 45.398104], + [9.032822, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.402601], + [9.032822, 45.407097], + [9.037318, 45.407097], + [9.037318, 45.402601], + [9.032822, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.407097], + [9.032822, 45.411594], + [9.037318, 45.411594], + [9.037318, 45.407097], + [9.032822, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.411594], + [9.032822, 45.416091], + [9.037318, 45.416091], + [9.037318, 45.411594], + [9.032822, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.416091], + [9.032822, 45.420587], + [9.037318, 45.420587], + [9.037318, 45.416091], + [9.032822, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.420587], + [9.032822, 45.425084], + [9.037318, 45.425084], + [9.037318, 45.420587], + [9.032822, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.425084], + [9.032822, 45.42958], + [9.037318, 45.42958], + [9.037318, 45.425084], + [9.032822, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.42958], + [9.032822, 45.434077], + [9.037318, 45.434077], + [9.037318, 45.42958], + [9.032822, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.434077], + [9.032822, 45.438574], + [9.037318, 45.438574], + [9.037318, 45.434077], + [9.032822, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.438574], + [9.032822, 45.44307], + [9.037318, 45.44307], + [9.037318, 45.438574], + [9.032822, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.44307], + [9.032822, 45.447567], + [9.037318, 45.447567], + [9.037318, 45.44307], + [9.032822, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.447567], + [9.032822, 45.452063], + [9.037318, 45.452063], + [9.037318, 45.447567], + [9.032822, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.452063], + [9.032822, 45.45656], + [9.037318, 45.45656], + [9.037318, 45.452063], + [9.032822, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.45656], + [9.032822, 45.461057], + [9.037318, 45.461057], + [9.037318, 45.45656], + [9.032822, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.461057], + [9.032822, 45.465553], + [9.037318, 45.465553], + [9.037318, 45.461057], + [9.032822, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.465553], + [9.032822, 45.47005], + [9.037318, 45.47005], + [9.037318, 45.465553], + [9.032822, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.47005], + [9.032822, 45.474547], + [9.037318, 45.474547], + [9.037318, 45.47005], + [9.032822, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.474547], + [9.032822, 45.479043], + [9.037318, 45.479043], + [9.037318, 45.474547], + [9.032822, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.479043], + [9.032822, 45.48354], + [9.037318, 45.48354], + [9.037318, 45.479043], + [9.032822, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.48354], + [9.032822, 45.488036], + [9.037318, 45.488036], + [9.037318, 45.48354], + [9.032822, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.488036], + [9.032822, 45.492533], + [9.037318, 45.492533], + [9.037318, 45.488036], + [9.032822, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.492533], + [9.032822, 45.49703], + [9.037318, 45.49703], + [9.037318, 45.492533], + [9.032822, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.49703], + [9.032822, 45.501526], + [9.037318, 45.501526], + [9.037318, 45.49703], + [9.032822, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.501526], + [9.032822, 45.506023], + [9.037318, 45.506023], + [9.037318, 45.501526], + [9.032822, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.506023], + [9.032822, 45.510519], + [9.037318, 45.510519], + [9.037318, 45.506023], + [9.032822, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.510519], + [9.032822, 45.515016], + [9.037318, 45.515016], + [9.037318, 45.510519], + [9.032822, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.515016], + [9.032822, 45.519513], + [9.037318, 45.519513], + [9.037318, 45.515016], + [9.032822, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.519513], + [9.032822, 45.524009], + [9.037318, 45.524009], + [9.037318, 45.519513], + [9.032822, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.524009], + [9.032822, 45.528506], + [9.037318, 45.528506], + [9.037318, 45.524009], + [9.032822, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.528506], + [9.032822, 45.533002], + [9.037318, 45.533002], + [9.037318, 45.528506], + [9.032822, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.533002], + [9.032822, 45.537499], + [9.037318, 45.537499], + [9.037318, 45.533002], + [9.032822, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.537499], + [9.032822, 45.541996], + [9.037318, 45.541996], + [9.037318, 45.537499], + [9.032822, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.541996], + [9.032822, 45.546492], + [9.037318, 45.546492], + [9.037318, 45.541996], + [9.032822, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.546492], + [9.032822, 45.550989], + [9.037318, 45.550989], + [9.037318, 45.546492], + [9.032822, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.550989], + [9.032822, 45.555485], + [9.037318, 45.555485], + [9.037318, 45.550989], + [9.032822, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.555485], + [9.032822, 45.559982], + [9.037318, 45.559982], + [9.037318, 45.555485], + [9.032822, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.559982], + [9.032822, 45.564479], + [9.037318, 45.564479], + [9.037318, 45.559982], + [9.032822, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.564479], + [9.032822, 45.568975], + [9.037318, 45.568975], + [9.037318, 45.564479], + [9.032822, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.568975], + [9.032822, 45.573472], + [9.037318, 45.573472], + [9.037318, 45.568975], + [9.032822, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.573472], + [9.032822, 45.577968], + [9.037318, 45.577968], + [9.037318, 45.573472], + [9.032822, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.577968], + [9.032822, 45.582465], + [9.037318, 45.582465], + [9.037318, 45.577968], + [9.032822, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.582465], + [9.032822, 45.586962], + [9.037318, 45.586962], + [9.037318, 45.582465], + [9.032822, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.586962], + [9.032822, 45.591458], + [9.037318, 45.591458], + [9.037318, 45.586962], + [9.032822, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.591458], + [9.032822, 45.595955], + [9.037318, 45.595955], + [9.037318, 45.591458], + [9.032822, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.595955], + [9.032822, 45.600451], + [9.037318, 45.600451], + [9.037318, 45.595955], + [9.032822, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.600451], + [9.032822, 45.604948], + [9.037318, 45.604948], + [9.037318, 45.600451], + [9.032822, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.604948], + [9.032822, 45.609445], + [9.037318, 45.609445], + [9.037318, 45.604948], + [9.032822, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.609445], + [9.032822, 45.613941], + [9.037318, 45.613941], + [9.037318, 45.609445], + [9.032822, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.613941], + [9.032822, 45.618438], + [9.037318, 45.618438], + [9.037318, 45.613941], + [9.032822, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.618438], + [9.032822, 45.622934], + [9.037318, 45.622934], + [9.037318, 45.618438], + [9.032822, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.622934], + [9.032822, 45.627431], + [9.037318, 45.627431], + [9.037318, 45.622934], + [9.032822, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.627431], + [9.032822, 45.631928], + [9.037318, 45.631928], + [9.037318, 45.627431], + [9.032822, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.631928], + [9.032822, 45.636424], + [9.037318, 45.636424], + [9.037318, 45.631928], + [9.032822, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.339648], + [9.037318, 45.344145], + [9.041815, 45.344145], + [9.041815, 45.339648], + [9.037318, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.344145], + [9.037318, 45.348642], + [9.041815, 45.348642], + [9.041815, 45.344145], + [9.037318, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.348642], + [9.037318, 45.353138], + [9.041815, 45.353138], + [9.041815, 45.348642], + [9.037318, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.353138], + [9.037318, 45.357635], + [9.041815, 45.357635], + [9.041815, 45.353138], + [9.037318, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.357635], + [9.037318, 45.362131], + [9.041815, 45.362131], + [9.041815, 45.357635], + [9.037318, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.362131], + [9.037318, 45.366628], + [9.041815, 45.366628], + [9.041815, 45.362131], + [9.037318, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.366628], + [9.037318, 45.371125], + [9.041815, 45.371125], + [9.041815, 45.366628], + [9.037318, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.371125], + [9.037318, 45.375621], + [9.041815, 45.375621], + [9.041815, 45.371125], + [9.037318, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.375621], + [9.037318, 45.380118], + [9.041815, 45.380118], + [9.041815, 45.375621], + [9.037318, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.380118], + [9.037318, 45.384614], + [9.041815, 45.384614], + [9.041815, 45.380118], + [9.037318, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.384614], + [9.037318, 45.389111], + [9.041815, 45.389111], + [9.041815, 45.384614], + [9.037318, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.389111], + [9.037318, 45.393608], + [9.041815, 45.393608], + [9.041815, 45.389111], + [9.037318, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.393608], + [9.037318, 45.398104], + [9.041815, 45.398104], + [9.041815, 45.393608], + [9.037318, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.398104], + [9.037318, 45.402601], + [9.041815, 45.402601], + [9.041815, 45.398104], + [9.037318, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.402601], + [9.037318, 45.407097], + [9.041815, 45.407097], + [9.041815, 45.402601], + [9.037318, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.407097], + [9.037318, 45.411594], + [9.041815, 45.411594], + [9.041815, 45.407097], + [9.037318, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.411594], + [9.037318, 45.416091], + [9.041815, 45.416091], + [9.041815, 45.411594], + [9.037318, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.416091], + [9.037318, 45.420587], + [9.041815, 45.420587], + [9.041815, 45.416091], + [9.037318, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.420587], + [9.037318, 45.425084], + [9.041815, 45.425084], + [9.041815, 45.420587], + [9.037318, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.425084], + [9.037318, 45.42958], + [9.041815, 45.42958], + [9.041815, 45.425084], + [9.037318, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.42958], + [9.037318, 45.434077], + [9.041815, 45.434077], + [9.041815, 45.42958], + [9.037318, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.434077], + [9.037318, 45.438574], + [9.041815, 45.438574], + [9.041815, 45.434077], + [9.037318, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.438574], + [9.037318, 45.44307], + [9.041815, 45.44307], + [9.041815, 45.438574], + [9.037318, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.44307], + [9.037318, 45.447567], + [9.041815, 45.447567], + [9.041815, 45.44307], + [9.037318, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.447567], + [9.037318, 45.452063], + [9.041815, 45.452063], + [9.041815, 45.447567], + [9.037318, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.452063], + [9.037318, 45.45656], + [9.041815, 45.45656], + [9.041815, 45.452063], + [9.037318, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.45656], + [9.037318, 45.461057], + [9.041815, 45.461057], + [9.041815, 45.45656], + [9.037318, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.461057], + [9.037318, 45.465553], + [9.041815, 45.465553], + [9.041815, 45.461057], + [9.037318, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.465553], + [9.037318, 45.47005], + [9.041815, 45.47005], + [9.041815, 45.465553], + [9.037318, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.47005], + [9.037318, 45.474547], + [9.041815, 45.474547], + [9.041815, 45.47005], + [9.037318, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.474547], + [9.037318, 45.479043], + [9.041815, 45.479043], + [9.041815, 45.474547], + [9.037318, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.479043], + [9.037318, 45.48354], + [9.041815, 45.48354], + [9.041815, 45.479043], + [9.037318, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.48354], + [9.037318, 45.488036], + [9.041815, 45.488036], + [9.041815, 45.48354], + [9.037318, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.488036], + [9.037318, 45.492533], + [9.041815, 45.492533], + [9.041815, 45.488036], + [9.037318, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.492533], + [9.037318, 45.49703], + [9.041815, 45.49703], + [9.041815, 45.492533], + [9.037318, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.49703], + [9.037318, 45.501526], + [9.041815, 45.501526], + [9.041815, 45.49703], + [9.037318, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.501526], + [9.037318, 45.506023], + [9.041815, 45.506023], + [9.041815, 45.501526], + [9.037318, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.506023], + [9.037318, 45.510519], + [9.041815, 45.510519], + [9.041815, 45.506023], + [9.037318, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.510519], + [9.037318, 45.515016], + [9.041815, 45.515016], + [9.041815, 45.510519], + [9.037318, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.515016], + [9.037318, 45.519513], + [9.041815, 45.519513], + [9.041815, 45.515016], + [9.037318, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.519513], + [9.037318, 45.524009], + [9.041815, 45.524009], + [9.041815, 45.519513], + [9.037318, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.524009], + [9.037318, 45.528506], + [9.041815, 45.528506], + [9.041815, 45.524009], + [9.037318, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.528506], + [9.037318, 45.533002], + [9.041815, 45.533002], + [9.041815, 45.528506], + [9.037318, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.533002], + [9.037318, 45.537499], + [9.041815, 45.537499], + [9.041815, 45.533002], + [9.037318, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.537499], + [9.037318, 45.541996], + [9.041815, 45.541996], + [9.041815, 45.537499], + [9.037318, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.541996], + [9.037318, 45.546492], + [9.041815, 45.546492], + [9.041815, 45.541996], + [9.037318, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.546492], + [9.037318, 45.550989], + [9.041815, 45.550989], + [9.041815, 45.546492], + [9.037318, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.550989], + [9.037318, 45.555485], + [9.041815, 45.555485], + [9.041815, 45.550989], + [9.037318, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.555485], + [9.037318, 45.559982], + [9.041815, 45.559982], + [9.041815, 45.555485], + [9.037318, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.559982], + [9.037318, 45.564479], + [9.041815, 45.564479], + [9.041815, 45.559982], + [9.037318, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.564479], + [9.037318, 45.568975], + [9.041815, 45.568975], + [9.041815, 45.564479], + [9.037318, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.568975], + [9.037318, 45.573472], + [9.041815, 45.573472], + [9.041815, 45.568975], + [9.037318, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.573472], + [9.037318, 45.577968], + [9.041815, 45.577968], + [9.041815, 45.573472], + [9.037318, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.577968], + [9.037318, 45.582465], + [9.041815, 45.582465], + [9.041815, 45.577968], + [9.037318, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.582465], + [9.037318, 45.586962], + [9.041815, 45.586962], + [9.041815, 45.582465], + [9.037318, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.586962], + [9.037318, 45.591458], + [9.041815, 45.591458], + [9.041815, 45.586962], + [9.037318, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.591458], + [9.037318, 45.595955], + [9.041815, 45.595955], + [9.041815, 45.591458], + [9.037318, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.595955], + [9.037318, 45.600451], + [9.041815, 45.600451], + [9.041815, 45.595955], + [9.037318, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.600451], + [9.037318, 45.604948], + [9.041815, 45.604948], + [9.041815, 45.600451], + [9.037318, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.604948], + [9.037318, 45.609445], + [9.041815, 45.609445], + [9.041815, 45.604948], + [9.037318, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.609445], + [9.037318, 45.613941], + [9.041815, 45.613941], + [9.041815, 45.609445], + [9.037318, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.613941], + [9.037318, 45.618438], + [9.041815, 45.618438], + [9.041815, 45.613941], + [9.037318, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.618438], + [9.037318, 45.622934], + [9.041815, 45.622934], + [9.041815, 45.618438], + [9.037318, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.622934], + [9.037318, 45.627431], + [9.041815, 45.627431], + [9.041815, 45.622934], + [9.037318, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.627431], + [9.037318, 45.631928], + [9.041815, 45.631928], + [9.041815, 45.627431], + [9.037318, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.631928], + [9.037318, 45.636424], + [9.041815, 45.636424], + [9.041815, 45.631928], + [9.037318, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.339648], + [9.041815, 45.344145], + [9.046312, 45.344145], + [9.046312, 45.339648], + [9.041815, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.344145], + [9.041815, 45.348642], + [9.046312, 45.348642], + [9.046312, 45.344145], + [9.041815, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.348642], + [9.041815, 45.353138], + [9.046312, 45.353138], + [9.046312, 45.348642], + [9.041815, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.353138], + [9.041815, 45.357635], + [9.046312, 45.357635], + [9.046312, 45.353138], + [9.041815, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.357635], + [9.041815, 45.362131], + [9.046312, 45.362131], + [9.046312, 45.357635], + [9.041815, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.362131], + [9.041815, 45.366628], + [9.046312, 45.366628], + [9.046312, 45.362131], + [9.041815, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.366628], + [9.041815, 45.371125], + [9.046312, 45.371125], + [9.046312, 45.366628], + [9.041815, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.371125], + [9.041815, 45.375621], + [9.046312, 45.375621], + [9.046312, 45.371125], + [9.041815, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.375621], + [9.041815, 45.380118], + [9.046312, 45.380118], + [9.046312, 45.375621], + [9.041815, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.380118], + [9.041815, 45.384614], + [9.046312, 45.384614], + [9.046312, 45.380118], + [9.041815, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.384614], + [9.041815, 45.389111], + [9.046312, 45.389111], + [9.046312, 45.384614], + [9.041815, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.389111], + [9.041815, 45.393608], + [9.046312, 45.393608], + [9.046312, 45.389111], + [9.041815, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.393608], + [9.041815, 45.398104], + [9.046312, 45.398104], + [9.046312, 45.393608], + [9.041815, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.398104], + [9.041815, 45.402601], + [9.046312, 45.402601], + [9.046312, 45.398104], + [9.041815, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.402601], + [9.041815, 45.407097], + [9.046312, 45.407097], + [9.046312, 45.402601], + [9.041815, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.407097], + [9.041815, 45.411594], + [9.046312, 45.411594], + [9.046312, 45.407097], + [9.041815, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.411594], + [9.041815, 45.416091], + [9.046312, 45.416091], + [9.046312, 45.411594], + [9.041815, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.416091], + [9.041815, 45.420587], + [9.046312, 45.420587], + [9.046312, 45.416091], + [9.041815, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.420587], + [9.041815, 45.425084], + [9.046312, 45.425084], + [9.046312, 45.420587], + [9.041815, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.425084], + [9.041815, 45.42958], + [9.046312, 45.42958], + [9.046312, 45.425084], + [9.041815, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.42958], + [9.041815, 45.434077], + [9.046312, 45.434077], + [9.046312, 45.42958], + [9.041815, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.434077], + [9.041815, 45.438574], + [9.046312, 45.438574], + [9.046312, 45.434077], + [9.041815, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.438574], + [9.041815, 45.44307], + [9.046312, 45.44307], + [9.046312, 45.438574], + [9.041815, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.44307], + [9.041815, 45.447567], + [9.046312, 45.447567], + [9.046312, 45.44307], + [9.041815, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.447567], + [9.041815, 45.452063], + [9.046312, 45.452063], + [9.046312, 45.447567], + [9.041815, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.452063], + [9.041815, 45.45656], + [9.046312, 45.45656], + [9.046312, 45.452063], + [9.041815, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.45656], + [9.041815, 45.461057], + [9.046312, 45.461057], + [9.046312, 45.45656], + [9.041815, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.461057], + [9.041815, 45.465553], + [9.046312, 45.465553], + [9.046312, 45.461057], + [9.041815, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.465553], + [9.041815, 45.47005], + [9.046312, 45.47005], + [9.046312, 45.465553], + [9.041815, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.47005], + [9.041815, 45.474547], + [9.046312, 45.474547], + [9.046312, 45.47005], + [9.041815, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.474547], + [9.041815, 45.479043], + [9.046312, 45.479043], + [9.046312, 45.474547], + [9.041815, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.479043], + [9.041815, 45.48354], + [9.046312, 45.48354], + [9.046312, 45.479043], + [9.041815, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.48354], + [9.041815, 45.488036], + [9.046312, 45.488036], + [9.046312, 45.48354], + [9.041815, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.488036], + [9.041815, 45.492533], + [9.046312, 45.492533], + [9.046312, 45.488036], + [9.041815, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.492533], + [9.041815, 45.49703], + [9.046312, 45.49703], + [9.046312, 45.492533], + [9.041815, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.49703], + [9.041815, 45.501526], + [9.046312, 45.501526], + [9.046312, 45.49703], + [9.041815, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.501526], + [9.041815, 45.506023], + [9.046312, 45.506023], + [9.046312, 45.501526], + [9.041815, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.506023], + [9.041815, 45.510519], + [9.046312, 45.510519], + [9.046312, 45.506023], + [9.041815, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.510519], + [9.041815, 45.515016], + [9.046312, 45.515016], + [9.046312, 45.510519], + [9.041815, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.515016], + [9.041815, 45.519513], + [9.046312, 45.519513], + [9.046312, 45.515016], + [9.041815, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.519513], + [9.041815, 45.524009], + [9.046312, 45.524009], + [9.046312, 45.519513], + [9.041815, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.524009], + [9.041815, 45.528506], + [9.046312, 45.528506], + [9.046312, 45.524009], + [9.041815, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.528506], + [9.041815, 45.533002], + [9.046312, 45.533002], + [9.046312, 45.528506], + [9.041815, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.533002], + [9.041815, 45.537499], + [9.046312, 45.537499], + [9.046312, 45.533002], + [9.041815, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.537499], + [9.041815, 45.541996], + [9.046312, 45.541996], + [9.046312, 45.537499], + [9.041815, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.541996], + [9.041815, 45.546492], + [9.046312, 45.546492], + [9.046312, 45.541996], + [9.041815, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.546492], + [9.041815, 45.550989], + [9.046312, 45.550989], + [9.046312, 45.546492], + [9.041815, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.550989], + [9.041815, 45.555485], + [9.046312, 45.555485], + [9.046312, 45.550989], + [9.041815, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.555485], + [9.041815, 45.559982], + [9.046312, 45.559982], + [9.046312, 45.555485], + [9.041815, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.559982], + [9.041815, 45.564479], + [9.046312, 45.564479], + [9.046312, 45.559982], + [9.041815, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.564479], + [9.041815, 45.568975], + [9.046312, 45.568975], + [9.046312, 45.564479], + [9.041815, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.568975], + [9.041815, 45.573472], + [9.046312, 45.573472], + [9.046312, 45.568975], + [9.041815, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.573472], + [9.041815, 45.577968], + [9.046312, 45.577968], + [9.046312, 45.573472], + [9.041815, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.577968], + [9.041815, 45.582465], + [9.046312, 45.582465], + [9.046312, 45.577968], + [9.041815, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.582465], + [9.041815, 45.586962], + [9.046312, 45.586962], + [9.046312, 45.582465], + [9.041815, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.586962], + [9.041815, 45.591458], + [9.046312, 45.591458], + [9.046312, 45.586962], + [9.041815, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.591458], + [9.041815, 45.595955], + [9.046312, 45.595955], + [9.046312, 45.591458], + [9.041815, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.595955], + [9.041815, 45.600451], + [9.046312, 45.600451], + [9.046312, 45.595955], + [9.041815, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.600451], + [9.041815, 45.604948], + [9.046312, 45.604948], + [9.046312, 45.600451], + [9.041815, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.604948], + [9.041815, 45.609445], + [9.046312, 45.609445], + [9.046312, 45.604948], + [9.041815, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.609445], + [9.041815, 45.613941], + [9.046312, 45.613941], + [9.046312, 45.609445], + [9.041815, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.613941], + [9.041815, 45.618438], + [9.046312, 45.618438], + [9.046312, 45.613941], + [9.041815, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.618438], + [9.041815, 45.622934], + [9.046312, 45.622934], + [9.046312, 45.618438], + [9.041815, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.622934], + [9.041815, 45.627431], + [9.046312, 45.627431], + [9.046312, 45.622934], + [9.041815, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.627431], + [9.041815, 45.631928], + [9.046312, 45.631928], + [9.046312, 45.627431], + [9.041815, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.631928], + [9.041815, 45.636424], + [9.046312, 45.636424], + [9.046312, 45.631928], + [9.041815, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.339648], + [9.046312, 45.344145], + [9.050808, 45.344145], + [9.050808, 45.339648], + [9.046312, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.344145], + [9.046312, 45.348642], + [9.050808, 45.348642], + [9.050808, 45.344145], + [9.046312, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.348642], + [9.046312, 45.353138], + [9.050808, 45.353138], + [9.050808, 45.348642], + [9.046312, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.353138], + [9.046312, 45.357635], + [9.050808, 45.357635], + [9.050808, 45.353138], + [9.046312, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.357635], + [9.046312, 45.362131], + [9.050808, 45.362131], + [9.050808, 45.357635], + [9.046312, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.362131], + [9.046312, 45.366628], + [9.050808, 45.366628], + [9.050808, 45.362131], + [9.046312, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.366628], + [9.046312, 45.371125], + [9.050808, 45.371125], + [9.050808, 45.366628], + [9.046312, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.371125], + [9.046312, 45.375621], + [9.050808, 45.375621], + [9.050808, 45.371125], + [9.046312, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.375621], + [9.046312, 45.380118], + [9.050808, 45.380118], + [9.050808, 45.375621], + [9.046312, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.380118], + [9.046312, 45.384614], + [9.050808, 45.384614], + [9.050808, 45.380118], + [9.046312, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.384614], + [9.046312, 45.389111], + [9.050808, 45.389111], + [9.050808, 45.384614], + [9.046312, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.389111], + [9.046312, 45.393608], + [9.050808, 45.393608], + [9.050808, 45.389111], + [9.046312, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.393608], + [9.046312, 45.398104], + [9.050808, 45.398104], + [9.050808, 45.393608], + [9.046312, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.398104], + [9.046312, 45.402601], + [9.050808, 45.402601], + [9.050808, 45.398104], + [9.046312, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.402601], + [9.046312, 45.407097], + [9.050808, 45.407097], + [9.050808, 45.402601], + [9.046312, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.407097], + [9.046312, 45.411594], + [9.050808, 45.411594], + [9.050808, 45.407097], + [9.046312, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.411594], + [9.046312, 45.416091], + [9.050808, 45.416091], + [9.050808, 45.411594], + [9.046312, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.416091], + [9.046312, 45.420587], + [9.050808, 45.420587], + [9.050808, 45.416091], + [9.046312, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.420587], + [9.046312, 45.425084], + [9.050808, 45.425084], + [9.050808, 45.420587], + [9.046312, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.425084], + [9.046312, 45.42958], + [9.050808, 45.42958], + [9.050808, 45.425084], + [9.046312, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.42958], + [9.046312, 45.434077], + [9.050808, 45.434077], + [9.050808, 45.42958], + [9.046312, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.434077], + [9.046312, 45.438574], + [9.050808, 45.438574], + [9.050808, 45.434077], + [9.046312, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.438574], + [9.046312, 45.44307], + [9.050808, 45.44307], + [9.050808, 45.438574], + [9.046312, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.44307], + [9.046312, 45.447567], + [9.050808, 45.447567], + [9.050808, 45.44307], + [9.046312, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.447567], + [9.046312, 45.452063], + [9.050808, 45.452063], + [9.050808, 45.447567], + [9.046312, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.452063], + [9.046312, 45.45656], + [9.050808, 45.45656], + [9.050808, 45.452063], + [9.046312, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.45656], + [9.046312, 45.461057], + [9.050808, 45.461057], + [9.050808, 45.45656], + [9.046312, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.461057], + [9.046312, 45.465553], + [9.050808, 45.465553], + [9.050808, 45.461057], + [9.046312, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.465553], + [9.046312, 45.47005], + [9.050808, 45.47005], + [9.050808, 45.465553], + [9.046312, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.47005], + [9.046312, 45.474547], + [9.050808, 45.474547], + [9.050808, 45.47005], + [9.046312, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.474547], + [9.046312, 45.479043], + [9.050808, 45.479043], + [9.050808, 45.474547], + [9.046312, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.479043], + [9.046312, 45.48354], + [9.050808, 45.48354], + [9.050808, 45.479043], + [9.046312, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.48354], + [9.046312, 45.488036], + [9.050808, 45.488036], + [9.050808, 45.48354], + [9.046312, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.488036], + [9.046312, 45.492533], + [9.050808, 45.492533], + [9.050808, 45.488036], + [9.046312, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.492533], + [9.046312, 45.49703], + [9.050808, 45.49703], + [9.050808, 45.492533], + [9.046312, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.49703], + [9.046312, 45.501526], + [9.050808, 45.501526], + [9.050808, 45.49703], + [9.046312, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.501526], + [9.046312, 45.506023], + [9.050808, 45.506023], + [9.050808, 45.501526], + [9.046312, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.506023], + [9.046312, 45.510519], + [9.050808, 45.510519], + [9.050808, 45.506023], + [9.046312, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.510519], + [9.046312, 45.515016], + [9.050808, 45.515016], + [9.050808, 45.510519], + [9.046312, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.515016], + [9.046312, 45.519513], + [9.050808, 45.519513], + [9.050808, 45.515016], + [9.046312, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.519513], + [9.046312, 45.524009], + [9.050808, 45.524009], + [9.050808, 45.519513], + [9.046312, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.524009], + [9.046312, 45.528506], + [9.050808, 45.528506], + [9.050808, 45.524009], + [9.046312, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.528506], + [9.046312, 45.533002], + [9.050808, 45.533002], + [9.050808, 45.528506], + [9.046312, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.533002], + [9.046312, 45.537499], + [9.050808, 45.537499], + [9.050808, 45.533002], + [9.046312, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.537499], + [9.046312, 45.541996], + [9.050808, 45.541996], + [9.050808, 45.537499], + [9.046312, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.541996], + [9.046312, 45.546492], + [9.050808, 45.546492], + [9.050808, 45.541996], + [9.046312, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.546492], + [9.046312, 45.550989], + [9.050808, 45.550989], + [9.050808, 45.546492], + [9.046312, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.550989], + [9.046312, 45.555485], + [9.050808, 45.555485], + [9.050808, 45.550989], + [9.046312, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.555485], + [9.046312, 45.559982], + [9.050808, 45.559982], + [9.050808, 45.555485], + [9.046312, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.559982], + [9.046312, 45.564479], + [9.050808, 45.564479], + [9.050808, 45.559982], + [9.046312, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.564479], + [9.046312, 45.568975], + [9.050808, 45.568975], + [9.050808, 45.564479], + [9.046312, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.568975], + [9.046312, 45.573472], + [9.050808, 45.573472], + [9.050808, 45.568975], + [9.046312, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.573472], + [9.046312, 45.577968], + [9.050808, 45.577968], + [9.050808, 45.573472], + [9.046312, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.577968], + [9.046312, 45.582465], + [9.050808, 45.582465], + [9.050808, 45.577968], + [9.046312, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.582465], + [9.046312, 45.586962], + [9.050808, 45.586962], + [9.050808, 45.582465], + [9.046312, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.586962], + [9.046312, 45.591458], + [9.050808, 45.591458], + [9.050808, 45.586962], + [9.046312, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.591458], + [9.046312, 45.595955], + [9.050808, 45.595955], + [9.050808, 45.591458], + [9.046312, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.595955], + [9.046312, 45.600451], + [9.050808, 45.600451], + [9.050808, 45.595955], + [9.046312, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.600451], + [9.046312, 45.604948], + [9.050808, 45.604948], + [9.050808, 45.600451], + [9.046312, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.604948], + [9.046312, 45.609445], + [9.050808, 45.609445], + [9.050808, 45.604948], + [9.046312, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.609445], + [9.046312, 45.613941], + [9.050808, 45.613941], + [9.050808, 45.609445], + [9.046312, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.613941], + [9.046312, 45.618438], + [9.050808, 45.618438], + [9.050808, 45.613941], + [9.046312, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.618438], + [9.046312, 45.622934], + [9.050808, 45.622934], + [9.050808, 45.618438], + [9.046312, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.622934], + [9.046312, 45.627431], + [9.050808, 45.627431], + [9.050808, 45.622934], + [9.046312, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.627431], + [9.046312, 45.631928], + [9.050808, 45.631928], + [9.050808, 45.627431], + [9.046312, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.631928], + [9.046312, 45.636424], + [9.050808, 45.636424], + [9.050808, 45.631928], + [9.046312, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.339648], + [9.050808, 45.344145], + [9.055305, 45.344145], + [9.055305, 45.339648], + [9.050808, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.344145], + [9.050808, 45.348642], + [9.055305, 45.348642], + [9.055305, 45.344145], + [9.050808, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.348642], + [9.050808, 45.353138], + [9.055305, 45.353138], + [9.055305, 45.348642], + [9.050808, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.353138], + [9.050808, 45.357635], + [9.055305, 45.357635], + [9.055305, 45.353138], + [9.050808, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.357635], + [9.050808, 45.362131], + [9.055305, 45.362131], + [9.055305, 45.357635], + [9.050808, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.362131], + [9.050808, 45.366628], + [9.055305, 45.366628], + [9.055305, 45.362131], + [9.050808, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.366628], + [9.050808, 45.371125], + [9.055305, 45.371125], + [9.055305, 45.366628], + [9.050808, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.371125], + [9.050808, 45.375621], + [9.055305, 45.375621], + [9.055305, 45.371125], + [9.050808, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.375621], + [9.050808, 45.380118], + [9.055305, 45.380118], + [9.055305, 45.375621], + [9.050808, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.380118], + [9.050808, 45.384614], + [9.055305, 45.384614], + [9.055305, 45.380118], + [9.050808, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.384614], + [9.050808, 45.389111], + [9.055305, 45.389111], + [9.055305, 45.384614], + [9.050808, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.389111], + [9.050808, 45.393608], + [9.055305, 45.393608], + [9.055305, 45.389111], + [9.050808, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.393608], + [9.050808, 45.398104], + [9.055305, 45.398104], + [9.055305, 45.393608], + [9.050808, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.398104], + [9.050808, 45.402601], + [9.055305, 45.402601], + [9.055305, 45.398104], + [9.050808, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.402601], + [9.050808, 45.407097], + [9.055305, 45.407097], + [9.055305, 45.402601], + [9.050808, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.407097], + [9.050808, 45.411594], + [9.055305, 45.411594], + [9.055305, 45.407097], + [9.050808, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.411594], + [9.050808, 45.416091], + [9.055305, 45.416091], + [9.055305, 45.411594], + [9.050808, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.416091], + [9.050808, 45.420587], + [9.055305, 45.420587], + [9.055305, 45.416091], + [9.050808, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.420587], + [9.050808, 45.425084], + [9.055305, 45.425084], + [9.055305, 45.420587], + [9.050808, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.425084], + [9.050808, 45.42958], + [9.055305, 45.42958], + [9.055305, 45.425084], + [9.050808, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.42958], + [9.050808, 45.434077], + [9.055305, 45.434077], + [9.055305, 45.42958], + [9.050808, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.434077], + [9.050808, 45.438574], + [9.055305, 45.438574], + [9.055305, 45.434077], + [9.050808, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.438574], + [9.050808, 45.44307], + [9.055305, 45.44307], + [9.055305, 45.438574], + [9.050808, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.44307], + [9.050808, 45.447567], + [9.055305, 45.447567], + [9.055305, 45.44307], + [9.050808, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.447567], + [9.050808, 45.452063], + [9.055305, 45.452063], + [9.055305, 45.447567], + [9.050808, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.452063], + [9.050808, 45.45656], + [9.055305, 45.45656], + [9.055305, 45.452063], + [9.050808, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.45656], + [9.050808, 45.461057], + [9.055305, 45.461057], + [9.055305, 45.45656], + [9.050808, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.461057], + [9.050808, 45.465553], + [9.055305, 45.465553], + [9.055305, 45.461057], + [9.050808, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.465553], + [9.050808, 45.47005], + [9.055305, 45.47005], + [9.055305, 45.465553], + [9.050808, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.47005], + [9.050808, 45.474547], + [9.055305, 45.474547], + [9.055305, 45.47005], + [9.050808, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.474547], + [9.050808, 45.479043], + [9.055305, 45.479043], + [9.055305, 45.474547], + [9.050808, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.479043], + [9.050808, 45.48354], + [9.055305, 45.48354], + [9.055305, 45.479043], + [9.050808, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.48354], + [9.050808, 45.488036], + [9.055305, 45.488036], + [9.055305, 45.48354], + [9.050808, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.488036], + [9.050808, 45.492533], + [9.055305, 45.492533], + [9.055305, 45.488036], + [9.050808, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.492533], + [9.050808, 45.49703], + [9.055305, 45.49703], + [9.055305, 45.492533], + [9.050808, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.49703], + [9.050808, 45.501526], + [9.055305, 45.501526], + [9.055305, 45.49703], + [9.050808, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.501526], + [9.050808, 45.506023], + [9.055305, 45.506023], + [9.055305, 45.501526], + [9.050808, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.506023], + [9.050808, 45.510519], + [9.055305, 45.510519], + [9.055305, 45.506023], + [9.050808, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.510519], + [9.050808, 45.515016], + [9.055305, 45.515016], + [9.055305, 45.510519], + [9.050808, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.515016], + [9.050808, 45.519513], + [9.055305, 45.519513], + [9.055305, 45.515016], + [9.050808, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.519513], + [9.050808, 45.524009], + [9.055305, 45.524009], + [9.055305, 45.519513], + [9.050808, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.524009], + [9.050808, 45.528506], + [9.055305, 45.528506], + [9.055305, 45.524009], + [9.050808, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.528506], + [9.050808, 45.533002], + [9.055305, 45.533002], + [9.055305, 45.528506], + [9.050808, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.533002], + [9.050808, 45.537499], + [9.055305, 45.537499], + [9.055305, 45.533002], + [9.050808, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.537499], + [9.050808, 45.541996], + [9.055305, 45.541996], + [9.055305, 45.537499], + [9.050808, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.541996], + [9.050808, 45.546492], + [9.055305, 45.546492], + [9.055305, 45.541996], + [9.050808, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.546492], + [9.050808, 45.550989], + [9.055305, 45.550989], + [9.055305, 45.546492], + [9.050808, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.550989], + [9.050808, 45.555485], + [9.055305, 45.555485], + [9.055305, 45.550989], + [9.050808, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.555485], + [9.050808, 45.559982], + [9.055305, 45.559982], + [9.055305, 45.555485], + [9.050808, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.559982], + [9.050808, 45.564479], + [9.055305, 45.564479], + [9.055305, 45.559982], + [9.050808, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.564479], + [9.050808, 45.568975], + [9.055305, 45.568975], + [9.055305, 45.564479], + [9.050808, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.568975], + [9.050808, 45.573472], + [9.055305, 45.573472], + [9.055305, 45.568975], + [9.050808, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.573472], + [9.050808, 45.577968], + [9.055305, 45.577968], + [9.055305, 45.573472], + [9.050808, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.577968], + [9.050808, 45.582465], + [9.055305, 45.582465], + [9.055305, 45.577968], + [9.050808, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.582465], + [9.050808, 45.586962], + [9.055305, 45.586962], + [9.055305, 45.582465], + [9.050808, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.586962], + [9.050808, 45.591458], + [9.055305, 45.591458], + [9.055305, 45.586962], + [9.050808, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.591458], + [9.050808, 45.595955], + [9.055305, 45.595955], + [9.055305, 45.591458], + [9.050808, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.595955], + [9.050808, 45.600451], + [9.055305, 45.600451], + [9.055305, 45.595955], + [9.050808, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.600451], + [9.050808, 45.604948], + [9.055305, 45.604948], + [9.055305, 45.600451], + [9.050808, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.604948], + [9.050808, 45.609445], + [9.055305, 45.609445], + [9.055305, 45.604948], + [9.050808, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.609445], + [9.050808, 45.613941], + [9.055305, 45.613941], + [9.055305, 45.609445], + [9.050808, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.613941], + [9.050808, 45.618438], + [9.055305, 45.618438], + [9.055305, 45.613941], + [9.050808, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.618438], + [9.050808, 45.622934], + [9.055305, 45.622934], + [9.055305, 45.618438], + [9.050808, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.622934], + [9.050808, 45.627431], + [9.055305, 45.627431], + [9.055305, 45.622934], + [9.050808, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.627431], + [9.050808, 45.631928], + [9.055305, 45.631928], + [9.055305, 45.627431], + [9.050808, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.631928], + [9.050808, 45.636424], + [9.055305, 45.636424], + [9.055305, 45.631928], + [9.050808, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.339648], + [9.055305, 45.344145], + [9.059801, 45.344145], + [9.059801, 45.339648], + [9.055305, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.344145], + [9.055305, 45.348642], + [9.059801, 45.348642], + [9.059801, 45.344145], + [9.055305, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.348642], + [9.055305, 45.353138], + [9.059801, 45.353138], + [9.059801, 45.348642], + [9.055305, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.353138], + [9.055305, 45.357635], + [9.059801, 45.357635], + [9.059801, 45.353138], + [9.055305, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.357635], + [9.055305, 45.362131], + [9.059801, 45.362131], + [9.059801, 45.357635], + [9.055305, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.362131], + [9.055305, 45.366628], + [9.059801, 45.366628], + [9.059801, 45.362131], + [9.055305, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.366628], + [9.055305, 45.371125], + [9.059801, 45.371125], + [9.059801, 45.366628], + [9.055305, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.371125], + [9.055305, 45.375621], + [9.059801, 45.375621], + [9.059801, 45.371125], + [9.055305, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.375621], + [9.055305, 45.380118], + [9.059801, 45.380118], + [9.059801, 45.375621], + [9.055305, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.380118], + [9.055305, 45.384614], + [9.059801, 45.384614], + [9.059801, 45.380118], + [9.055305, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.384614], + [9.055305, 45.389111], + [9.059801, 45.389111], + [9.059801, 45.384614], + [9.055305, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.389111], + [9.055305, 45.393608], + [9.059801, 45.393608], + [9.059801, 45.389111], + [9.055305, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.393608], + [9.055305, 45.398104], + [9.059801, 45.398104], + [9.059801, 45.393608], + [9.055305, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.398104], + [9.055305, 45.402601], + [9.059801, 45.402601], + [9.059801, 45.398104], + [9.055305, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.402601], + [9.055305, 45.407097], + [9.059801, 45.407097], + [9.059801, 45.402601], + [9.055305, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.407097], + [9.055305, 45.411594], + [9.059801, 45.411594], + [9.059801, 45.407097], + [9.055305, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.411594], + [9.055305, 45.416091], + [9.059801, 45.416091], + [9.059801, 45.411594], + [9.055305, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.416091], + [9.055305, 45.420587], + [9.059801, 45.420587], + [9.059801, 45.416091], + [9.055305, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.420587], + [9.055305, 45.425084], + [9.059801, 45.425084], + [9.059801, 45.420587], + [9.055305, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.425084], + [9.055305, 45.42958], + [9.059801, 45.42958], + [9.059801, 45.425084], + [9.055305, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.42958], + [9.055305, 45.434077], + [9.059801, 45.434077], + [9.059801, 45.42958], + [9.055305, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.434077], + [9.055305, 45.438574], + [9.059801, 45.438574], + [9.059801, 45.434077], + [9.055305, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.438574], + [9.055305, 45.44307], + [9.059801, 45.44307], + [9.059801, 45.438574], + [9.055305, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.44307], + [9.055305, 45.447567], + [9.059801, 45.447567], + [9.059801, 45.44307], + [9.055305, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.447567], + [9.055305, 45.452063], + [9.059801, 45.452063], + [9.059801, 45.447567], + [9.055305, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.452063], + [9.055305, 45.45656], + [9.059801, 45.45656], + [9.059801, 45.452063], + [9.055305, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.45656], + [9.055305, 45.461057], + [9.059801, 45.461057], + [9.059801, 45.45656], + [9.055305, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.461057], + [9.055305, 45.465553], + [9.059801, 45.465553], + [9.059801, 45.461057], + [9.055305, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.465553], + [9.055305, 45.47005], + [9.059801, 45.47005], + [9.059801, 45.465553], + [9.055305, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.47005], + [9.055305, 45.474547], + [9.059801, 45.474547], + [9.059801, 45.47005], + [9.055305, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.474547], + [9.055305, 45.479043], + [9.059801, 45.479043], + [9.059801, 45.474547], + [9.055305, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.479043], + [9.055305, 45.48354], + [9.059801, 45.48354], + [9.059801, 45.479043], + [9.055305, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.48354], + [9.055305, 45.488036], + [9.059801, 45.488036], + [9.059801, 45.48354], + [9.055305, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.488036], + [9.055305, 45.492533], + [9.059801, 45.492533], + [9.059801, 45.488036], + [9.055305, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.492533], + [9.055305, 45.49703], + [9.059801, 45.49703], + [9.059801, 45.492533], + [9.055305, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.49703], + [9.055305, 45.501526], + [9.059801, 45.501526], + [9.059801, 45.49703], + [9.055305, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.501526], + [9.055305, 45.506023], + [9.059801, 45.506023], + [9.059801, 45.501526], + [9.055305, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.506023], + [9.055305, 45.510519], + [9.059801, 45.510519], + [9.059801, 45.506023], + [9.055305, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.510519], + [9.055305, 45.515016], + [9.059801, 45.515016], + [9.059801, 45.510519], + [9.055305, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.515016], + [9.055305, 45.519513], + [9.059801, 45.519513], + [9.059801, 45.515016], + [9.055305, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.519513], + [9.055305, 45.524009], + [9.059801, 45.524009], + [9.059801, 45.519513], + [9.055305, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.524009], + [9.055305, 45.528506], + [9.059801, 45.528506], + [9.059801, 45.524009], + [9.055305, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.528506], + [9.055305, 45.533002], + [9.059801, 45.533002], + [9.059801, 45.528506], + [9.055305, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.533002], + [9.055305, 45.537499], + [9.059801, 45.537499], + [9.059801, 45.533002], + [9.055305, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.537499], + [9.055305, 45.541996], + [9.059801, 45.541996], + [9.059801, 45.537499], + [9.055305, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.541996], + [9.055305, 45.546492], + [9.059801, 45.546492], + [9.059801, 45.541996], + [9.055305, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.546492], + [9.055305, 45.550989], + [9.059801, 45.550989], + [9.059801, 45.546492], + [9.055305, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.550989], + [9.055305, 45.555485], + [9.059801, 45.555485], + [9.059801, 45.550989], + [9.055305, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.555485], + [9.055305, 45.559982], + [9.059801, 45.559982], + [9.059801, 45.555485], + [9.055305, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.559982], + [9.055305, 45.564479], + [9.059801, 45.564479], + [9.059801, 45.559982], + [9.055305, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.564479], + [9.055305, 45.568975], + [9.059801, 45.568975], + [9.059801, 45.564479], + [9.055305, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.568975], + [9.055305, 45.573472], + [9.059801, 45.573472], + [9.059801, 45.568975], + [9.055305, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.573472], + [9.055305, 45.577968], + [9.059801, 45.577968], + [9.059801, 45.573472], + [9.055305, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.577968], + [9.055305, 45.582465], + [9.059801, 45.582465], + [9.059801, 45.577968], + [9.055305, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.582465], + [9.055305, 45.586962], + [9.059801, 45.586962], + [9.059801, 45.582465], + [9.055305, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.586962], + [9.055305, 45.591458], + [9.059801, 45.591458], + [9.059801, 45.586962], + [9.055305, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.591458], + [9.055305, 45.595955], + [9.059801, 45.595955], + [9.059801, 45.591458], + [9.055305, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.595955], + [9.055305, 45.600451], + [9.059801, 45.600451], + [9.059801, 45.595955], + [9.055305, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.600451], + [9.055305, 45.604948], + [9.059801, 45.604948], + [9.059801, 45.600451], + [9.055305, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.604948], + [9.055305, 45.609445], + [9.059801, 45.609445], + [9.059801, 45.604948], + [9.055305, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.609445], + [9.055305, 45.613941], + [9.059801, 45.613941], + [9.059801, 45.609445], + [9.055305, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.613941], + [9.055305, 45.618438], + [9.059801, 45.618438], + [9.059801, 45.613941], + [9.055305, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.618438], + [9.055305, 45.622934], + [9.059801, 45.622934], + [9.059801, 45.618438], + [9.055305, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.622934], + [9.055305, 45.627431], + [9.059801, 45.627431], + [9.059801, 45.622934], + [9.055305, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.627431], + [9.055305, 45.631928], + [9.059801, 45.631928], + [9.059801, 45.627431], + [9.055305, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.631928], + [9.055305, 45.636424], + [9.059801, 45.636424], + [9.059801, 45.631928], + [9.055305, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.339648], + [9.059801, 45.344145], + [9.064298, 45.344145], + [9.064298, 45.339648], + [9.059801, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.344145], + [9.059801, 45.348642], + [9.064298, 45.348642], + [9.064298, 45.344145], + [9.059801, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.348642], + [9.059801, 45.353138], + [9.064298, 45.353138], + [9.064298, 45.348642], + [9.059801, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.353138], + [9.059801, 45.357635], + [9.064298, 45.357635], + [9.064298, 45.353138], + [9.059801, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.357635], + [9.059801, 45.362131], + [9.064298, 45.362131], + [9.064298, 45.357635], + [9.059801, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.362131], + [9.059801, 45.366628], + [9.064298, 45.366628], + [9.064298, 45.362131], + [9.059801, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.366628], + [9.059801, 45.371125], + [9.064298, 45.371125], + [9.064298, 45.366628], + [9.059801, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.371125], + [9.059801, 45.375621], + [9.064298, 45.375621], + [9.064298, 45.371125], + [9.059801, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.375621], + [9.059801, 45.380118], + [9.064298, 45.380118], + [9.064298, 45.375621], + [9.059801, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.380118], + [9.059801, 45.384614], + [9.064298, 45.384614], + [9.064298, 45.380118], + [9.059801, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.384614], + [9.059801, 45.389111], + [9.064298, 45.389111], + [9.064298, 45.384614], + [9.059801, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.389111], + [9.059801, 45.393608], + [9.064298, 45.393608], + [9.064298, 45.389111], + [9.059801, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.393608], + [9.059801, 45.398104], + [9.064298, 45.398104], + [9.064298, 45.393608], + [9.059801, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.398104], + [9.059801, 45.402601], + [9.064298, 45.402601], + [9.064298, 45.398104], + [9.059801, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.402601], + [9.059801, 45.407097], + [9.064298, 45.407097], + [9.064298, 45.402601], + [9.059801, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.407097], + [9.059801, 45.411594], + [9.064298, 45.411594], + [9.064298, 45.407097], + [9.059801, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.411594], + [9.059801, 45.416091], + [9.064298, 45.416091], + [9.064298, 45.411594], + [9.059801, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.416091], + [9.059801, 45.420587], + [9.064298, 45.420587], + [9.064298, 45.416091], + [9.059801, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.420587], + [9.059801, 45.425084], + [9.064298, 45.425084], + [9.064298, 45.420587], + [9.059801, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.425084], + [9.059801, 45.42958], + [9.064298, 45.42958], + [9.064298, 45.425084], + [9.059801, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.42958], + [9.059801, 45.434077], + [9.064298, 45.434077], + [9.064298, 45.42958], + [9.059801, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.434077], + [9.059801, 45.438574], + [9.064298, 45.438574], + [9.064298, 45.434077], + [9.059801, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.438574], + [9.059801, 45.44307], + [9.064298, 45.44307], + [9.064298, 45.438574], + [9.059801, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.44307], + [9.059801, 45.447567], + [9.064298, 45.447567], + [9.064298, 45.44307], + [9.059801, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.447567], + [9.059801, 45.452063], + [9.064298, 45.452063], + [9.064298, 45.447567], + [9.059801, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.452063], + [9.059801, 45.45656], + [9.064298, 45.45656], + [9.064298, 45.452063], + [9.059801, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.45656], + [9.059801, 45.461057], + [9.064298, 45.461057], + [9.064298, 45.45656], + [9.059801, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.461057], + [9.059801, 45.465553], + [9.064298, 45.465553], + [9.064298, 45.461057], + [9.059801, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.465553], + [9.059801, 45.47005], + [9.064298, 45.47005], + [9.064298, 45.465553], + [9.059801, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.47005], + [9.059801, 45.474547], + [9.064298, 45.474547], + [9.064298, 45.47005], + [9.059801, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.474547], + [9.059801, 45.479043], + [9.064298, 45.479043], + [9.064298, 45.474547], + [9.059801, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.479043], + [9.059801, 45.48354], + [9.064298, 45.48354], + [9.064298, 45.479043], + [9.059801, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.48354], + [9.059801, 45.488036], + [9.064298, 45.488036], + [9.064298, 45.48354], + [9.059801, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.488036], + [9.059801, 45.492533], + [9.064298, 45.492533], + [9.064298, 45.488036], + [9.059801, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.492533], + [9.059801, 45.49703], + [9.064298, 45.49703], + [9.064298, 45.492533], + [9.059801, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.49703], + [9.059801, 45.501526], + [9.064298, 45.501526], + [9.064298, 45.49703], + [9.059801, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.501526], + [9.059801, 45.506023], + [9.064298, 45.506023], + [9.064298, 45.501526], + [9.059801, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.506023], + [9.059801, 45.510519], + [9.064298, 45.510519], + [9.064298, 45.506023], + [9.059801, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.510519], + [9.059801, 45.515016], + [9.064298, 45.515016], + [9.064298, 45.510519], + [9.059801, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.515016], + [9.059801, 45.519513], + [9.064298, 45.519513], + [9.064298, 45.515016], + [9.059801, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.519513], + [9.059801, 45.524009], + [9.064298, 45.524009], + [9.064298, 45.519513], + [9.059801, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.524009], + [9.059801, 45.528506], + [9.064298, 45.528506], + [9.064298, 45.524009], + [9.059801, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.528506], + [9.059801, 45.533002], + [9.064298, 45.533002], + [9.064298, 45.528506], + [9.059801, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.533002], + [9.059801, 45.537499], + [9.064298, 45.537499], + [9.064298, 45.533002], + [9.059801, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.537499], + [9.059801, 45.541996], + [9.064298, 45.541996], + [9.064298, 45.537499], + [9.059801, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.541996], + [9.059801, 45.546492], + [9.064298, 45.546492], + [9.064298, 45.541996], + [9.059801, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.546492], + [9.059801, 45.550989], + [9.064298, 45.550989], + [9.064298, 45.546492], + [9.059801, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.550989], + [9.059801, 45.555485], + [9.064298, 45.555485], + [9.064298, 45.550989], + [9.059801, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.555485], + [9.059801, 45.559982], + [9.064298, 45.559982], + [9.064298, 45.555485], + [9.059801, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.559982], + [9.059801, 45.564479], + [9.064298, 45.564479], + [9.064298, 45.559982], + [9.059801, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.564479], + [9.059801, 45.568975], + [9.064298, 45.568975], + [9.064298, 45.564479], + [9.059801, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.568975], + [9.059801, 45.573472], + [9.064298, 45.573472], + [9.064298, 45.568975], + [9.059801, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.573472], + [9.059801, 45.577968], + [9.064298, 45.577968], + [9.064298, 45.573472], + [9.059801, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.577968], + [9.059801, 45.582465], + [9.064298, 45.582465], + [9.064298, 45.577968], + [9.059801, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.582465], + [9.059801, 45.586962], + [9.064298, 45.586962], + [9.064298, 45.582465], + [9.059801, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.586962], + [9.059801, 45.591458], + [9.064298, 45.591458], + [9.064298, 45.586962], + [9.059801, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.591458], + [9.059801, 45.595955], + [9.064298, 45.595955], + [9.064298, 45.591458], + [9.059801, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.595955], + [9.059801, 45.600451], + [9.064298, 45.600451], + [9.064298, 45.595955], + [9.059801, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.600451], + [9.059801, 45.604948], + [9.064298, 45.604948], + [9.064298, 45.600451], + [9.059801, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.604948], + [9.059801, 45.609445], + [9.064298, 45.609445], + [9.064298, 45.604948], + [9.059801, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.609445], + [9.059801, 45.613941], + [9.064298, 45.613941], + [9.064298, 45.609445], + [9.059801, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.613941], + [9.059801, 45.618438], + [9.064298, 45.618438], + [9.064298, 45.613941], + [9.059801, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.618438], + [9.059801, 45.622934], + [9.064298, 45.622934], + [9.064298, 45.618438], + [9.059801, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.622934], + [9.059801, 45.627431], + [9.064298, 45.627431], + [9.064298, 45.622934], + [9.059801, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.627431], + [9.059801, 45.631928], + [9.064298, 45.631928], + [9.064298, 45.627431], + [9.059801, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.631928], + [9.059801, 45.636424], + [9.064298, 45.636424], + [9.064298, 45.631928], + [9.059801, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.339648], + [9.064298, 45.344145], + [9.068795, 45.344145], + [9.068795, 45.339648], + [9.064298, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.344145], + [9.064298, 45.348642], + [9.068795, 45.348642], + [9.068795, 45.344145], + [9.064298, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.348642], + [9.064298, 45.353138], + [9.068795, 45.353138], + [9.068795, 45.348642], + [9.064298, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.353138], + [9.064298, 45.357635], + [9.068795, 45.357635], + [9.068795, 45.353138], + [9.064298, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.357635], + [9.064298, 45.362131], + [9.068795, 45.362131], + [9.068795, 45.357635], + [9.064298, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.362131], + [9.064298, 45.366628], + [9.068795, 45.366628], + [9.068795, 45.362131], + [9.064298, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.366628], + [9.064298, 45.371125], + [9.068795, 45.371125], + [9.068795, 45.366628], + [9.064298, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.371125], + [9.064298, 45.375621], + [9.068795, 45.375621], + [9.068795, 45.371125], + [9.064298, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.375621], + [9.064298, 45.380118], + [9.068795, 45.380118], + [9.068795, 45.375621], + [9.064298, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.380118], + [9.064298, 45.384614], + [9.068795, 45.384614], + [9.068795, 45.380118], + [9.064298, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.384614], + [9.064298, 45.389111], + [9.068795, 45.389111], + [9.068795, 45.384614], + [9.064298, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.389111], + [9.064298, 45.393608], + [9.068795, 45.393608], + [9.068795, 45.389111], + [9.064298, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.393608], + [9.064298, 45.398104], + [9.068795, 45.398104], + [9.068795, 45.393608], + [9.064298, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.398104], + [9.064298, 45.402601], + [9.068795, 45.402601], + [9.068795, 45.398104], + [9.064298, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.402601], + [9.064298, 45.407097], + [9.068795, 45.407097], + [9.068795, 45.402601], + [9.064298, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.407097], + [9.064298, 45.411594], + [9.068795, 45.411594], + [9.068795, 45.407097], + [9.064298, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.411594], + [9.064298, 45.416091], + [9.068795, 45.416091], + [9.068795, 45.411594], + [9.064298, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.416091], + [9.064298, 45.420587], + [9.068795, 45.420587], + [9.068795, 45.416091], + [9.064298, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.420587], + [9.064298, 45.425084], + [9.068795, 45.425084], + [9.068795, 45.420587], + [9.064298, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.425084], + [9.064298, 45.42958], + [9.068795, 45.42958], + [9.068795, 45.425084], + [9.064298, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.42958], + [9.064298, 45.434077], + [9.068795, 45.434077], + [9.068795, 45.42958], + [9.064298, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.434077], + [9.064298, 45.438574], + [9.068795, 45.438574], + [9.068795, 45.434077], + [9.064298, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.438574], + [9.064298, 45.44307], + [9.068795, 45.44307], + [9.068795, 45.438574], + [9.064298, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.44307], + [9.064298, 45.447567], + [9.068795, 45.447567], + [9.068795, 45.44307], + [9.064298, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.447567], + [9.064298, 45.452063], + [9.068795, 45.452063], + [9.068795, 45.447567], + [9.064298, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.452063], + [9.064298, 45.45656], + [9.068795, 45.45656], + [9.068795, 45.452063], + [9.064298, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.45656], + [9.064298, 45.461057], + [9.068795, 45.461057], + [9.068795, 45.45656], + [9.064298, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.461057], + [9.064298, 45.465553], + [9.068795, 45.465553], + [9.068795, 45.461057], + [9.064298, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.465553], + [9.064298, 45.47005], + [9.068795, 45.47005], + [9.068795, 45.465553], + [9.064298, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.47005], + [9.064298, 45.474547], + [9.068795, 45.474547], + [9.068795, 45.47005], + [9.064298, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.474547], + [9.064298, 45.479043], + [9.068795, 45.479043], + [9.068795, 45.474547], + [9.064298, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.479043], + [9.064298, 45.48354], + [9.068795, 45.48354], + [9.068795, 45.479043], + [9.064298, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.48354], + [9.064298, 45.488036], + [9.068795, 45.488036], + [9.068795, 45.48354], + [9.064298, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.488036], + [9.064298, 45.492533], + [9.068795, 45.492533], + [9.068795, 45.488036], + [9.064298, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.492533], + [9.064298, 45.49703], + [9.068795, 45.49703], + [9.068795, 45.492533], + [9.064298, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.49703], + [9.064298, 45.501526], + [9.068795, 45.501526], + [9.068795, 45.49703], + [9.064298, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.501526], + [9.064298, 45.506023], + [9.068795, 45.506023], + [9.068795, 45.501526], + [9.064298, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.506023], + [9.064298, 45.510519], + [9.068795, 45.510519], + [9.068795, 45.506023], + [9.064298, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.510519], + [9.064298, 45.515016], + [9.068795, 45.515016], + [9.068795, 45.510519], + [9.064298, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.515016], + [9.064298, 45.519513], + [9.068795, 45.519513], + [9.068795, 45.515016], + [9.064298, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.519513], + [9.064298, 45.524009], + [9.068795, 45.524009], + [9.068795, 45.519513], + [9.064298, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.524009], + [9.064298, 45.528506], + [9.068795, 45.528506], + [9.068795, 45.524009], + [9.064298, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.528506], + [9.064298, 45.533002], + [9.068795, 45.533002], + [9.068795, 45.528506], + [9.064298, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.533002], + [9.064298, 45.537499], + [9.068795, 45.537499], + [9.068795, 45.533002], + [9.064298, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.537499], + [9.064298, 45.541996], + [9.068795, 45.541996], + [9.068795, 45.537499], + [9.064298, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.541996], + [9.064298, 45.546492], + [9.068795, 45.546492], + [9.068795, 45.541996], + [9.064298, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.546492], + [9.064298, 45.550989], + [9.068795, 45.550989], + [9.068795, 45.546492], + [9.064298, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.550989], + [9.064298, 45.555485], + [9.068795, 45.555485], + [9.068795, 45.550989], + [9.064298, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.555485], + [9.064298, 45.559982], + [9.068795, 45.559982], + [9.068795, 45.555485], + [9.064298, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.559982], + [9.064298, 45.564479], + [9.068795, 45.564479], + [9.068795, 45.559982], + [9.064298, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.564479], + [9.064298, 45.568975], + [9.068795, 45.568975], + [9.068795, 45.564479], + [9.064298, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.568975], + [9.064298, 45.573472], + [9.068795, 45.573472], + [9.068795, 45.568975], + [9.064298, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.573472], + [9.064298, 45.577968], + [9.068795, 45.577968], + [9.068795, 45.573472], + [9.064298, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.577968], + [9.064298, 45.582465], + [9.068795, 45.582465], + [9.068795, 45.577968], + [9.064298, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.582465], + [9.064298, 45.586962], + [9.068795, 45.586962], + [9.068795, 45.582465], + [9.064298, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.586962], + [9.064298, 45.591458], + [9.068795, 45.591458], + [9.068795, 45.586962], + [9.064298, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.591458], + [9.064298, 45.595955], + [9.068795, 45.595955], + [9.068795, 45.591458], + [9.064298, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.595955], + [9.064298, 45.600451], + [9.068795, 45.600451], + [9.068795, 45.595955], + [9.064298, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.600451], + [9.064298, 45.604948], + [9.068795, 45.604948], + [9.068795, 45.600451], + [9.064298, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.604948], + [9.064298, 45.609445], + [9.068795, 45.609445], + [9.068795, 45.604948], + [9.064298, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.609445], + [9.064298, 45.613941], + [9.068795, 45.613941], + [9.068795, 45.609445], + [9.064298, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.613941], + [9.064298, 45.618438], + [9.068795, 45.618438], + [9.068795, 45.613941], + [9.064298, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.618438], + [9.064298, 45.622934], + [9.068795, 45.622934], + [9.068795, 45.618438], + [9.064298, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.622934], + [9.064298, 45.627431], + [9.068795, 45.627431], + [9.068795, 45.622934], + [9.064298, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.627431], + [9.064298, 45.631928], + [9.068795, 45.631928], + [9.068795, 45.627431], + [9.064298, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.631928], + [9.064298, 45.636424], + [9.068795, 45.636424], + [9.068795, 45.631928], + [9.064298, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.339648], + [9.068795, 45.344145], + [9.073291, 45.344145], + [9.073291, 45.339648], + [9.068795, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.344145], + [9.068795, 45.348642], + [9.073291, 45.348642], + [9.073291, 45.344145], + [9.068795, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.348642], + [9.068795, 45.353138], + [9.073291, 45.353138], + [9.073291, 45.348642], + [9.068795, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.353138], + [9.068795, 45.357635], + [9.073291, 45.357635], + [9.073291, 45.353138], + [9.068795, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.357635], + [9.068795, 45.362131], + [9.073291, 45.362131], + [9.073291, 45.357635], + [9.068795, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.362131], + [9.068795, 45.366628], + [9.073291, 45.366628], + [9.073291, 45.362131], + [9.068795, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.366628], + [9.068795, 45.371125], + [9.073291, 45.371125], + [9.073291, 45.366628], + [9.068795, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.371125], + [9.068795, 45.375621], + [9.073291, 45.375621], + [9.073291, 45.371125], + [9.068795, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.375621], + [9.068795, 45.380118], + [9.073291, 45.380118], + [9.073291, 45.375621], + [9.068795, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.380118], + [9.068795, 45.384614], + [9.073291, 45.384614], + [9.073291, 45.380118], + [9.068795, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.384614], + [9.068795, 45.389111], + [9.073291, 45.389111], + [9.073291, 45.384614], + [9.068795, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.389111], + [9.068795, 45.393608], + [9.073291, 45.393608], + [9.073291, 45.389111], + [9.068795, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.393608], + [9.068795, 45.398104], + [9.073291, 45.398104], + [9.073291, 45.393608], + [9.068795, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.398104], + [9.068795, 45.402601], + [9.073291, 45.402601], + [9.073291, 45.398104], + [9.068795, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.402601], + [9.068795, 45.407097], + [9.073291, 45.407097], + [9.073291, 45.402601], + [9.068795, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.407097], + [9.068795, 45.411594], + [9.073291, 45.411594], + [9.073291, 45.407097], + [9.068795, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.411594], + [9.068795, 45.416091], + [9.073291, 45.416091], + [9.073291, 45.411594], + [9.068795, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.416091], + [9.068795, 45.420587], + [9.073291, 45.420587], + [9.073291, 45.416091], + [9.068795, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.420587], + [9.068795, 45.425084], + [9.073291, 45.425084], + [9.073291, 45.420587], + [9.068795, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.425084], + [9.068795, 45.42958], + [9.073291, 45.42958], + [9.073291, 45.425084], + [9.068795, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.42958], + [9.068795, 45.434077], + [9.073291, 45.434077], + [9.073291, 45.42958], + [9.068795, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.434077], + [9.068795, 45.438574], + [9.073291, 45.438574], + [9.073291, 45.434077], + [9.068795, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.438574], + [9.068795, 45.44307], + [9.073291, 45.44307], + [9.073291, 45.438574], + [9.068795, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.44307], + [9.068795, 45.447567], + [9.073291, 45.447567], + [9.073291, 45.44307], + [9.068795, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.447567], + [9.068795, 45.452063], + [9.073291, 45.452063], + [9.073291, 45.447567], + [9.068795, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.452063], + [9.068795, 45.45656], + [9.073291, 45.45656], + [9.073291, 45.452063], + [9.068795, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.45656], + [9.068795, 45.461057], + [9.073291, 45.461057], + [9.073291, 45.45656], + [9.068795, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.461057], + [9.068795, 45.465553], + [9.073291, 45.465553], + [9.073291, 45.461057], + [9.068795, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.465553], + [9.068795, 45.47005], + [9.073291, 45.47005], + [9.073291, 45.465553], + [9.068795, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.47005], + [9.068795, 45.474547], + [9.073291, 45.474547], + [9.073291, 45.47005], + [9.068795, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.474547], + [9.068795, 45.479043], + [9.073291, 45.479043], + [9.073291, 45.474547], + [9.068795, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.479043], + [9.068795, 45.48354], + [9.073291, 45.48354], + [9.073291, 45.479043], + [9.068795, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.48354], + [9.068795, 45.488036], + [9.073291, 45.488036], + [9.073291, 45.48354], + [9.068795, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.488036], + [9.068795, 45.492533], + [9.073291, 45.492533], + [9.073291, 45.488036], + [9.068795, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.492533], + [9.068795, 45.49703], + [9.073291, 45.49703], + [9.073291, 45.492533], + [9.068795, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.49703], + [9.068795, 45.501526], + [9.073291, 45.501526], + [9.073291, 45.49703], + [9.068795, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.501526], + [9.068795, 45.506023], + [9.073291, 45.506023], + [9.073291, 45.501526], + [9.068795, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.506023], + [9.068795, 45.510519], + [9.073291, 45.510519], + [9.073291, 45.506023], + [9.068795, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.510519], + [9.068795, 45.515016], + [9.073291, 45.515016], + [9.073291, 45.510519], + [9.068795, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.515016], + [9.068795, 45.519513], + [9.073291, 45.519513], + [9.073291, 45.515016], + [9.068795, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.519513], + [9.068795, 45.524009], + [9.073291, 45.524009], + [9.073291, 45.519513], + [9.068795, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.524009], + [9.068795, 45.528506], + [9.073291, 45.528506], + [9.073291, 45.524009], + [9.068795, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.528506], + [9.068795, 45.533002], + [9.073291, 45.533002], + [9.073291, 45.528506], + [9.068795, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.533002], + [9.068795, 45.537499], + [9.073291, 45.537499], + [9.073291, 45.533002], + [9.068795, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.537499], + [9.068795, 45.541996], + [9.073291, 45.541996], + [9.073291, 45.537499], + [9.068795, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.541996], + [9.068795, 45.546492], + [9.073291, 45.546492], + [9.073291, 45.541996], + [9.068795, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.546492], + [9.068795, 45.550989], + [9.073291, 45.550989], + [9.073291, 45.546492], + [9.068795, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.550989], + [9.068795, 45.555485], + [9.073291, 45.555485], + [9.073291, 45.550989], + [9.068795, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.555485], + [9.068795, 45.559982], + [9.073291, 45.559982], + [9.073291, 45.555485], + [9.068795, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.559982], + [9.068795, 45.564479], + [9.073291, 45.564479], + [9.073291, 45.559982], + [9.068795, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.564479], + [9.068795, 45.568975], + [9.073291, 45.568975], + [9.073291, 45.564479], + [9.068795, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.568975], + [9.068795, 45.573472], + [9.073291, 45.573472], + [9.073291, 45.568975], + [9.068795, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.573472], + [9.068795, 45.577968], + [9.073291, 45.577968], + [9.073291, 45.573472], + [9.068795, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.577968], + [9.068795, 45.582465], + [9.073291, 45.582465], + [9.073291, 45.577968], + [9.068795, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.582465], + [9.068795, 45.586962], + [9.073291, 45.586962], + [9.073291, 45.582465], + [9.068795, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.586962], + [9.068795, 45.591458], + [9.073291, 45.591458], + [9.073291, 45.586962], + [9.068795, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.591458], + [9.068795, 45.595955], + [9.073291, 45.595955], + [9.073291, 45.591458], + [9.068795, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.595955], + [9.068795, 45.600451], + [9.073291, 45.600451], + [9.073291, 45.595955], + [9.068795, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.600451], + [9.068795, 45.604948], + [9.073291, 45.604948], + [9.073291, 45.600451], + [9.068795, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.604948], + [9.068795, 45.609445], + [9.073291, 45.609445], + [9.073291, 45.604948], + [9.068795, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.609445], + [9.068795, 45.613941], + [9.073291, 45.613941], + [9.073291, 45.609445], + [9.068795, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.613941], + [9.068795, 45.618438], + [9.073291, 45.618438], + [9.073291, 45.613941], + [9.068795, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.618438], + [9.068795, 45.622934], + [9.073291, 45.622934], + [9.073291, 45.618438], + [9.068795, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.622934], + [9.068795, 45.627431], + [9.073291, 45.627431], + [9.073291, 45.622934], + [9.068795, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.627431], + [9.068795, 45.631928], + [9.073291, 45.631928], + [9.073291, 45.627431], + [9.068795, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.631928], + [9.068795, 45.636424], + [9.073291, 45.636424], + [9.073291, 45.631928], + [9.068795, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.339648], + [9.073291, 45.344145], + [9.077788, 45.344145], + [9.077788, 45.339648], + [9.073291, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.344145], + [9.073291, 45.348642], + [9.077788, 45.348642], + [9.077788, 45.344145], + [9.073291, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.348642], + [9.073291, 45.353138], + [9.077788, 45.353138], + [9.077788, 45.348642], + [9.073291, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.353138], + [9.073291, 45.357635], + [9.077788, 45.357635], + [9.077788, 45.353138], + [9.073291, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.357635], + [9.073291, 45.362131], + [9.077788, 45.362131], + [9.077788, 45.357635], + [9.073291, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.362131], + [9.073291, 45.366628], + [9.077788, 45.366628], + [9.077788, 45.362131], + [9.073291, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.366628], + [9.073291, 45.371125], + [9.077788, 45.371125], + [9.077788, 45.366628], + [9.073291, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.371125], + [9.073291, 45.375621], + [9.077788, 45.375621], + [9.077788, 45.371125], + [9.073291, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.375621], + [9.073291, 45.380118], + [9.077788, 45.380118], + [9.077788, 45.375621], + [9.073291, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.380118], + [9.073291, 45.384614], + [9.077788, 45.384614], + [9.077788, 45.380118], + [9.073291, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.384614], + [9.073291, 45.389111], + [9.077788, 45.389111], + [9.077788, 45.384614], + [9.073291, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.389111], + [9.073291, 45.393608], + [9.077788, 45.393608], + [9.077788, 45.389111], + [9.073291, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.393608], + [9.073291, 45.398104], + [9.077788, 45.398104], + [9.077788, 45.393608], + [9.073291, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.398104], + [9.073291, 45.402601], + [9.077788, 45.402601], + [9.077788, 45.398104], + [9.073291, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.402601], + [9.073291, 45.407097], + [9.077788, 45.407097], + [9.077788, 45.402601], + [9.073291, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.407097], + [9.073291, 45.411594], + [9.077788, 45.411594], + [9.077788, 45.407097], + [9.073291, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.411594], + [9.073291, 45.416091], + [9.077788, 45.416091], + [9.077788, 45.411594], + [9.073291, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.416091], + [9.073291, 45.420587], + [9.077788, 45.420587], + [9.077788, 45.416091], + [9.073291, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.420587], + [9.073291, 45.425084], + [9.077788, 45.425084], + [9.077788, 45.420587], + [9.073291, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.425084], + [9.073291, 45.42958], + [9.077788, 45.42958], + [9.077788, 45.425084], + [9.073291, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.42958], + [9.073291, 45.434077], + [9.077788, 45.434077], + [9.077788, 45.42958], + [9.073291, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.434077], + [9.073291, 45.438574], + [9.077788, 45.438574], + [9.077788, 45.434077], + [9.073291, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.438574], + [9.073291, 45.44307], + [9.077788, 45.44307], + [9.077788, 45.438574], + [9.073291, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.44307], + [9.073291, 45.447567], + [9.077788, 45.447567], + [9.077788, 45.44307], + [9.073291, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.447567], + [9.073291, 45.452063], + [9.077788, 45.452063], + [9.077788, 45.447567], + [9.073291, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.452063], + [9.073291, 45.45656], + [9.077788, 45.45656], + [9.077788, 45.452063], + [9.073291, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.45656], + [9.073291, 45.461057], + [9.077788, 45.461057], + [9.077788, 45.45656], + [9.073291, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.461057], + [9.073291, 45.465553], + [9.077788, 45.465553], + [9.077788, 45.461057], + [9.073291, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.465553], + [9.073291, 45.47005], + [9.077788, 45.47005], + [9.077788, 45.465553], + [9.073291, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.47005], + [9.073291, 45.474547], + [9.077788, 45.474547], + [9.077788, 45.47005], + [9.073291, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.474547], + [9.073291, 45.479043], + [9.077788, 45.479043], + [9.077788, 45.474547], + [9.073291, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.479043], + [9.073291, 45.48354], + [9.077788, 45.48354], + [9.077788, 45.479043], + [9.073291, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.48354], + [9.073291, 45.488036], + [9.077788, 45.488036], + [9.077788, 45.48354], + [9.073291, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.488036], + [9.073291, 45.492533], + [9.077788, 45.492533], + [9.077788, 45.488036], + [9.073291, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.492533], + [9.073291, 45.49703], + [9.077788, 45.49703], + [9.077788, 45.492533], + [9.073291, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.49703], + [9.073291, 45.501526], + [9.077788, 45.501526], + [9.077788, 45.49703], + [9.073291, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.501526], + [9.073291, 45.506023], + [9.077788, 45.506023], + [9.077788, 45.501526], + [9.073291, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.506023], + [9.073291, 45.510519], + [9.077788, 45.510519], + [9.077788, 45.506023], + [9.073291, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.510519], + [9.073291, 45.515016], + [9.077788, 45.515016], + [9.077788, 45.510519], + [9.073291, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.515016], + [9.073291, 45.519513], + [9.077788, 45.519513], + [9.077788, 45.515016], + [9.073291, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.519513], + [9.073291, 45.524009], + [9.077788, 45.524009], + [9.077788, 45.519513], + [9.073291, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.524009], + [9.073291, 45.528506], + [9.077788, 45.528506], + [9.077788, 45.524009], + [9.073291, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.528506], + [9.073291, 45.533002], + [9.077788, 45.533002], + [9.077788, 45.528506], + [9.073291, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.533002], + [9.073291, 45.537499], + [9.077788, 45.537499], + [9.077788, 45.533002], + [9.073291, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.537499], + [9.073291, 45.541996], + [9.077788, 45.541996], + [9.077788, 45.537499], + [9.073291, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.541996], + [9.073291, 45.546492], + [9.077788, 45.546492], + [9.077788, 45.541996], + [9.073291, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.546492], + [9.073291, 45.550989], + [9.077788, 45.550989], + [9.077788, 45.546492], + [9.073291, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.550989], + [9.073291, 45.555485], + [9.077788, 45.555485], + [9.077788, 45.550989], + [9.073291, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.555485], + [9.073291, 45.559982], + [9.077788, 45.559982], + [9.077788, 45.555485], + [9.073291, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.559982], + [9.073291, 45.564479], + [9.077788, 45.564479], + [9.077788, 45.559982], + [9.073291, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.564479], + [9.073291, 45.568975], + [9.077788, 45.568975], + [9.077788, 45.564479], + [9.073291, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.568975], + [9.073291, 45.573472], + [9.077788, 45.573472], + [9.077788, 45.568975], + [9.073291, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.573472], + [9.073291, 45.577968], + [9.077788, 45.577968], + [9.077788, 45.573472], + [9.073291, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.577968], + [9.073291, 45.582465], + [9.077788, 45.582465], + [9.077788, 45.577968], + [9.073291, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.582465], + [9.073291, 45.586962], + [9.077788, 45.586962], + [9.077788, 45.582465], + [9.073291, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.586962], + [9.073291, 45.591458], + [9.077788, 45.591458], + [9.077788, 45.586962], + [9.073291, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.591458], + [9.073291, 45.595955], + [9.077788, 45.595955], + [9.077788, 45.591458], + [9.073291, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.595955], + [9.073291, 45.600451], + [9.077788, 45.600451], + [9.077788, 45.595955], + [9.073291, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.600451], + [9.073291, 45.604948], + [9.077788, 45.604948], + [9.077788, 45.600451], + [9.073291, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.604948], + [9.073291, 45.609445], + [9.077788, 45.609445], + [9.077788, 45.604948], + [9.073291, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.609445], + [9.073291, 45.613941], + [9.077788, 45.613941], + [9.077788, 45.609445], + [9.073291, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.613941], + [9.073291, 45.618438], + [9.077788, 45.618438], + [9.077788, 45.613941], + [9.073291, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.618438], + [9.073291, 45.622934], + [9.077788, 45.622934], + [9.077788, 45.618438], + [9.073291, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.622934], + [9.073291, 45.627431], + [9.077788, 45.627431], + [9.077788, 45.622934], + [9.073291, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.627431], + [9.073291, 45.631928], + [9.077788, 45.631928], + [9.077788, 45.627431], + [9.073291, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.631928], + [9.073291, 45.636424], + [9.077788, 45.636424], + [9.077788, 45.631928], + [9.073291, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.339648], + [9.077788, 45.344145], + [9.082284, 45.344145], + [9.082284, 45.339648], + [9.077788, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.344145], + [9.077788, 45.348642], + [9.082284, 45.348642], + [9.082284, 45.344145], + [9.077788, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.348642], + [9.077788, 45.353138], + [9.082284, 45.353138], + [9.082284, 45.348642], + [9.077788, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.353138], + [9.077788, 45.357635], + [9.082284, 45.357635], + [9.082284, 45.353138], + [9.077788, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.357635], + [9.077788, 45.362131], + [9.082284, 45.362131], + [9.082284, 45.357635], + [9.077788, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.362131], + [9.077788, 45.366628], + [9.082284, 45.366628], + [9.082284, 45.362131], + [9.077788, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.366628], + [9.077788, 45.371125], + [9.082284, 45.371125], + [9.082284, 45.366628], + [9.077788, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.371125], + [9.077788, 45.375621], + [9.082284, 45.375621], + [9.082284, 45.371125], + [9.077788, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.375621], + [9.077788, 45.380118], + [9.082284, 45.380118], + [9.082284, 45.375621], + [9.077788, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.380118], + [9.077788, 45.384614], + [9.082284, 45.384614], + [9.082284, 45.380118], + [9.077788, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.384614], + [9.077788, 45.389111], + [9.082284, 45.389111], + [9.082284, 45.384614], + [9.077788, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.389111], + [9.077788, 45.393608], + [9.082284, 45.393608], + [9.082284, 45.389111], + [9.077788, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.393608], + [9.077788, 45.398104], + [9.082284, 45.398104], + [9.082284, 45.393608], + [9.077788, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.398104], + [9.077788, 45.402601], + [9.082284, 45.402601], + [9.082284, 45.398104], + [9.077788, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.402601], + [9.077788, 45.407097], + [9.082284, 45.407097], + [9.082284, 45.402601], + [9.077788, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.407097], + [9.077788, 45.411594], + [9.082284, 45.411594], + [9.082284, 45.407097], + [9.077788, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.411594], + [9.077788, 45.416091], + [9.082284, 45.416091], + [9.082284, 45.411594], + [9.077788, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.416091], + [9.077788, 45.420587], + [9.082284, 45.420587], + [9.082284, 45.416091], + [9.077788, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.420587], + [9.077788, 45.425084], + [9.082284, 45.425084], + [9.082284, 45.420587], + [9.077788, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.425084], + [9.077788, 45.42958], + [9.082284, 45.42958], + [9.082284, 45.425084], + [9.077788, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.42958], + [9.077788, 45.434077], + [9.082284, 45.434077], + [9.082284, 45.42958], + [9.077788, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.434077], + [9.077788, 45.438574], + [9.082284, 45.438574], + [9.082284, 45.434077], + [9.077788, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.438574], + [9.077788, 45.44307], + [9.082284, 45.44307], + [9.082284, 45.438574], + [9.077788, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.44307], + [9.077788, 45.447567], + [9.082284, 45.447567], + [9.082284, 45.44307], + [9.077788, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.447567], + [9.077788, 45.452063], + [9.082284, 45.452063], + [9.082284, 45.447567], + [9.077788, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.452063], + [9.077788, 45.45656], + [9.082284, 45.45656], + [9.082284, 45.452063], + [9.077788, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.45656], + [9.077788, 45.461057], + [9.082284, 45.461057], + [9.082284, 45.45656], + [9.077788, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.461057], + [9.077788, 45.465553], + [9.082284, 45.465553], + [9.082284, 45.461057], + [9.077788, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.465553], + [9.077788, 45.47005], + [9.082284, 45.47005], + [9.082284, 45.465553], + [9.077788, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.47005], + [9.077788, 45.474547], + [9.082284, 45.474547], + [9.082284, 45.47005], + [9.077788, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.474547], + [9.077788, 45.479043], + [9.082284, 45.479043], + [9.082284, 45.474547], + [9.077788, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.479043], + [9.077788, 45.48354], + [9.082284, 45.48354], + [9.082284, 45.479043], + [9.077788, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.48354], + [9.077788, 45.488036], + [9.082284, 45.488036], + [9.082284, 45.48354], + [9.077788, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.488036], + [9.077788, 45.492533], + [9.082284, 45.492533], + [9.082284, 45.488036], + [9.077788, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.492533], + [9.077788, 45.49703], + [9.082284, 45.49703], + [9.082284, 45.492533], + [9.077788, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.49703], + [9.077788, 45.501526], + [9.082284, 45.501526], + [9.082284, 45.49703], + [9.077788, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.501526], + [9.077788, 45.506023], + [9.082284, 45.506023], + [9.082284, 45.501526], + [9.077788, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.506023], + [9.077788, 45.510519], + [9.082284, 45.510519], + [9.082284, 45.506023], + [9.077788, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.510519], + [9.077788, 45.515016], + [9.082284, 45.515016], + [9.082284, 45.510519], + [9.077788, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.515016], + [9.077788, 45.519513], + [9.082284, 45.519513], + [9.082284, 45.515016], + [9.077788, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.519513], + [9.077788, 45.524009], + [9.082284, 45.524009], + [9.082284, 45.519513], + [9.077788, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.524009], + [9.077788, 45.528506], + [9.082284, 45.528506], + [9.082284, 45.524009], + [9.077788, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.528506], + [9.077788, 45.533002], + [9.082284, 45.533002], + [9.082284, 45.528506], + [9.077788, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.533002], + [9.077788, 45.537499], + [9.082284, 45.537499], + [9.082284, 45.533002], + [9.077788, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.537499], + [9.077788, 45.541996], + [9.082284, 45.541996], + [9.082284, 45.537499], + [9.077788, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.541996], + [9.077788, 45.546492], + [9.082284, 45.546492], + [9.082284, 45.541996], + [9.077788, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.546492], + [9.077788, 45.550989], + [9.082284, 45.550989], + [9.082284, 45.546492], + [9.077788, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.550989], + [9.077788, 45.555485], + [9.082284, 45.555485], + [9.082284, 45.550989], + [9.077788, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.555485], + [9.077788, 45.559982], + [9.082284, 45.559982], + [9.082284, 45.555485], + [9.077788, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.559982], + [9.077788, 45.564479], + [9.082284, 45.564479], + [9.082284, 45.559982], + [9.077788, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.564479], + [9.077788, 45.568975], + [9.082284, 45.568975], + [9.082284, 45.564479], + [9.077788, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.568975], + [9.077788, 45.573472], + [9.082284, 45.573472], + [9.082284, 45.568975], + [9.077788, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.573472], + [9.077788, 45.577968], + [9.082284, 45.577968], + [9.082284, 45.573472], + [9.077788, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.577968], + [9.077788, 45.582465], + [9.082284, 45.582465], + [9.082284, 45.577968], + [9.077788, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.582465], + [9.077788, 45.586962], + [9.082284, 45.586962], + [9.082284, 45.582465], + [9.077788, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.586962], + [9.077788, 45.591458], + [9.082284, 45.591458], + [9.082284, 45.586962], + [9.077788, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.591458], + [9.077788, 45.595955], + [9.082284, 45.595955], + [9.082284, 45.591458], + [9.077788, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.595955], + [9.077788, 45.600451], + [9.082284, 45.600451], + [9.082284, 45.595955], + [9.077788, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.600451], + [9.077788, 45.604948], + [9.082284, 45.604948], + [9.082284, 45.600451], + [9.077788, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.604948], + [9.077788, 45.609445], + [9.082284, 45.609445], + [9.082284, 45.604948], + [9.077788, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.609445], + [9.077788, 45.613941], + [9.082284, 45.613941], + [9.082284, 45.609445], + [9.077788, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.613941], + [9.077788, 45.618438], + [9.082284, 45.618438], + [9.082284, 45.613941], + [9.077788, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.618438], + [9.077788, 45.622934], + [9.082284, 45.622934], + [9.082284, 45.618438], + [9.077788, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.622934], + [9.077788, 45.627431], + [9.082284, 45.627431], + [9.082284, 45.622934], + [9.077788, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.627431], + [9.077788, 45.631928], + [9.082284, 45.631928], + [9.082284, 45.627431], + [9.077788, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.631928], + [9.077788, 45.636424], + [9.082284, 45.636424], + [9.082284, 45.631928], + [9.077788, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.339648], + [9.082284, 45.344145], + [9.086781, 45.344145], + [9.086781, 45.339648], + [9.082284, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.344145], + [9.082284, 45.348642], + [9.086781, 45.348642], + [9.086781, 45.344145], + [9.082284, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.348642], + [9.082284, 45.353138], + [9.086781, 45.353138], + [9.086781, 45.348642], + [9.082284, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.353138], + [9.082284, 45.357635], + [9.086781, 45.357635], + [9.086781, 45.353138], + [9.082284, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.357635], + [9.082284, 45.362131], + [9.086781, 45.362131], + [9.086781, 45.357635], + [9.082284, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.362131], + [9.082284, 45.366628], + [9.086781, 45.366628], + [9.086781, 45.362131], + [9.082284, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.366628], + [9.082284, 45.371125], + [9.086781, 45.371125], + [9.086781, 45.366628], + [9.082284, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.371125], + [9.082284, 45.375621], + [9.086781, 45.375621], + [9.086781, 45.371125], + [9.082284, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.375621], + [9.082284, 45.380118], + [9.086781, 45.380118], + [9.086781, 45.375621], + [9.082284, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.380118], + [9.082284, 45.384614], + [9.086781, 45.384614], + [9.086781, 45.380118], + [9.082284, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.384614], + [9.082284, 45.389111], + [9.086781, 45.389111], + [9.086781, 45.384614], + [9.082284, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.389111], + [9.082284, 45.393608], + [9.086781, 45.393608], + [9.086781, 45.389111], + [9.082284, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.393608], + [9.082284, 45.398104], + [9.086781, 45.398104], + [9.086781, 45.393608], + [9.082284, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.398104], + [9.082284, 45.402601], + [9.086781, 45.402601], + [9.086781, 45.398104], + [9.082284, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.402601], + [9.082284, 45.407097], + [9.086781, 45.407097], + [9.086781, 45.402601], + [9.082284, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.407097], + [9.082284, 45.411594], + [9.086781, 45.411594], + [9.086781, 45.407097], + [9.082284, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.411594], + [9.082284, 45.416091], + [9.086781, 45.416091], + [9.086781, 45.411594], + [9.082284, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.416091], + [9.082284, 45.420587], + [9.086781, 45.420587], + [9.086781, 45.416091], + [9.082284, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.420587], + [9.082284, 45.425084], + [9.086781, 45.425084], + [9.086781, 45.420587], + [9.082284, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.425084], + [9.082284, 45.42958], + [9.086781, 45.42958], + [9.086781, 45.425084], + [9.082284, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.42958], + [9.082284, 45.434077], + [9.086781, 45.434077], + [9.086781, 45.42958], + [9.082284, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.434077], + [9.082284, 45.438574], + [9.086781, 45.438574], + [9.086781, 45.434077], + [9.082284, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.438574], + [9.082284, 45.44307], + [9.086781, 45.44307], + [9.086781, 45.438574], + [9.082284, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.44307], + [9.082284, 45.447567], + [9.086781, 45.447567], + [9.086781, 45.44307], + [9.082284, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.447567], + [9.082284, 45.452063], + [9.086781, 45.452063], + [9.086781, 45.447567], + [9.082284, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.452063], + [9.082284, 45.45656], + [9.086781, 45.45656], + [9.086781, 45.452063], + [9.082284, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.45656], + [9.082284, 45.461057], + [9.086781, 45.461057], + [9.086781, 45.45656], + [9.082284, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.461057], + [9.082284, 45.465553], + [9.086781, 45.465553], + [9.086781, 45.461057], + [9.082284, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.465553], + [9.082284, 45.47005], + [9.086781, 45.47005], + [9.086781, 45.465553], + [9.082284, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.47005], + [9.082284, 45.474547], + [9.086781, 45.474547], + [9.086781, 45.47005], + [9.082284, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.474547], + [9.082284, 45.479043], + [9.086781, 45.479043], + [9.086781, 45.474547], + [9.082284, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.479043], + [9.082284, 45.48354], + [9.086781, 45.48354], + [9.086781, 45.479043], + [9.082284, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.48354], + [9.082284, 45.488036], + [9.086781, 45.488036], + [9.086781, 45.48354], + [9.082284, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.488036], + [9.082284, 45.492533], + [9.086781, 45.492533], + [9.086781, 45.488036], + [9.082284, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.492533], + [9.082284, 45.49703], + [9.086781, 45.49703], + [9.086781, 45.492533], + [9.082284, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.49703], + [9.082284, 45.501526], + [9.086781, 45.501526], + [9.086781, 45.49703], + [9.082284, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.501526], + [9.082284, 45.506023], + [9.086781, 45.506023], + [9.086781, 45.501526], + [9.082284, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.506023], + [9.082284, 45.510519], + [9.086781, 45.510519], + [9.086781, 45.506023], + [9.082284, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.510519], + [9.082284, 45.515016], + [9.086781, 45.515016], + [9.086781, 45.510519], + [9.082284, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.515016], + [9.082284, 45.519513], + [9.086781, 45.519513], + [9.086781, 45.515016], + [9.082284, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.519513], + [9.082284, 45.524009], + [9.086781, 45.524009], + [9.086781, 45.519513], + [9.082284, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.524009], + [9.082284, 45.528506], + [9.086781, 45.528506], + [9.086781, 45.524009], + [9.082284, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.528506], + [9.082284, 45.533002], + [9.086781, 45.533002], + [9.086781, 45.528506], + [9.082284, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.533002], + [9.082284, 45.537499], + [9.086781, 45.537499], + [9.086781, 45.533002], + [9.082284, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.537499], + [9.082284, 45.541996], + [9.086781, 45.541996], + [9.086781, 45.537499], + [9.082284, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.541996], + [9.082284, 45.546492], + [9.086781, 45.546492], + [9.086781, 45.541996], + [9.082284, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.546492], + [9.082284, 45.550989], + [9.086781, 45.550989], + [9.086781, 45.546492], + [9.082284, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.550989], + [9.082284, 45.555485], + [9.086781, 45.555485], + [9.086781, 45.550989], + [9.082284, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.555485], + [9.082284, 45.559982], + [9.086781, 45.559982], + [9.086781, 45.555485], + [9.082284, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.559982], + [9.082284, 45.564479], + [9.086781, 45.564479], + [9.086781, 45.559982], + [9.082284, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.564479], + [9.082284, 45.568975], + [9.086781, 45.568975], + [9.086781, 45.564479], + [9.082284, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.568975], + [9.082284, 45.573472], + [9.086781, 45.573472], + [9.086781, 45.568975], + [9.082284, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.573472], + [9.082284, 45.577968], + [9.086781, 45.577968], + [9.086781, 45.573472], + [9.082284, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.577968], + [9.082284, 45.582465], + [9.086781, 45.582465], + [9.086781, 45.577968], + [9.082284, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.582465], + [9.082284, 45.586962], + [9.086781, 45.586962], + [9.086781, 45.582465], + [9.082284, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.586962], + [9.082284, 45.591458], + [9.086781, 45.591458], + [9.086781, 45.586962], + [9.082284, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.591458], + [9.082284, 45.595955], + [9.086781, 45.595955], + [9.086781, 45.591458], + [9.082284, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.595955], + [9.082284, 45.600451], + [9.086781, 45.600451], + [9.086781, 45.595955], + [9.082284, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.600451], + [9.082284, 45.604948], + [9.086781, 45.604948], + [9.086781, 45.600451], + [9.082284, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.604948], + [9.082284, 45.609445], + [9.086781, 45.609445], + [9.086781, 45.604948], + [9.082284, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.609445], + [9.082284, 45.613941], + [9.086781, 45.613941], + [9.086781, 45.609445], + [9.082284, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.613941], + [9.082284, 45.618438], + [9.086781, 45.618438], + [9.086781, 45.613941], + [9.082284, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.618438], + [9.082284, 45.622934], + [9.086781, 45.622934], + [9.086781, 45.618438], + [9.082284, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.622934], + [9.082284, 45.627431], + [9.086781, 45.627431], + [9.086781, 45.622934], + [9.082284, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.627431], + [9.082284, 45.631928], + [9.086781, 45.631928], + [9.086781, 45.627431], + [9.082284, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.631928], + [9.082284, 45.636424], + [9.086781, 45.636424], + [9.086781, 45.631928], + [9.082284, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.339648], + [9.086781, 45.344145], + [9.091278, 45.344145], + [9.091278, 45.339648], + [9.086781, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.344145], + [9.086781, 45.348642], + [9.091278, 45.348642], + [9.091278, 45.344145], + [9.086781, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.348642], + [9.086781, 45.353138], + [9.091278, 45.353138], + [9.091278, 45.348642], + [9.086781, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.353138], + [9.086781, 45.357635], + [9.091278, 45.357635], + [9.091278, 45.353138], + [9.086781, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.357635], + [9.086781, 45.362131], + [9.091278, 45.362131], + [9.091278, 45.357635], + [9.086781, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.362131], + [9.086781, 45.366628], + [9.091278, 45.366628], + [9.091278, 45.362131], + [9.086781, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.366628], + [9.086781, 45.371125], + [9.091278, 45.371125], + [9.091278, 45.366628], + [9.086781, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.371125], + [9.086781, 45.375621], + [9.091278, 45.375621], + [9.091278, 45.371125], + [9.086781, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.375621], + [9.086781, 45.380118], + [9.091278, 45.380118], + [9.091278, 45.375621], + [9.086781, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.380118], + [9.086781, 45.384614], + [9.091278, 45.384614], + [9.091278, 45.380118], + [9.086781, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.384614], + [9.086781, 45.389111], + [9.091278, 45.389111], + [9.091278, 45.384614], + [9.086781, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.389111], + [9.086781, 45.393608], + [9.091278, 45.393608], + [9.091278, 45.389111], + [9.086781, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.393608], + [9.086781, 45.398104], + [9.091278, 45.398104], + [9.091278, 45.393608], + [9.086781, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.398104], + [9.086781, 45.402601], + [9.091278, 45.402601], + [9.091278, 45.398104], + [9.086781, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.402601], + [9.086781, 45.407097], + [9.091278, 45.407097], + [9.091278, 45.402601], + [9.086781, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.407097], + [9.086781, 45.411594], + [9.091278, 45.411594], + [9.091278, 45.407097], + [9.086781, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.411594], + [9.086781, 45.416091], + [9.091278, 45.416091], + [9.091278, 45.411594], + [9.086781, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.416091], + [9.086781, 45.420587], + [9.091278, 45.420587], + [9.091278, 45.416091], + [9.086781, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.420587], + [9.086781, 45.425084], + [9.091278, 45.425084], + [9.091278, 45.420587], + [9.086781, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.425084], + [9.086781, 45.42958], + [9.091278, 45.42958], + [9.091278, 45.425084], + [9.086781, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.42958], + [9.086781, 45.434077], + [9.091278, 45.434077], + [9.091278, 45.42958], + [9.086781, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.434077], + [9.086781, 45.438574], + [9.091278, 45.438574], + [9.091278, 45.434077], + [9.086781, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.438574], + [9.086781, 45.44307], + [9.091278, 45.44307], + [9.091278, 45.438574], + [9.086781, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.44307], + [9.086781, 45.447567], + [9.091278, 45.447567], + [9.091278, 45.44307], + [9.086781, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.447567], + [9.086781, 45.452063], + [9.091278, 45.452063], + [9.091278, 45.447567], + [9.086781, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.452063], + [9.086781, 45.45656], + [9.091278, 45.45656], + [9.091278, 45.452063], + [9.086781, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.45656], + [9.086781, 45.461057], + [9.091278, 45.461057], + [9.091278, 45.45656], + [9.086781, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.461057], + [9.086781, 45.465553], + [9.091278, 45.465553], + [9.091278, 45.461057], + [9.086781, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.465553], + [9.086781, 45.47005], + [9.091278, 45.47005], + [9.091278, 45.465553], + [9.086781, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.47005], + [9.086781, 45.474547], + [9.091278, 45.474547], + [9.091278, 45.47005], + [9.086781, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.474547], + [9.086781, 45.479043], + [9.091278, 45.479043], + [9.091278, 45.474547], + [9.086781, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.479043], + [9.086781, 45.48354], + [9.091278, 45.48354], + [9.091278, 45.479043], + [9.086781, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.48354], + [9.086781, 45.488036], + [9.091278, 45.488036], + [9.091278, 45.48354], + [9.086781, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.488036], + [9.086781, 45.492533], + [9.091278, 45.492533], + [9.091278, 45.488036], + [9.086781, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.492533], + [9.086781, 45.49703], + [9.091278, 45.49703], + [9.091278, 45.492533], + [9.086781, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.49703], + [9.086781, 45.501526], + [9.091278, 45.501526], + [9.091278, 45.49703], + [9.086781, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.501526], + [9.086781, 45.506023], + [9.091278, 45.506023], + [9.091278, 45.501526], + [9.086781, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.506023], + [9.086781, 45.510519], + [9.091278, 45.510519], + [9.091278, 45.506023], + [9.086781, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.510519], + [9.086781, 45.515016], + [9.091278, 45.515016], + [9.091278, 45.510519], + [9.086781, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.515016], + [9.086781, 45.519513], + [9.091278, 45.519513], + [9.091278, 45.515016], + [9.086781, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.519513], + [9.086781, 45.524009], + [9.091278, 45.524009], + [9.091278, 45.519513], + [9.086781, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.524009], + [9.086781, 45.528506], + [9.091278, 45.528506], + [9.091278, 45.524009], + [9.086781, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.528506], + [9.086781, 45.533002], + [9.091278, 45.533002], + [9.091278, 45.528506], + [9.086781, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.533002], + [9.086781, 45.537499], + [9.091278, 45.537499], + [9.091278, 45.533002], + [9.086781, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.537499], + [9.086781, 45.541996], + [9.091278, 45.541996], + [9.091278, 45.537499], + [9.086781, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.541996], + [9.086781, 45.546492], + [9.091278, 45.546492], + [9.091278, 45.541996], + [9.086781, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.546492], + [9.086781, 45.550989], + [9.091278, 45.550989], + [9.091278, 45.546492], + [9.086781, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.550989], + [9.086781, 45.555485], + [9.091278, 45.555485], + [9.091278, 45.550989], + [9.086781, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.555485], + [9.086781, 45.559982], + [9.091278, 45.559982], + [9.091278, 45.555485], + [9.086781, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.559982], + [9.086781, 45.564479], + [9.091278, 45.564479], + [9.091278, 45.559982], + [9.086781, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.564479], + [9.086781, 45.568975], + [9.091278, 45.568975], + [9.091278, 45.564479], + [9.086781, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.568975], + [9.086781, 45.573472], + [9.091278, 45.573472], + [9.091278, 45.568975], + [9.086781, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.573472], + [9.086781, 45.577968], + [9.091278, 45.577968], + [9.091278, 45.573472], + [9.086781, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.577968], + [9.086781, 45.582465], + [9.091278, 45.582465], + [9.091278, 45.577968], + [9.086781, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.582465], + [9.086781, 45.586962], + [9.091278, 45.586962], + [9.091278, 45.582465], + [9.086781, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.586962], + [9.086781, 45.591458], + [9.091278, 45.591458], + [9.091278, 45.586962], + [9.086781, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.591458], + [9.086781, 45.595955], + [9.091278, 45.595955], + [9.091278, 45.591458], + [9.086781, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.595955], + [9.086781, 45.600451], + [9.091278, 45.600451], + [9.091278, 45.595955], + [9.086781, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.600451], + [9.086781, 45.604948], + [9.091278, 45.604948], + [9.091278, 45.600451], + [9.086781, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.604948], + [9.086781, 45.609445], + [9.091278, 45.609445], + [9.091278, 45.604948], + [9.086781, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.609445], + [9.086781, 45.613941], + [9.091278, 45.613941], + [9.091278, 45.609445], + [9.086781, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.613941], + [9.086781, 45.618438], + [9.091278, 45.618438], + [9.091278, 45.613941], + [9.086781, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.618438], + [9.086781, 45.622934], + [9.091278, 45.622934], + [9.091278, 45.618438], + [9.086781, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.622934], + [9.086781, 45.627431], + [9.091278, 45.627431], + [9.091278, 45.622934], + [9.086781, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.627431], + [9.086781, 45.631928], + [9.091278, 45.631928], + [9.091278, 45.627431], + [9.086781, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.631928], + [9.086781, 45.636424], + [9.091278, 45.636424], + [9.091278, 45.631928], + [9.086781, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.339648], + [9.091278, 45.344145], + [9.095774, 45.344145], + [9.095774, 45.339648], + [9.091278, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.344145], + [9.091278, 45.348642], + [9.095774, 45.348642], + [9.095774, 45.344145], + [9.091278, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.348642], + [9.091278, 45.353138], + [9.095774, 45.353138], + [9.095774, 45.348642], + [9.091278, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.353138], + [9.091278, 45.357635], + [9.095774, 45.357635], + [9.095774, 45.353138], + [9.091278, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.357635], + [9.091278, 45.362131], + [9.095774, 45.362131], + [9.095774, 45.357635], + [9.091278, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.362131], + [9.091278, 45.366628], + [9.095774, 45.366628], + [9.095774, 45.362131], + [9.091278, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.366628], + [9.091278, 45.371125], + [9.095774, 45.371125], + [9.095774, 45.366628], + [9.091278, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.371125], + [9.091278, 45.375621], + [9.095774, 45.375621], + [9.095774, 45.371125], + [9.091278, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.375621], + [9.091278, 45.380118], + [9.095774, 45.380118], + [9.095774, 45.375621], + [9.091278, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.380118], + [9.091278, 45.384614], + [9.095774, 45.384614], + [9.095774, 45.380118], + [9.091278, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.384614], + [9.091278, 45.389111], + [9.095774, 45.389111], + [9.095774, 45.384614], + [9.091278, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.389111], + [9.091278, 45.393608], + [9.095774, 45.393608], + [9.095774, 45.389111], + [9.091278, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.393608], + [9.091278, 45.398104], + [9.095774, 45.398104], + [9.095774, 45.393608], + [9.091278, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.398104], + [9.091278, 45.402601], + [9.095774, 45.402601], + [9.095774, 45.398104], + [9.091278, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.402601], + [9.091278, 45.407097], + [9.095774, 45.407097], + [9.095774, 45.402601], + [9.091278, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.407097], + [9.091278, 45.411594], + [9.095774, 45.411594], + [9.095774, 45.407097], + [9.091278, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.411594], + [9.091278, 45.416091], + [9.095774, 45.416091], + [9.095774, 45.411594], + [9.091278, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.416091], + [9.091278, 45.420587], + [9.095774, 45.420587], + [9.095774, 45.416091], + [9.091278, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.420587], + [9.091278, 45.425084], + [9.095774, 45.425084], + [9.095774, 45.420587], + [9.091278, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.425084], + [9.091278, 45.42958], + [9.095774, 45.42958], + [9.095774, 45.425084], + [9.091278, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.42958], + [9.091278, 45.434077], + [9.095774, 45.434077], + [9.095774, 45.42958], + [9.091278, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.434077], + [9.091278, 45.438574], + [9.095774, 45.438574], + [9.095774, 45.434077], + [9.091278, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.438574], + [9.091278, 45.44307], + [9.095774, 45.44307], + [9.095774, 45.438574], + [9.091278, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.44307], + [9.091278, 45.447567], + [9.095774, 45.447567], + [9.095774, 45.44307], + [9.091278, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.447567], + [9.091278, 45.452063], + [9.095774, 45.452063], + [9.095774, 45.447567], + [9.091278, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.452063], + [9.091278, 45.45656], + [9.095774, 45.45656], + [9.095774, 45.452063], + [9.091278, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.45656], + [9.091278, 45.461057], + [9.095774, 45.461057], + [9.095774, 45.45656], + [9.091278, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.461057], + [9.091278, 45.465553], + [9.095774, 45.465553], + [9.095774, 45.461057], + [9.091278, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.465553], + [9.091278, 45.47005], + [9.095774, 45.47005], + [9.095774, 45.465553], + [9.091278, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.47005], + [9.091278, 45.474547], + [9.095774, 45.474547], + [9.095774, 45.47005], + [9.091278, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.474547], + [9.091278, 45.479043], + [9.095774, 45.479043], + [9.095774, 45.474547], + [9.091278, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.479043], + [9.091278, 45.48354], + [9.095774, 45.48354], + [9.095774, 45.479043], + [9.091278, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.48354], + [9.091278, 45.488036], + [9.095774, 45.488036], + [9.095774, 45.48354], + [9.091278, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.488036], + [9.091278, 45.492533], + [9.095774, 45.492533], + [9.095774, 45.488036], + [9.091278, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.492533], + [9.091278, 45.49703], + [9.095774, 45.49703], + [9.095774, 45.492533], + [9.091278, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.49703], + [9.091278, 45.501526], + [9.095774, 45.501526], + [9.095774, 45.49703], + [9.091278, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.501526], + [9.091278, 45.506023], + [9.095774, 45.506023], + [9.095774, 45.501526], + [9.091278, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.506023], + [9.091278, 45.510519], + [9.095774, 45.510519], + [9.095774, 45.506023], + [9.091278, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.510519], + [9.091278, 45.515016], + [9.095774, 45.515016], + [9.095774, 45.510519], + [9.091278, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.515016], + [9.091278, 45.519513], + [9.095774, 45.519513], + [9.095774, 45.515016], + [9.091278, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.519513], + [9.091278, 45.524009], + [9.095774, 45.524009], + [9.095774, 45.519513], + [9.091278, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.524009], + [9.091278, 45.528506], + [9.095774, 45.528506], + [9.095774, 45.524009], + [9.091278, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.528506], + [9.091278, 45.533002], + [9.095774, 45.533002], + [9.095774, 45.528506], + [9.091278, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.533002], + [9.091278, 45.537499], + [9.095774, 45.537499], + [9.095774, 45.533002], + [9.091278, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.537499], + [9.091278, 45.541996], + [9.095774, 45.541996], + [9.095774, 45.537499], + [9.091278, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.541996], + [9.091278, 45.546492], + [9.095774, 45.546492], + [9.095774, 45.541996], + [9.091278, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.546492], + [9.091278, 45.550989], + [9.095774, 45.550989], + [9.095774, 45.546492], + [9.091278, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.550989], + [9.091278, 45.555485], + [9.095774, 45.555485], + [9.095774, 45.550989], + [9.091278, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.555485], + [9.091278, 45.559982], + [9.095774, 45.559982], + [9.095774, 45.555485], + [9.091278, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.559982], + [9.091278, 45.564479], + [9.095774, 45.564479], + [9.095774, 45.559982], + [9.091278, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.564479], + [9.091278, 45.568975], + [9.095774, 45.568975], + [9.095774, 45.564479], + [9.091278, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.568975], + [9.091278, 45.573472], + [9.095774, 45.573472], + [9.095774, 45.568975], + [9.091278, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.573472], + [9.091278, 45.577968], + [9.095774, 45.577968], + [9.095774, 45.573472], + [9.091278, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.577968], + [9.091278, 45.582465], + [9.095774, 45.582465], + [9.095774, 45.577968], + [9.091278, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.582465], + [9.091278, 45.586962], + [9.095774, 45.586962], + [9.095774, 45.582465], + [9.091278, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.586962], + [9.091278, 45.591458], + [9.095774, 45.591458], + [9.095774, 45.586962], + [9.091278, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.591458], + [9.091278, 45.595955], + [9.095774, 45.595955], + [9.095774, 45.591458], + [9.091278, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.595955], + [9.091278, 45.600451], + [9.095774, 45.600451], + [9.095774, 45.595955], + [9.091278, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.600451], + [9.091278, 45.604948], + [9.095774, 45.604948], + [9.095774, 45.600451], + [9.091278, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.604948], + [9.091278, 45.609445], + [9.095774, 45.609445], + [9.095774, 45.604948], + [9.091278, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.609445], + [9.091278, 45.613941], + [9.095774, 45.613941], + [9.095774, 45.609445], + [9.091278, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.613941], + [9.091278, 45.618438], + [9.095774, 45.618438], + [9.095774, 45.613941], + [9.091278, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.618438], + [9.091278, 45.622934], + [9.095774, 45.622934], + [9.095774, 45.618438], + [9.091278, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.622934], + [9.091278, 45.627431], + [9.095774, 45.627431], + [9.095774, 45.622934], + [9.091278, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.627431], + [9.091278, 45.631928], + [9.095774, 45.631928], + [9.095774, 45.627431], + [9.091278, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.631928], + [9.091278, 45.636424], + [9.095774, 45.636424], + [9.095774, 45.631928], + [9.091278, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.339648], + [9.095774, 45.344145], + [9.100271, 45.344145], + [9.100271, 45.339648], + [9.095774, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.344145], + [9.095774, 45.348642], + [9.100271, 45.348642], + [9.100271, 45.344145], + [9.095774, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.348642], + [9.095774, 45.353138], + [9.100271, 45.353138], + [9.100271, 45.348642], + [9.095774, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.353138], + [9.095774, 45.357635], + [9.100271, 45.357635], + [9.100271, 45.353138], + [9.095774, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.357635], + [9.095774, 45.362131], + [9.100271, 45.362131], + [9.100271, 45.357635], + [9.095774, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.362131], + [9.095774, 45.366628], + [9.100271, 45.366628], + [9.100271, 45.362131], + [9.095774, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.366628], + [9.095774, 45.371125], + [9.100271, 45.371125], + [9.100271, 45.366628], + [9.095774, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.371125], + [9.095774, 45.375621], + [9.100271, 45.375621], + [9.100271, 45.371125], + [9.095774, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.375621], + [9.095774, 45.380118], + [9.100271, 45.380118], + [9.100271, 45.375621], + [9.095774, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.380118], + [9.095774, 45.384614], + [9.100271, 45.384614], + [9.100271, 45.380118], + [9.095774, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.384614], + [9.095774, 45.389111], + [9.100271, 45.389111], + [9.100271, 45.384614], + [9.095774, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.389111], + [9.095774, 45.393608], + [9.100271, 45.393608], + [9.100271, 45.389111], + [9.095774, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.393608], + [9.095774, 45.398104], + [9.100271, 45.398104], + [9.100271, 45.393608], + [9.095774, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.398104], + [9.095774, 45.402601], + [9.100271, 45.402601], + [9.100271, 45.398104], + [9.095774, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.402601], + [9.095774, 45.407097], + [9.100271, 45.407097], + [9.100271, 45.402601], + [9.095774, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.407097], + [9.095774, 45.411594], + [9.100271, 45.411594], + [9.100271, 45.407097], + [9.095774, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.411594], + [9.095774, 45.416091], + [9.100271, 45.416091], + [9.100271, 45.411594], + [9.095774, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.416091], + [9.095774, 45.420587], + [9.100271, 45.420587], + [9.100271, 45.416091], + [9.095774, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.420587], + [9.095774, 45.425084], + [9.100271, 45.425084], + [9.100271, 45.420587], + [9.095774, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.425084], + [9.095774, 45.42958], + [9.100271, 45.42958], + [9.100271, 45.425084], + [9.095774, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.42958], + [9.095774, 45.434077], + [9.100271, 45.434077], + [9.100271, 45.42958], + [9.095774, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.434077], + [9.095774, 45.438574], + [9.100271, 45.438574], + [9.100271, 45.434077], + [9.095774, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.438574], + [9.095774, 45.44307], + [9.100271, 45.44307], + [9.100271, 45.438574], + [9.095774, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.44307], + [9.095774, 45.447567], + [9.100271, 45.447567], + [9.100271, 45.44307], + [9.095774, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.447567], + [9.095774, 45.452063], + [9.100271, 45.452063], + [9.100271, 45.447567], + [9.095774, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.452063], + [9.095774, 45.45656], + [9.100271, 45.45656], + [9.100271, 45.452063], + [9.095774, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.45656], + [9.095774, 45.461057], + [9.100271, 45.461057], + [9.100271, 45.45656], + [9.095774, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.461057], + [9.095774, 45.465553], + [9.100271, 45.465553], + [9.100271, 45.461057], + [9.095774, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.465553], + [9.095774, 45.47005], + [9.100271, 45.47005], + [9.100271, 45.465553], + [9.095774, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.47005], + [9.095774, 45.474547], + [9.100271, 45.474547], + [9.100271, 45.47005], + [9.095774, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.474547], + [9.095774, 45.479043], + [9.100271, 45.479043], + [9.100271, 45.474547], + [9.095774, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.479043], + [9.095774, 45.48354], + [9.100271, 45.48354], + [9.100271, 45.479043], + [9.095774, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.48354], + [9.095774, 45.488036], + [9.100271, 45.488036], + [9.100271, 45.48354], + [9.095774, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.488036], + [9.095774, 45.492533], + [9.100271, 45.492533], + [9.100271, 45.488036], + [9.095774, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.492533], + [9.095774, 45.49703], + [9.100271, 45.49703], + [9.100271, 45.492533], + [9.095774, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.49703], + [9.095774, 45.501526], + [9.100271, 45.501526], + [9.100271, 45.49703], + [9.095774, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.501526], + [9.095774, 45.506023], + [9.100271, 45.506023], + [9.100271, 45.501526], + [9.095774, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.506023], + [9.095774, 45.510519], + [9.100271, 45.510519], + [9.100271, 45.506023], + [9.095774, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.510519], + [9.095774, 45.515016], + [9.100271, 45.515016], + [9.100271, 45.510519], + [9.095774, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.515016], + [9.095774, 45.519513], + [9.100271, 45.519513], + [9.100271, 45.515016], + [9.095774, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.519513], + [9.095774, 45.524009], + [9.100271, 45.524009], + [9.100271, 45.519513], + [9.095774, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.524009], + [9.095774, 45.528506], + [9.100271, 45.528506], + [9.100271, 45.524009], + [9.095774, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.528506], + [9.095774, 45.533002], + [9.100271, 45.533002], + [9.100271, 45.528506], + [9.095774, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.533002], + [9.095774, 45.537499], + [9.100271, 45.537499], + [9.100271, 45.533002], + [9.095774, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.537499], + [9.095774, 45.541996], + [9.100271, 45.541996], + [9.100271, 45.537499], + [9.095774, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.541996], + [9.095774, 45.546492], + [9.100271, 45.546492], + [9.100271, 45.541996], + [9.095774, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.546492], + [9.095774, 45.550989], + [9.100271, 45.550989], + [9.100271, 45.546492], + [9.095774, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.550989], + [9.095774, 45.555485], + [9.100271, 45.555485], + [9.100271, 45.550989], + [9.095774, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.555485], + [9.095774, 45.559982], + [9.100271, 45.559982], + [9.100271, 45.555485], + [9.095774, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.559982], + [9.095774, 45.564479], + [9.100271, 45.564479], + [9.100271, 45.559982], + [9.095774, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.564479], + [9.095774, 45.568975], + [9.100271, 45.568975], + [9.100271, 45.564479], + [9.095774, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.568975], + [9.095774, 45.573472], + [9.100271, 45.573472], + [9.100271, 45.568975], + [9.095774, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.573472], + [9.095774, 45.577968], + [9.100271, 45.577968], + [9.100271, 45.573472], + [9.095774, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.577968], + [9.095774, 45.582465], + [9.100271, 45.582465], + [9.100271, 45.577968], + [9.095774, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.582465], + [9.095774, 45.586962], + [9.100271, 45.586962], + [9.100271, 45.582465], + [9.095774, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.586962], + [9.095774, 45.591458], + [9.100271, 45.591458], + [9.100271, 45.586962], + [9.095774, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.591458], + [9.095774, 45.595955], + [9.100271, 45.595955], + [9.100271, 45.591458], + [9.095774, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.595955], + [9.095774, 45.600451], + [9.100271, 45.600451], + [9.100271, 45.595955], + [9.095774, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.600451], + [9.095774, 45.604948], + [9.100271, 45.604948], + [9.100271, 45.600451], + [9.095774, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.604948], + [9.095774, 45.609445], + [9.100271, 45.609445], + [9.100271, 45.604948], + [9.095774, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.609445], + [9.095774, 45.613941], + [9.100271, 45.613941], + [9.100271, 45.609445], + [9.095774, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.613941], + [9.095774, 45.618438], + [9.100271, 45.618438], + [9.100271, 45.613941], + [9.095774, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.618438], + [9.095774, 45.622934], + [9.100271, 45.622934], + [9.100271, 45.618438], + [9.095774, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.622934], + [9.095774, 45.627431], + [9.100271, 45.627431], + [9.100271, 45.622934], + [9.095774, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.627431], + [9.095774, 45.631928], + [9.100271, 45.631928], + [9.100271, 45.627431], + [9.095774, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.631928], + [9.095774, 45.636424], + [9.100271, 45.636424], + [9.100271, 45.631928], + [9.095774, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.339648], + [9.100271, 45.344145], + [9.104767, 45.344145], + [9.104767, 45.339648], + [9.100271, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.344145], + [9.100271, 45.348642], + [9.104767, 45.348642], + [9.104767, 45.344145], + [9.100271, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.348642], + [9.100271, 45.353138], + [9.104767, 45.353138], + [9.104767, 45.348642], + [9.100271, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.353138], + [9.100271, 45.357635], + [9.104767, 45.357635], + [9.104767, 45.353138], + [9.100271, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.357635], + [9.100271, 45.362131], + [9.104767, 45.362131], + [9.104767, 45.357635], + [9.100271, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.362131], + [9.100271, 45.366628], + [9.104767, 45.366628], + [9.104767, 45.362131], + [9.100271, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.366628], + [9.100271, 45.371125], + [9.104767, 45.371125], + [9.104767, 45.366628], + [9.100271, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.371125], + [9.100271, 45.375621], + [9.104767, 45.375621], + [9.104767, 45.371125], + [9.100271, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.375621], + [9.100271, 45.380118], + [9.104767, 45.380118], + [9.104767, 45.375621], + [9.100271, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.380118], + [9.100271, 45.384614], + [9.104767, 45.384614], + [9.104767, 45.380118], + [9.100271, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.384614], + [9.100271, 45.389111], + [9.104767, 45.389111], + [9.104767, 45.384614], + [9.100271, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.389111], + [9.100271, 45.393608], + [9.104767, 45.393608], + [9.104767, 45.389111], + [9.100271, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.393608], + [9.100271, 45.398104], + [9.104767, 45.398104], + [9.104767, 45.393608], + [9.100271, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.398104], + [9.100271, 45.402601], + [9.104767, 45.402601], + [9.104767, 45.398104], + [9.100271, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.402601], + [9.100271, 45.407097], + [9.104767, 45.407097], + [9.104767, 45.402601], + [9.100271, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.407097], + [9.100271, 45.411594], + [9.104767, 45.411594], + [9.104767, 45.407097], + [9.100271, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.411594], + [9.100271, 45.416091], + [9.104767, 45.416091], + [9.104767, 45.411594], + [9.100271, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.416091], + [9.100271, 45.420587], + [9.104767, 45.420587], + [9.104767, 45.416091], + [9.100271, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.420587], + [9.100271, 45.425084], + [9.104767, 45.425084], + [9.104767, 45.420587], + [9.100271, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.425084], + [9.100271, 45.42958], + [9.104767, 45.42958], + [9.104767, 45.425084], + [9.100271, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.42958], + [9.100271, 45.434077], + [9.104767, 45.434077], + [9.104767, 45.42958], + [9.100271, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.434077], + [9.100271, 45.438574], + [9.104767, 45.438574], + [9.104767, 45.434077], + [9.100271, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.438574], + [9.100271, 45.44307], + [9.104767, 45.44307], + [9.104767, 45.438574], + [9.100271, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.44307], + [9.100271, 45.447567], + [9.104767, 45.447567], + [9.104767, 45.44307], + [9.100271, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.447567], + [9.100271, 45.452063], + [9.104767, 45.452063], + [9.104767, 45.447567], + [9.100271, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.452063], + [9.100271, 45.45656], + [9.104767, 45.45656], + [9.104767, 45.452063], + [9.100271, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.45656], + [9.100271, 45.461057], + [9.104767, 45.461057], + [9.104767, 45.45656], + [9.100271, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.461057], + [9.100271, 45.465553], + [9.104767, 45.465553], + [9.104767, 45.461057], + [9.100271, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.465553], + [9.100271, 45.47005], + [9.104767, 45.47005], + [9.104767, 45.465553], + [9.100271, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.47005], + [9.100271, 45.474547], + [9.104767, 45.474547], + [9.104767, 45.47005], + [9.100271, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.474547], + [9.100271, 45.479043], + [9.104767, 45.479043], + [9.104767, 45.474547], + [9.100271, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.479043], + [9.100271, 45.48354], + [9.104767, 45.48354], + [9.104767, 45.479043], + [9.100271, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.48354], + [9.100271, 45.488036], + [9.104767, 45.488036], + [9.104767, 45.48354], + [9.100271, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.488036], + [9.100271, 45.492533], + [9.104767, 45.492533], + [9.104767, 45.488036], + [9.100271, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.492533], + [9.100271, 45.49703], + [9.104767, 45.49703], + [9.104767, 45.492533], + [9.100271, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.49703], + [9.100271, 45.501526], + [9.104767, 45.501526], + [9.104767, 45.49703], + [9.100271, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.501526], + [9.100271, 45.506023], + [9.104767, 45.506023], + [9.104767, 45.501526], + [9.100271, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.506023], + [9.100271, 45.510519], + [9.104767, 45.510519], + [9.104767, 45.506023], + [9.100271, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.510519], + [9.100271, 45.515016], + [9.104767, 45.515016], + [9.104767, 45.510519], + [9.100271, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.515016], + [9.100271, 45.519513], + [9.104767, 45.519513], + [9.104767, 45.515016], + [9.100271, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.519513], + [9.100271, 45.524009], + [9.104767, 45.524009], + [9.104767, 45.519513], + [9.100271, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.524009], + [9.100271, 45.528506], + [9.104767, 45.528506], + [9.104767, 45.524009], + [9.100271, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.528506], + [9.100271, 45.533002], + [9.104767, 45.533002], + [9.104767, 45.528506], + [9.100271, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.533002], + [9.100271, 45.537499], + [9.104767, 45.537499], + [9.104767, 45.533002], + [9.100271, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.537499], + [9.100271, 45.541996], + [9.104767, 45.541996], + [9.104767, 45.537499], + [9.100271, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.541996], + [9.100271, 45.546492], + [9.104767, 45.546492], + [9.104767, 45.541996], + [9.100271, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.546492], + [9.100271, 45.550989], + [9.104767, 45.550989], + [9.104767, 45.546492], + [9.100271, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.550989], + [9.100271, 45.555485], + [9.104767, 45.555485], + [9.104767, 45.550989], + [9.100271, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.555485], + [9.100271, 45.559982], + [9.104767, 45.559982], + [9.104767, 45.555485], + [9.100271, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.559982], + [9.100271, 45.564479], + [9.104767, 45.564479], + [9.104767, 45.559982], + [9.100271, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.564479], + [9.100271, 45.568975], + [9.104767, 45.568975], + [9.104767, 45.564479], + [9.100271, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.568975], + [9.100271, 45.573472], + [9.104767, 45.573472], + [9.104767, 45.568975], + [9.100271, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.573472], + [9.100271, 45.577968], + [9.104767, 45.577968], + [9.104767, 45.573472], + [9.100271, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.577968], + [9.100271, 45.582465], + [9.104767, 45.582465], + [9.104767, 45.577968], + [9.100271, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.582465], + [9.100271, 45.586962], + [9.104767, 45.586962], + [9.104767, 45.582465], + [9.100271, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.586962], + [9.100271, 45.591458], + [9.104767, 45.591458], + [9.104767, 45.586962], + [9.100271, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.591458], + [9.100271, 45.595955], + [9.104767, 45.595955], + [9.104767, 45.591458], + [9.100271, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.595955], + [9.100271, 45.600451], + [9.104767, 45.600451], + [9.104767, 45.595955], + [9.100271, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.600451], + [9.100271, 45.604948], + [9.104767, 45.604948], + [9.104767, 45.600451], + [9.100271, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.604948], + [9.100271, 45.609445], + [9.104767, 45.609445], + [9.104767, 45.604948], + [9.100271, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.609445], + [9.100271, 45.613941], + [9.104767, 45.613941], + [9.104767, 45.609445], + [9.100271, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.613941], + [9.100271, 45.618438], + [9.104767, 45.618438], + [9.104767, 45.613941], + [9.100271, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.618438], + [9.100271, 45.622934], + [9.104767, 45.622934], + [9.104767, 45.618438], + [9.100271, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.622934], + [9.100271, 45.627431], + [9.104767, 45.627431], + [9.104767, 45.622934], + [9.100271, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.627431], + [9.100271, 45.631928], + [9.104767, 45.631928], + [9.104767, 45.627431], + [9.100271, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.631928], + [9.100271, 45.636424], + [9.104767, 45.636424], + [9.104767, 45.631928], + [9.100271, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.339648], + [9.104767, 45.344145], + [9.109264, 45.344145], + [9.109264, 45.339648], + [9.104767, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.344145], + [9.104767, 45.348642], + [9.109264, 45.348642], + [9.109264, 45.344145], + [9.104767, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.348642], + [9.104767, 45.353138], + [9.109264, 45.353138], + [9.109264, 45.348642], + [9.104767, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.353138], + [9.104767, 45.357635], + [9.109264, 45.357635], + [9.109264, 45.353138], + [9.104767, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.357635], + [9.104767, 45.362131], + [9.109264, 45.362131], + [9.109264, 45.357635], + [9.104767, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.362131], + [9.104767, 45.366628], + [9.109264, 45.366628], + [9.109264, 45.362131], + [9.104767, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.366628], + [9.104767, 45.371125], + [9.109264, 45.371125], + [9.109264, 45.366628], + [9.104767, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.371125], + [9.104767, 45.375621], + [9.109264, 45.375621], + [9.109264, 45.371125], + [9.104767, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.375621], + [9.104767, 45.380118], + [9.109264, 45.380118], + [9.109264, 45.375621], + [9.104767, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.380118], + [9.104767, 45.384614], + [9.109264, 45.384614], + [9.109264, 45.380118], + [9.104767, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.384614], + [9.104767, 45.389111], + [9.109264, 45.389111], + [9.109264, 45.384614], + [9.104767, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.389111], + [9.104767, 45.393608], + [9.109264, 45.393608], + [9.109264, 45.389111], + [9.104767, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.393608], + [9.104767, 45.398104], + [9.109264, 45.398104], + [9.109264, 45.393608], + [9.104767, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.398104], + [9.104767, 45.402601], + [9.109264, 45.402601], + [9.109264, 45.398104], + [9.104767, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.402601], + [9.104767, 45.407097], + [9.109264, 45.407097], + [9.109264, 45.402601], + [9.104767, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.407097], + [9.104767, 45.411594], + [9.109264, 45.411594], + [9.109264, 45.407097], + [9.104767, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.411594], + [9.104767, 45.416091], + [9.109264, 45.416091], + [9.109264, 45.411594], + [9.104767, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.416091], + [9.104767, 45.420587], + [9.109264, 45.420587], + [9.109264, 45.416091], + [9.104767, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.420587], + [9.104767, 45.425084], + [9.109264, 45.425084], + [9.109264, 45.420587], + [9.104767, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.425084], + [9.104767, 45.42958], + [9.109264, 45.42958], + [9.109264, 45.425084], + [9.104767, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.42958], + [9.104767, 45.434077], + [9.109264, 45.434077], + [9.109264, 45.42958], + [9.104767, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.434077], + [9.104767, 45.438574], + [9.109264, 45.438574], + [9.109264, 45.434077], + [9.104767, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.438574], + [9.104767, 45.44307], + [9.109264, 45.44307], + [9.109264, 45.438574], + [9.104767, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.44307], + [9.104767, 45.447567], + [9.109264, 45.447567], + [9.109264, 45.44307], + [9.104767, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.447567], + [9.104767, 45.452063], + [9.109264, 45.452063], + [9.109264, 45.447567], + [9.104767, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.452063], + [9.104767, 45.45656], + [9.109264, 45.45656], + [9.109264, 45.452063], + [9.104767, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.45656], + [9.104767, 45.461057], + [9.109264, 45.461057], + [9.109264, 45.45656], + [9.104767, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.461057], + [9.104767, 45.465553], + [9.109264, 45.465553], + [9.109264, 45.461057], + [9.104767, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.465553], + [9.104767, 45.47005], + [9.109264, 45.47005], + [9.109264, 45.465553], + [9.104767, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.47005], + [9.104767, 45.474547], + [9.109264, 45.474547], + [9.109264, 45.47005], + [9.104767, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.474547], + [9.104767, 45.479043], + [9.109264, 45.479043], + [9.109264, 45.474547], + [9.104767, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.479043], + [9.104767, 45.48354], + [9.109264, 45.48354], + [9.109264, 45.479043], + [9.104767, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.48354], + [9.104767, 45.488036], + [9.109264, 45.488036], + [9.109264, 45.48354], + [9.104767, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.488036], + [9.104767, 45.492533], + [9.109264, 45.492533], + [9.109264, 45.488036], + [9.104767, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.492533], + [9.104767, 45.49703], + [9.109264, 45.49703], + [9.109264, 45.492533], + [9.104767, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.49703], + [9.104767, 45.501526], + [9.109264, 45.501526], + [9.109264, 45.49703], + [9.104767, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.501526], + [9.104767, 45.506023], + [9.109264, 45.506023], + [9.109264, 45.501526], + [9.104767, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.506023], + [9.104767, 45.510519], + [9.109264, 45.510519], + [9.109264, 45.506023], + [9.104767, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.510519], + [9.104767, 45.515016], + [9.109264, 45.515016], + [9.109264, 45.510519], + [9.104767, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.515016], + [9.104767, 45.519513], + [9.109264, 45.519513], + [9.109264, 45.515016], + [9.104767, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.519513], + [9.104767, 45.524009], + [9.109264, 45.524009], + [9.109264, 45.519513], + [9.104767, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.524009], + [9.104767, 45.528506], + [9.109264, 45.528506], + [9.109264, 45.524009], + [9.104767, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.528506], + [9.104767, 45.533002], + [9.109264, 45.533002], + [9.109264, 45.528506], + [9.104767, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.533002], + [9.104767, 45.537499], + [9.109264, 45.537499], + [9.109264, 45.533002], + [9.104767, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.537499], + [9.104767, 45.541996], + [9.109264, 45.541996], + [9.109264, 45.537499], + [9.104767, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.541996], + [9.104767, 45.546492], + [9.109264, 45.546492], + [9.109264, 45.541996], + [9.104767, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.546492], + [9.104767, 45.550989], + [9.109264, 45.550989], + [9.109264, 45.546492], + [9.104767, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.550989], + [9.104767, 45.555485], + [9.109264, 45.555485], + [9.109264, 45.550989], + [9.104767, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.555485], + [9.104767, 45.559982], + [9.109264, 45.559982], + [9.109264, 45.555485], + [9.104767, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.559982], + [9.104767, 45.564479], + [9.109264, 45.564479], + [9.109264, 45.559982], + [9.104767, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.564479], + [9.104767, 45.568975], + [9.109264, 45.568975], + [9.109264, 45.564479], + [9.104767, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.568975], + [9.104767, 45.573472], + [9.109264, 45.573472], + [9.109264, 45.568975], + [9.104767, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.573472], + [9.104767, 45.577968], + [9.109264, 45.577968], + [9.109264, 45.573472], + [9.104767, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.577968], + [9.104767, 45.582465], + [9.109264, 45.582465], + [9.109264, 45.577968], + [9.104767, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.582465], + [9.104767, 45.586962], + [9.109264, 45.586962], + [9.109264, 45.582465], + [9.104767, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.586962], + [9.104767, 45.591458], + [9.109264, 45.591458], + [9.109264, 45.586962], + [9.104767, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.591458], + [9.104767, 45.595955], + [9.109264, 45.595955], + [9.109264, 45.591458], + [9.104767, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.595955], + [9.104767, 45.600451], + [9.109264, 45.600451], + [9.109264, 45.595955], + [9.104767, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.600451], + [9.104767, 45.604948], + [9.109264, 45.604948], + [9.109264, 45.600451], + [9.104767, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.604948], + [9.104767, 45.609445], + [9.109264, 45.609445], + [9.109264, 45.604948], + [9.104767, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.609445], + [9.104767, 45.613941], + [9.109264, 45.613941], + [9.109264, 45.609445], + [9.104767, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.613941], + [9.104767, 45.618438], + [9.109264, 45.618438], + [9.109264, 45.613941], + [9.104767, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.618438], + [9.104767, 45.622934], + [9.109264, 45.622934], + [9.109264, 45.618438], + [9.104767, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.622934], + [9.104767, 45.627431], + [9.109264, 45.627431], + [9.109264, 45.622934], + [9.104767, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.627431], + [9.104767, 45.631928], + [9.109264, 45.631928], + [9.109264, 45.627431], + [9.104767, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.631928], + [9.104767, 45.636424], + [9.109264, 45.636424], + [9.109264, 45.631928], + [9.104767, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.339648], + [9.109264, 45.344145], + [9.113761, 45.344145], + [9.113761, 45.339648], + [9.109264, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.344145], + [9.109264, 45.348642], + [9.113761, 45.348642], + [9.113761, 45.344145], + [9.109264, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.348642], + [9.109264, 45.353138], + [9.113761, 45.353138], + [9.113761, 45.348642], + [9.109264, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.353138], + [9.109264, 45.357635], + [9.113761, 45.357635], + [9.113761, 45.353138], + [9.109264, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.357635], + [9.109264, 45.362131], + [9.113761, 45.362131], + [9.113761, 45.357635], + [9.109264, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.362131], + [9.109264, 45.366628], + [9.113761, 45.366628], + [9.113761, 45.362131], + [9.109264, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.366628], + [9.109264, 45.371125], + [9.113761, 45.371125], + [9.113761, 45.366628], + [9.109264, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.371125], + [9.109264, 45.375621], + [9.113761, 45.375621], + [9.113761, 45.371125], + [9.109264, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.375621], + [9.109264, 45.380118], + [9.113761, 45.380118], + [9.113761, 45.375621], + [9.109264, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.380118], + [9.109264, 45.384614], + [9.113761, 45.384614], + [9.113761, 45.380118], + [9.109264, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.384614], + [9.109264, 45.389111], + [9.113761, 45.389111], + [9.113761, 45.384614], + [9.109264, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.389111], + [9.109264, 45.393608], + [9.113761, 45.393608], + [9.113761, 45.389111], + [9.109264, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.393608], + [9.109264, 45.398104], + [9.113761, 45.398104], + [9.113761, 45.393608], + [9.109264, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.398104], + [9.109264, 45.402601], + [9.113761, 45.402601], + [9.113761, 45.398104], + [9.109264, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.402601], + [9.109264, 45.407097], + [9.113761, 45.407097], + [9.113761, 45.402601], + [9.109264, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.407097], + [9.109264, 45.411594], + [9.113761, 45.411594], + [9.113761, 45.407097], + [9.109264, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.411594], + [9.109264, 45.416091], + [9.113761, 45.416091], + [9.113761, 45.411594], + [9.109264, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.416091], + [9.109264, 45.420587], + [9.113761, 45.420587], + [9.113761, 45.416091], + [9.109264, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.420587], + [9.109264, 45.425084], + [9.113761, 45.425084], + [9.113761, 45.420587], + [9.109264, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.425084], + [9.109264, 45.42958], + [9.113761, 45.42958], + [9.113761, 45.425084], + [9.109264, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.42958], + [9.109264, 45.434077], + [9.113761, 45.434077], + [9.113761, 45.42958], + [9.109264, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.434077], + [9.109264, 45.438574], + [9.113761, 45.438574], + [9.113761, 45.434077], + [9.109264, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.438574], + [9.109264, 45.44307], + [9.113761, 45.44307], + [9.113761, 45.438574], + [9.109264, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.44307], + [9.109264, 45.447567], + [9.113761, 45.447567], + [9.113761, 45.44307], + [9.109264, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.447567], + [9.109264, 45.452063], + [9.113761, 45.452063], + [9.113761, 45.447567], + [9.109264, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.452063], + [9.109264, 45.45656], + [9.113761, 45.45656], + [9.113761, 45.452063], + [9.109264, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.45656], + [9.109264, 45.461057], + [9.113761, 45.461057], + [9.113761, 45.45656], + [9.109264, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.461057], + [9.109264, 45.465553], + [9.113761, 45.465553], + [9.113761, 45.461057], + [9.109264, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.465553], + [9.109264, 45.47005], + [9.113761, 45.47005], + [9.113761, 45.465553], + [9.109264, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.47005], + [9.109264, 45.474547], + [9.113761, 45.474547], + [9.113761, 45.47005], + [9.109264, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.474547], + [9.109264, 45.479043], + [9.113761, 45.479043], + [9.113761, 45.474547], + [9.109264, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.479043], + [9.109264, 45.48354], + [9.113761, 45.48354], + [9.113761, 45.479043], + [9.109264, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.48354], + [9.109264, 45.488036], + [9.113761, 45.488036], + [9.113761, 45.48354], + [9.109264, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.488036], + [9.109264, 45.492533], + [9.113761, 45.492533], + [9.113761, 45.488036], + [9.109264, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.492533], + [9.109264, 45.49703], + [9.113761, 45.49703], + [9.113761, 45.492533], + [9.109264, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.49703], + [9.109264, 45.501526], + [9.113761, 45.501526], + [9.113761, 45.49703], + [9.109264, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.501526], + [9.109264, 45.506023], + [9.113761, 45.506023], + [9.113761, 45.501526], + [9.109264, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.506023], + [9.109264, 45.510519], + [9.113761, 45.510519], + [9.113761, 45.506023], + [9.109264, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.510519], + [9.109264, 45.515016], + [9.113761, 45.515016], + [9.113761, 45.510519], + [9.109264, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.515016], + [9.109264, 45.519513], + [9.113761, 45.519513], + [9.113761, 45.515016], + [9.109264, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.519513], + [9.109264, 45.524009], + [9.113761, 45.524009], + [9.113761, 45.519513], + [9.109264, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.524009], + [9.109264, 45.528506], + [9.113761, 45.528506], + [9.113761, 45.524009], + [9.109264, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.528506], + [9.109264, 45.533002], + [9.113761, 45.533002], + [9.113761, 45.528506], + [9.109264, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.533002], + [9.109264, 45.537499], + [9.113761, 45.537499], + [9.113761, 45.533002], + [9.109264, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.537499], + [9.109264, 45.541996], + [9.113761, 45.541996], + [9.113761, 45.537499], + [9.109264, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.541996], + [9.109264, 45.546492], + [9.113761, 45.546492], + [9.113761, 45.541996], + [9.109264, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.546492], + [9.109264, 45.550989], + [9.113761, 45.550989], + [9.113761, 45.546492], + [9.109264, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.550989], + [9.109264, 45.555485], + [9.113761, 45.555485], + [9.113761, 45.550989], + [9.109264, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.555485], + [9.109264, 45.559982], + [9.113761, 45.559982], + [9.113761, 45.555485], + [9.109264, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.559982], + [9.109264, 45.564479], + [9.113761, 45.564479], + [9.113761, 45.559982], + [9.109264, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.564479], + [9.109264, 45.568975], + [9.113761, 45.568975], + [9.113761, 45.564479], + [9.109264, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.568975], + [9.109264, 45.573472], + [9.113761, 45.573472], + [9.113761, 45.568975], + [9.109264, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.573472], + [9.109264, 45.577968], + [9.113761, 45.577968], + [9.113761, 45.573472], + [9.109264, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.577968], + [9.109264, 45.582465], + [9.113761, 45.582465], + [9.113761, 45.577968], + [9.109264, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.582465], + [9.109264, 45.586962], + [9.113761, 45.586962], + [9.113761, 45.582465], + [9.109264, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.586962], + [9.109264, 45.591458], + [9.113761, 45.591458], + [9.113761, 45.586962], + [9.109264, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.591458], + [9.109264, 45.595955], + [9.113761, 45.595955], + [9.113761, 45.591458], + [9.109264, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.595955], + [9.109264, 45.600451], + [9.113761, 45.600451], + [9.113761, 45.595955], + [9.109264, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.600451], + [9.109264, 45.604948], + [9.113761, 45.604948], + [9.113761, 45.600451], + [9.109264, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.604948], + [9.109264, 45.609445], + [9.113761, 45.609445], + [9.113761, 45.604948], + [9.109264, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.609445], + [9.109264, 45.613941], + [9.113761, 45.613941], + [9.113761, 45.609445], + [9.109264, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.613941], + [9.109264, 45.618438], + [9.113761, 45.618438], + [9.113761, 45.613941], + [9.109264, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.618438], + [9.109264, 45.622934], + [9.113761, 45.622934], + [9.113761, 45.618438], + [9.109264, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.622934], + [9.109264, 45.627431], + [9.113761, 45.627431], + [9.113761, 45.622934], + [9.109264, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.627431], + [9.109264, 45.631928], + [9.113761, 45.631928], + [9.113761, 45.627431], + [9.109264, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.631928], + [9.109264, 45.636424], + [9.113761, 45.636424], + [9.113761, 45.631928], + [9.109264, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.339648], + [9.113761, 45.344145], + [9.118257, 45.344145], + [9.118257, 45.339648], + [9.113761, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.344145], + [9.113761, 45.348642], + [9.118257, 45.348642], + [9.118257, 45.344145], + [9.113761, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.348642], + [9.113761, 45.353138], + [9.118257, 45.353138], + [9.118257, 45.348642], + [9.113761, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.353138], + [9.113761, 45.357635], + [9.118257, 45.357635], + [9.118257, 45.353138], + [9.113761, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.357635], + [9.113761, 45.362131], + [9.118257, 45.362131], + [9.118257, 45.357635], + [9.113761, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.362131], + [9.113761, 45.366628], + [9.118257, 45.366628], + [9.118257, 45.362131], + [9.113761, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.366628], + [9.113761, 45.371125], + [9.118257, 45.371125], + [9.118257, 45.366628], + [9.113761, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.371125], + [9.113761, 45.375621], + [9.118257, 45.375621], + [9.118257, 45.371125], + [9.113761, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.375621], + [9.113761, 45.380118], + [9.118257, 45.380118], + [9.118257, 45.375621], + [9.113761, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.380118], + [9.113761, 45.384614], + [9.118257, 45.384614], + [9.118257, 45.380118], + [9.113761, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.384614], + [9.113761, 45.389111], + [9.118257, 45.389111], + [9.118257, 45.384614], + [9.113761, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.389111], + [9.113761, 45.393608], + [9.118257, 45.393608], + [9.118257, 45.389111], + [9.113761, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.393608], + [9.113761, 45.398104], + [9.118257, 45.398104], + [9.118257, 45.393608], + [9.113761, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.398104], + [9.113761, 45.402601], + [9.118257, 45.402601], + [9.118257, 45.398104], + [9.113761, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.402601], + [9.113761, 45.407097], + [9.118257, 45.407097], + [9.118257, 45.402601], + [9.113761, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.407097], + [9.113761, 45.411594], + [9.118257, 45.411594], + [9.118257, 45.407097], + [9.113761, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.411594], + [9.113761, 45.416091], + [9.118257, 45.416091], + [9.118257, 45.411594], + [9.113761, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.416091], + [9.113761, 45.420587], + [9.118257, 45.420587], + [9.118257, 45.416091], + [9.113761, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.420587], + [9.113761, 45.425084], + [9.118257, 45.425084], + [9.118257, 45.420587], + [9.113761, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.425084], + [9.113761, 45.42958], + [9.118257, 45.42958], + [9.118257, 45.425084], + [9.113761, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.42958], + [9.113761, 45.434077], + [9.118257, 45.434077], + [9.118257, 45.42958], + [9.113761, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.434077], + [9.113761, 45.438574], + [9.118257, 45.438574], + [9.118257, 45.434077], + [9.113761, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 14, + "stroke": "#e0f0ff", + "fill": "#e0f0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.438574], + [9.113761, 45.44307], + [9.118257, 45.44307], + [9.118257, 45.438574], + [9.113761, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.44307], + [9.113761, 45.447567], + [9.118257, 45.447567], + [9.118257, 45.44307], + [9.113761, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.447567], + [9.113761, 45.452063], + [9.118257, 45.452063], + [9.118257, 45.447567], + [9.113761, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.452063], + [9.113761, 45.45656], + [9.118257, 45.45656], + [9.118257, 45.452063], + [9.113761, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.45656], + [9.113761, 45.461057], + [9.118257, 45.461057], + [9.118257, 45.45656], + [9.113761, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.461057], + [9.113761, 45.465553], + [9.118257, 45.465553], + [9.118257, 45.461057], + [9.113761, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.465553], + [9.113761, 45.47005], + [9.118257, 45.47005], + [9.118257, 45.465553], + [9.113761, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.47005], + [9.113761, 45.474547], + [9.118257, 45.474547], + [9.118257, 45.47005], + [9.113761, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.474547], + [9.113761, 45.479043], + [9.118257, 45.479043], + [9.118257, 45.474547], + [9.113761, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.479043], + [9.113761, 45.48354], + [9.118257, 45.48354], + [9.118257, 45.479043], + [9.113761, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.48354], + [9.113761, 45.488036], + [9.118257, 45.488036], + [9.118257, 45.48354], + [9.113761, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.488036], + [9.113761, 45.492533], + [9.118257, 45.492533], + [9.118257, 45.488036], + [9.113761, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.492533], + [9.113761, 45.49703], + [9.118257, 45.49703], + [9.118257, 45.492533], + [9.113761, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.49703], + [9.113761, 45.501526], + [9.118257, 45.501526], + [9.118257, 45.49703], + [9.113761, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.501526], + [9.113761, 45.506023], + [9.118257, 45.506023], + [9.118257, 45.501526], + [9.113761, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.506023], + [9.113761, 45.510519], + [9.118257, 45.510519], + [9.118257, 45.506023], + [9.113761, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.510519], + [9.113761, 45.515016], + [9.118257, 45.515016], + [9.118257, 45.510519], + [9.113761, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.515016], + [9.113761, 45.519513], + [9.118257, 45.519513], + [9.118257, 45.515016], + [9.113761, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.519513], + [9.113761, 45.524009], + [9.118257, 45.524009], + [9.118257, 45.519513], + [9.113761, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.524009], + [9.113761, 45.528506], + [9.118257, 45.528506], + [9.118257, 45.524009], + [9.113761, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.528506], + [9.113761, 45.533002], + [9.118257, 45.533002], + [9.118257, 45.528506], + [9.113761, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.533002], + [9.113761, 45.537499], + [9.118257, 45.537499], + [9.118257, 45.533002], + [9.113761, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.537499], + [9.113761, 45.541996], + [9.118257, 45.541996], + [9.118257, 45.537499], + [9.113761, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.541996], + [9.113761, 45.546492], + [9.118257, 45.546492], + [9.118257, 45.541996], + [9.113761, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.546492], + [9.113761, 45.550989], + [9.118257, 45.550989], + [9.118257, 45.546492], + [9.113761, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.550989], + [9.113761, 45.555485], + [9.118257, 45.555485], + [9.118257, 45.550989], + [9.113761, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.555485], + [9.113761, 45.559982], + [9.118257, 45.559982], + [9.118257, 45.555485], + [9.113761, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.559982], + [9.113761, 45.564479], + [9.118257, 45.564479], + [9.118257, 45.559982], + [9.113761, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.564479], + [9.113761, 45.568975], + [9.118257, 45.568975], + [9.118257, 45.564479], + [9.113761, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.568975], + [9.113761, 45.573472], + [9.118257, 45.573472], + [9.118257, 45.568975], + [9.113761, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.573472], + [9.113761, 45.577968], + [9.118257, 45.577968], + [9.118257, 45.573472], + [9.113761, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.577968], + [9.113761, 45.582465], + [9.118257, 45.582465], + [9.118257, 45.577968], + [9.113761, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.582465], + [9.113761, 45.586962], + [9.118257, 45.586962], + [9.118257, 45.582465], + [9.113761, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.586962], + [9.113761, 45.591458], + [9.118257, 45.591458], + [9.118257, 45.586962], + [9.113761, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.591458], + [9.113761, 45.595955], + [9.118257, 45.595955], + [9.118257, 45.591458], + [9.113761, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.595955], + [9.113761, 45.600451], + [9.118257, 45.600451], + [9.118257, 45.595955], + [9.113761, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.600451], + [9.113761, 45.604948], + [9.118257, 45.604948], + [9.118257, 45.600451], + [9.113761, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.604948], + [9.113761, 45.609445], + [9.118257, 45.609445], + [9.118257, 45.604948], + [9.113761, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.609445], + [9.113761, 45.613941], + [9.118257, 45.613941], + [9.118257, 45.609445], + [9.113761, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.613941], + [9.113761, 45.618438], + [9.118257, 45.618438], + [9.118257, 45.613941], + [9.113761, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.618438], + [9.113761, 45.622934], + [9.118257, 45.622934], + [9.118257, 45.618438], + [9.113761, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.622934], + [9.113761, 45.627431], + [9.118257, 45.627431], + [9.118257, 45.622934], + [9.113761, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.627431], + [9.113761, 45.631928], + [9.118257, 45.631928], + [9.118257, 45.627431], + [9.113761, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.631928], + [9.113761, 45.636424], + [9.118257, 45.636424], + [9.118257, 45.631928], + [9.113761, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.339648], + [9.118257, 45.344145], + [9.122754, 45.344145], + [9.122754, 45.339648], + [9.118257, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.344145], + [9.118257, 45.348642], + [9.122754, 45.348642], + [9.122754, 45.344145], + [9.118257, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.348642], + [9.118257, 45.353138], + [9.122754, 45.353138], + [9.122754, 45.348642], + [9.118257, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.353138], + [9.118257, 45.357635], + [9.122754, 45.357635], + [9.122754, 45.353138], + [9.118257, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.357635], + [9.118257, 45.362131], + [9.122754, 45.362131], + [9.122754, 45.357635], + [9.118257, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.362131], + [9.118257, 45.366628], + [9.122754, 45.366628], + [9.122754, 45.362131], + [9.118257, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.366628], + [9.118257, 45.371125], + [9.122754, 45.371125], + [9.122754, 45.366628], + [9.118257, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.371125], + [9.118257, 45.375621], + [9.122754, 45.375621], + [9.122754, 45.371125], + [9.118257, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.375621], + [9.118257, 45.380118], + [9.122754, 45.380118], + [9.122754, 45.375621], + [9.118257, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.380118], + [9.118257, 45.384614], + [9.122754, 45.384614], + [9.122754, 45.380118], + [9.118257, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.384614], + [9.118257, 45.389111], + [9.122754, 45.389111], + [9.122754, 45.384614], + [9.118257, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.389111], + [9.118257, 45.393608], + [9.122754, 45.393608], + [9.122754, 45.389111], + [9.118257, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.393608], + [9.118257, 45.398104], + [9.122754, 45.398104], + [9.122754, 45.393608], + [9.118257, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.398104], + [9.118257, 45.402601], + [9.122754, 45.402601], + [9.122754, 45.398104], + [9.118257, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.402601], + [9.118257, 45.407097], + [9.122754, 45.407097], + [9.122754, 45.402601], + [9.118257, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.407097], + [9.118257, 45.411594], + [9.122754, 45.411594], + [9.122754, 45.407097], + [9.118257, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.411594], + [9.118257, 45.416091], + [9.122754, 45.416091], + [9.122754, 45.411594], + [9.118257, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.416091], + [9.118257, 45.420587], + [9.122754, 45.420587], + [9.122754, 45.416091], + [9.118257, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.420587], + [9.118257, 45.425084], + [9.122754, 45.425084], + [9.122754, 45.420587], + [9.118257, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.425084], + [9.118257, 45.42958], + [9.122754, 45.42958], + [9.122754, 45.425084], + [9.118257, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.42958], + [9.118257, 45.434077], + [9.122754, 45.434077], + [9.122754, 45.42958], + [9.118257, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.434077], + [9.118257, 45.438574], + [9.122754, 45.438574], + [9.122754, 45.434077], + [9.118257, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.438574], + [9.118257, 45.44307], + [9.122754, 45.44307], + [9.122754, 45.438574], + [9.118257, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.44307], + [9.118257, 45.447567], + [9.122754, 45.447567], + [9.122754, 45.44307], + [9.118257, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.447567], + [9.118257, 45.452063], + [9.122754, 45.452063], + [9.122754, 45.447567], + [9.118257, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.452063], + [9.118257, 45.45656], + [9.122754, 45.45656], + [9.122754, 45.452063], + [9.118257, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.45656], + [9.118257, 45.461057], + [9.122754, 45.461057], + [9.122754, 45.45656], + [9.118257, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.461057], + [9.118257, 45.465553], + [9.122754, 45.465553], + [9.122754, 45.461057], + [9.118257, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.465553], + [9.118257, 45.47005], + [9.122754, 45.47005], + [9.122754, 45.465553], + [9.118257, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.47005], + [9.118257, 45.474547], + [9.122754, 45.474547], + [9.122754, 45.47005], + [9.118257, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.474547], + [9.118257, 45.479043], + [9.122754, 45.479043], + [9.122754, 45.474547], + [9.118257, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.479043], + [9.118257, 45.48354], + [9.122754, 45.48354], + [9.122754, 45.479043], + [9.118257, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.48354], + [9.118257, 45.488036], + [9.122754, 45.488036], + [9.122754, 45.48354], + [9.118257, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.488036], + [9.118257, 45.492533], + [9.122754, 45.492533], + [9.122754, 45.488036], + [9.118257, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.492533], + [9.118257, 45.49703], + [9.122754, 45.49703], + [9.122754, 45.492533], + [9.118257, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.49703], + [9.118257, 45.501526], + [9.122754, 45.501526], + [9.122754, 45.49703], + [9.118257, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.501526], + [9.118257, 45.506023], + [9.122754, 45.506023], + [9.122754, 45.501526], + [9.118257, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.506023], + [9.118257, 45.510519], + [9.122754, 45.510519], + [9.122754, 45.506023], + [9.118257, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.510519], + [9.118257, 45.515016], + [9.122754, 45.515016], + [9.122754, 45.510519], + [9.118257, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.515016], + [9.118257, 45.519513], + [9.122754, 45.519513], + [9.122754, 45.515016], + [9.118257, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.519513], + [9.118257, 45.524009], + [9.122754, 45.524009], + [9.122754, 45.519513], + [9.118257, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.524009], + [9.118257, 45.528506], + [9.122754, 45.528506], + [9.122754, 45.524009], + [9.118257, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.528506], + [9.118257, 45.533002], + [9.122754, 45.533002], + [9.122754, 45.528506], + [9.118257, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.533002], + [9.118257, 45.537499], + [9.122754, 45.537499], + [9.122754, 45.533002], + [9.118257, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.537499], + [9.118257, 45.541996], + [9.122754, 45.541996], + [9.122754, 45.537499], + [9.118257, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.541996], + [9.118257, 45.546492], + [9.122754, 45.546492], + [9.122754, 45.541996], + [9.118257, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.546492], + [9.118257, 45.550989], + [9.122754, 45.550989], + [9.122754, 45.546492], + [9.118257, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.550989], + [9.118257, 45.555485], + [9.122754, 45.555485], + [9.122754, 45.550989], + [9.118257, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.555485], + [9.118257, 45.559982], + [9.122754, 45.559982], + [9.122754, 45.555485], + [9.118257, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.559982], + [9.118257, 45.564479], + [9.122754, 45.564479], + [9.122754, 45.559982], + [9.118257, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.564479], + [9.118257, 45.568975], + [9.122754, 45.568975], + [9.122754, 45.564479], + [9.118257, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.568975], + [9.118257, 45.573472], + [9.122754, 45.573472], + [9.122754, 45.568975], + [9.118257, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.573472], + [9.118257, 45.577968], + [9.122754, 45.577968], + [9.122754, 45.573472], + [9.118257, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.577968], + [9.118257, 45.582465], + [9.122754, 45.582465], + [9.122754, 45.577968], + [9.118257, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.582465], + [9.118257, 45.586962], + [9.122754, 45.586962], + [9.122754, 45.582465], + [9.118257, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.586962], + [9.118257, 45.591458], + [9.122754, 45.591458], + [9.122754, 45.586962], + [9.118257, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.591458], + [9.118257, 45.595955], + [9.122754, 45.595955], + [9.122754, 45.591458], + [9.118257, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.595955], + [9.118257, 45.600451], + [9.122754, 45.600451], + [9.122754, 45.595955], + [9.118257, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.600451], + [9.118257, 45.604948], + [9.122754, 45.604948], + [9.122754, 45.600451], + [9.118257, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.604948], + [9.118257, 45.609445], + [9.122754, 45.609445], + [9.122754, 45.604948], + [9.118257, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.609445], + [9.118257, 45.613941], + [9.122754, 45.613941], + [9.122754, 45.609445], + [9.118257, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.613941], + [9.118257, 45.618438], + [9.122754, 45.618438], + [9.122754, 45.613941], + [9.118257, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.618438], + [9.118257, 45.622934], + [9.122754, 45.622934], + [9.122754, 45.618438], + [9.118257, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.622934], + [9.118257, 45.627431], + [9.122754, 45.627431], + [9.122754, 45.622934], + [9.118257, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.627431], + [9.118257, 45.631928], + [9.122754, 45.631928], + [9.122754, 45.627431], + [9.118257, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.631928], + [9.118257, 45.636424], + [9.122754, 45.636424], + [9.122754, 45.631928], + [9.118257, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.339648], + [9.122754, 45.344145], + [9.12725, 45.344145], + [9.12725, 45.339648], + [9.122754, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.344145], + [9.122754, 45.348642], + [9.12725, 45.348642], + [9.12725, 45.344145], + [9.122754, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.348642], + [9.122754, 45.353138], + [9.12725, 45.353138], + [9.12725, 45.348642], + [9.122754, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.353138], + [9.122754, 45.357635], + [9.12725, 45.357635], + [9.12725, 45.353138], + [9.122754, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.357635], + [9.122754, 45.362131], + [9.12725, 45.362131], + [9.12725, 45.357635], + [9.122754, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.362131], + [9.122754, 45.366628], + [9.12725, 45.366628], + [9.12725, 45.362131], + [9.122754, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.366628], + [9.122754, 45.371125], + [9.12725, 45.371125], + [9.12725, 45.366628], + [9.122754, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.371125], + [9.122754, 45.375621], + [9.12725, 45.375621], + [9.12725, 45.371125], + [9.122754, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.375621], + [9.122754, 45.380118], + [9.12725, 45.380118], + [9.12725, 45.375621], + [9.122754, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.380118], + [9.122754, 45.384614], + [9.12725, 45.384614], + [9.12725, 45.380118], + [9.122754, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.384614], + [9.122754, 45.389111], + [9.12725, 45.389111], + [9.12725, 45.384614], + [9.122754, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.389111], + [9.122754, 45.393608], + [9.12725, 45.393608], + [9.12725, 45.389111], + [9.122754, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.393608], + [9.122754, 45.398104], + [9.12725, 45.398104], + [9.12725, 45.393608], + [9.122754, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.398104], + [9.122754, 45.402601], + [9.12725, 45.402601], + [9.12725, 45.398104], + [9.122754, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.402601], + [9.122754, 45.407097], + [9.12725, 45.407097], + [9.12725, 45.402601], + [9.122754, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.407097], + [9.122754, 45.411594], + [9.12725, 45.411594], + [9.12725, 45.407097], + [9.122754, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.411594], + [9.122754, 45.416091], + [9.12725, 45.416091], + [9.12725, 45.411594], + [9.122754, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.416091], + [9.122754, 45.420587], + [9.12725, 45.420587], + [9.12725, 45.416091], + [9.122754, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.420587], + [9.122754, 45.425084], + [9.12725, 45.425084], + [9.12725, 45.420587], + [9.122754, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.425084], + [9.122754, 45.42958], + [9.12725, 45.42958], + [9.12725, 45.425084], + [9.122754, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.42958], + [9.122754, 45.434077], + [9.12725, 45.434077], + [9.12725, 45.42958], + [9.122754, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.434077], + [9.122754, 45.438574], + [9.12725, 45.438574], + [9.12725, 45.434077], + [9.122754, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.438574], + [9.122754, 45.44307], + [9.12725, 45.44307], + [9.12725, 45.438574], + [9.122754, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.44307], + [9.122754, 45.447567], + [9.12725, 45.447567], + [9.12725, 45.44307], + [9.122754, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.447567], + [9.122754, 45.452063], + [9.12725, 45.452063], + [9.12725, 45.447567], + [9.122754, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.452063], + [9.122754, 45.45656], + [9.12725, 45.45656], + [9.12725, 45.452063], + [9.122754, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.45656], + [9.122754, 45.461057], + [9.12725, 45.461057], + [9.12725, 45.45656], + [9.122754, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.461057], + [9.122754, 45.465553], + [9.12725, 45.465553], + [9.12725, 45.461057], + [9.122754, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.465553], + [9.122754, 45.47005], + [9.12725, 45.47005], + [9.12725, 45.465553], + [9.122754, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.47005], + [9.122754, 45.474547], + [9.12725, 45.474547], + [9.12725, 45.47005], + [9.122754, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.474547], + [9.122754, 45.479043], + [9.12725, 45.479043], + [9.12725, 45.474547], + [9.122754, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.479043], + [9.122754, 45.48354], + [9.12725, 45.48354], + [9.12725, 45.479043], + [9.122754, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.48354], + [9.122754, 45.488036], + [9.12725, 45.488036], + [9.12725, 45.48354], + [9.122754, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.488036], + [9.122754, 45.492533], + [9.12725, 45.492533], + [9.12725, 45.488036], + [9.122754, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.492533], + [9.122754, 45.49703], + [9.12725, 45.49703], + [9.12725, 45.492533], + [9.122754, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.49703], + [9.122754, 45.501526], + [9.12725, 45.501526], + [9.12725, 45.49703], + [9.122754, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.501526], + [9.122754, 45.506023], + [9.12725, 45.506023], + [9.12725, 45.501526], + [9.122754, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.506023], + [9.122754, 45.510519], + [9.12725, 45.510519], + [9.12725, 45.506023], + [9.122754, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.510519], + [9.122754, 45.515016], + [9.12725, 45.515016], + [9.12725, 45.510519], + [9.122754, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.515016], + [9.122754, 45.519513], + [9.12725, 45.519513], + [9.12725, 45.515016], + [9.122754, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.519513], + [9.122754, 45.524009], + [9.12725, 45.524009], + [9.12725, 45.519513], + [9.122754, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.524009], + [9.122754, 45.528506], + [9.12725, 45.528506], + [9.12725, 45.524009], + [9.122754, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.528506], + [9.122754, 45.533002], + [9.12725, 45.533002], + [9.12725, 45.528506], + [9.122754, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.533002], + [9.122754, 45.537499], + [9.12725, 45.537499], + [9.12725, 45.533002], + [9.122754, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.537499], + [9.122754, 45.541996], + [9.12725, 45.541996], + [9.12725, 45.537499], + [9.122754, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.541996], + [9.122754, 45.546492], + [9.12725, 45.546492], + [9.12725, 45.541996], + [9.122754, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.546492], + [9.122754, 45.550989], + [9.12725, 45.550989], + [9.12725, 45.546492], + [9.122754, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.550989], + [9.122754, 45.555485], + [9.12725, 45.555485], + [9.12725, 45.550989], + [9.122754, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.555485], + [9.122754, 45.559982], + [9.12725, 45.559982], + [9.12725, 45.555485], + [9.122754, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.559982], + [9.122754, 45.564479], + [9.12725, 45.564479], + [9.12725, 45.559982], + [9.122754, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.564479], + [9.122754, 45.568975], + [9.12725, 45.568975], + [9.12725, 45.564479], + [9.122754, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.568975], + [9.122754, 45.573472], + [9.12725, 45.573472], + [9.12725, 45.568975], + [9.122754, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.573472], + [9.122754, 45.577968], + [9.12725, 45.577968], + [9.12725, 45.573472], + [9.122754, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.577968], + [9.122754, 45.582465], + [9.12725, 45.582465], + [9.12725, 45.577968], + [9.122754, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.582465], + [9.122754, 45.586962], + [9.12725, 45.586962], + [9.12725, 45.582465], + [9.122754, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.586962], + [9.122754, 45.591458], + [9.12725, 45.591458], + [9.12725, 45.586962], + [9.122754, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.591458], + [9.122754, 45.595955], + [9.12725, 45.595955], + [9.12725, 45.591458], + [9.122754, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.595955], + [9.122754, 45.600451], + [9.12725, 45.600451], + [9.12725, 45.595955], + [9.122754, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.600451], + [9.122754, 45.604948], + [9.12725, 45.604948], + [9.12725, 45.600451], + [9.122754, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.604948], + [9.122754, 45.609445], + [9.12725, 45.609445], + [9.12725, 45.604948], + [9.122754, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.609445], + [9.122754, 45.613941], + [9.12725, 45.613941], + [9.12725, 45.609445], + [9.122754, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.613941], + [9.122754, 45.618438], + [9.12725, 45.618438], + [9.12725, 45.613941], + [9.122754, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.618438], + [9.122754, 45.622934], + [9.12725, 45.622934], + [9.12725, 45.618438], + [9.122754, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.622934], + [9.122754, 45.627431], + [9.12725, 45.627431], + [9.12725, 45.622934], + [9.122754, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.627431], + [9.122754, 45.631928], + [9.12725, 45.631928], + [9.12725, 45.627431], + [9.122754, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.631928], + [9.122754, 45.636424], + [9.12725, 45.636424], + [9.12725, 45.631928], + [9.122754, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.339648], + [9.12725, 45.344145], + [9.131747, 45.344145], + [9.131747, 45.339648], + [9.12725, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.344145], + [9.12725, 45.348642], + [9.131747, 45.348642], + [9.131747, 45.344145], + [9.12725, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.348642], + [9.12725, 45.353138], + [9.131747, 45.353138], + [9.131747, 45.348642], + [9.12725, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.353138], + [9.12725, 45.357635], + [9.131747, 45.357635], + [9.131747, 45.353138], + [9.12725, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.357635], + [9.12725, 45.362131], + [9.131747, 45.362131], + [9.131747, 45.357635], + [9.12725, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.362131], + [9.12725, 45.366628], + [9.131747, 45.366628], + [9.131747, 45.362131], + [9.12725, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.366628], + [9.12725, 45.371125], + [9.131747, 45.371125], + [9.131747, 45.366628], + [9.12725, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.371125], + [9.12725, 45.375621], + [9.131747, 45.375621], + [9.131747, 45.371125], + [9.12725, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.375621], + [9.12725, 45.380118], + [9.131747, 45.380118], + [9.131747, 45.375621], + [9.12725, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.380118], + [9.12725, 45.384614], + [9.131747, 45.384614], + [9.131747, 45.380118], + [9.12725, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.384614], + [9.12725, 45.389111], + [9.131747, 45.389111], + [9.131747, 45.384614], + [9.12725, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.389111], + [9.12725, 45.393608], + [9.131747, 45.393608], + [9.131747, 45.389111], + [9.12725, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.393608], + [9.12725, 45.398104], + [9.131747, 45.398104], + [9.131747, 45.393608], + [9.12725, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.398104], + [9.12725, 45.402601], + [9.131747, 45.402601], + [9.131747, 45.398104], + [9.12725, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.402601], + [9.12725, 45.407097], + [9.131747, 45.407097], + [9.131747, 45.402601], + [9.12725, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.407097], + [9.12725, 45.411594], + [9.131747, 45.411594], + [9.131747, 45.407097], + [9.12725, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.411594], + [9.12725, 45.416091], + [9.131747, 45.416091], + [9.131747, 45.411594], + [9.12725, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.416091], + [9.12725, 45.420587], + [9.131747, 45.420587], + [9.131747, 45.416091], + [9.12725, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.420587], + [9.12725, 45.425084], + [9.131747, 45.425084], + [9.131747, 45.420587], + [9.12725, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.425084], + [9.12725, 45.42958], + [9.131747, 45.42958], + [9.131747, 45.425084], + [9.12725, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.42958], + [9.12725, 45.434077], + [9.131747, 45.434077], + [9.131747, 45.42958], + [9.12725, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.434077], + [9.12725, 45.438574], + [9.131747, 45.438574], + [9.131747, 45.434077], + [9.12725, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.438574], + [9.12725, 45.44307], + [9.131747, 45.44307], + [9.131747, 45.438574], + [9.12725, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.44307], + [9.12725, 45.447567], + [9.131747, 45.447567], + [9.131747, 45.44307], + [9.12725, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.447567], + [9.12725, 45.452063], + [9.131747, 45.452063], + [9.131747, 45.447567], + [9.12725, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.452063], + [9.12725, 45.45656], + [9.131747, 45.45656], + [9.131747, 45.452063], + [9.12725, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.45656], + [9.12725, 45.461057], + [9.131747, 45.461057], + [9.131747, 45.45656], + [9.12725, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.461057], + [9.12725, 45.465553], + [9.131747, 45.465553], + [9.131747, 45.461057], + [9.12725, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.465553], + [9.12725, 45.47005], + [9.131747, 45.47005], + [9.131747, 45.465553], + [9.12725, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.47005], + [9.12725, 45.474547], + [9.131747, 45.474547], + [9.131747, 45.47005], + [9.12725, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.474547], + [9.12725, 45.479043], + [9.131747, 45.479043], + [9.131747, 45.474547], + [9.12725, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.479043], + [9.12725, 45.48354], + [9.131747, 45.48354], + [9.131747, 45.479043], + [9.12725, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.48354], + [9.12725, 45.488036], + [9.131747, 45.488036], + [9.131747, 45.48354], + [9.12725, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.488036], + [9.12725, 45.492533], + [9.131747, 45.492533], + [9.131747, 45.488036], + [9.12725, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.492533], + [9.12725, 45.49703], + [9.131747, 45.49703], + [9.131747, 45.492533], + [9.12725, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.49703], + [9.12725, 45.501526], + [9.131747, 45.501526], + [9.131747, 45.49703], + [9.12725, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.501526], + [9.12725, 45.506023], + [9.131747, 45.506023], + [9.131747, 45.501526], + [9.12725, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.506023], + [9.12725, 45.510519], + [9.131747, 45.510519], + [9.131747, 45.506023], + [9.12725, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.510519], + [9.12725, 45.515016], + [9.131747, 45.515016], + [9.131747, 45.510519], + [9.12725, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.515016], + [9.12725, 45.519513], + [9.131747, 45.519513], + [9.131747, 45.515016], + [9.12725, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.519513], + [9.12725, 45.524009], + [9.131747, 45.524009], + [9.131747, 45.519513], + [9.12725, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.524009], + [9.12725, 45.528506], + [9.131747, 45.528506], + [9.131747, 45.524009], + [9.12725, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.528506], + [9.12725, 45.533002], + [9.131747, 45.533002], + [9.131747, 45.528506], + [9.12725, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.533002], + [9.12725, 45.537499], + [9.131747, 45.537499], + [9.131747, 45.533002], + [9.12725, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.537499], + [9.12725, 45.541996], + [9.131747, 45.541996], + [9.131747, 45.537499], + [9.12725, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.541996], + [9.12725, 45.546492], + [9.131747, 45.546492], + [9.131747, 45.541996], + [9.12725, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.546492], + [9.12725, 45.550989], + [9.131747, 45.550989], + [9.131747, 45.546492], + [9.12725, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.550989], + [9.12725, 45.555485], + [9.131747, 45.555485], + [9.131747, 45.550989], + [9.12725, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.555485], + [9.12725, 45.559982], + [9.131747, 45.559982], + [9.131747, 45.555485], + [9.12725, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.559982], + [9.12725, 45.564479], + [9.131747, 45.564479], + [9.131747, 45.559982], + [9.12725, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.564479], + [9.12725, 45.568975], + [9.131747, 45.568975], + [9.131747, 45.564479], + [9.12725, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.568975], + [9.12725, 45.573472], + [9.131747, 45.573472], + [9.131747, 45.568975], + [9.12725, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.573472], + [9.12725, 45.577968], + [9.131747, 45.577968], + [9.131747, 45.573472], + [9.12725, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.577968], + [9.12725, 45.582465], + [9.131747, 45.582465], + [9.131747, 45.577968], + [9.12725, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.582465], + [9.12725, 45.586962], + [9.131747, 45.586962], + [9.131747, 45.582465], + [9.12725, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.586962], + [9.12725, 45.591458], + [9.131747, 45.591458], + [9.131747, 45.586962], + [9.12725, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.591458], + [9.12725, 45.595955], + [9.131747, 45.595955], + [9.131747, 45.591458], + [9.12725, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.595955], + [9.12725, 45.600451], + [9.131747, 45.600451], + [9.131747, 45.595955], + [9.12725, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.600451], + [9.12725, 45.604948], + [9.131747, 45.604948], + [9.131747, 45.600451], + [9.12725, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.604948], + [9.12725, 45.609445], + [9.131747, 45.609445], + [9.131747, 45.604948], + [9.12725, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.609445], + [9.12725, 45.613941], + [9.131747, 45.613941], + [9.131747, 45.609445], + [9.12725, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.613941], + [9.12725, 45.618438], + [9.131747, 45.618438], + [9.131747, 45.613941], + [9.12725, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.618438], + [9.12725, 45.622934], + [9.131747, 45.622934], + [9.131747, 45.618438], + [9.12725, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.622934], + [9.12725, 45.627431], + [9.131747, 45.627431], + [9.131747, 45.622934], + [9.12725, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.627431], + [9.12725, 45.631928], + [9.131747, 45.631928], + [9.131747, 45.627431], + [9.12725, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.631928], + [9.12725, 45.636424], + [9.131747, 45.636424], + [9.131747, 45.631928], + [9.12725, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.339648], + [9.131747, 45.344145], + [9.136244, 45.344145], + [9.136244, 45.339648], + [9.131747, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.344145], + [9.131747, 45.348642], + [9.136244, 45.348642], + [9.136244, 45.344145], + [9.131747, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.348642], + [9.131747, 45.353138], + [9.136244, 45.353138], + [9.136244, 45.348642], + [9.131747, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.353138], + [9.131747, 45.357635], + [9.136244, 45.357635], + [9.136244, 45.353138], + [9.131747, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.357635], + [9.131747, 45.362131], + [9.136244, 45.362131], + [9.136244, 45.357635], + [9.131747, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.362131], + [9.131747, 45.366628], + [9.136244, 45.366628], + [9.136244, 45.362131], + [9.131747, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.366628], + [9.131747, 45.371125], + [9.136244, 45.371125], + [9.136244, 45.366628], + [9.131747, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.371125], + [9.131747, 45.375621], + [9.136244, 45.375621], + [9.136244, 45.371125], + [9.131747, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.375621], + [9.131747, 45.380118], + [9.136244, 45.380118], + [9.136244, 45.375621], + [9.131747, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.380118], + [9.131747, 45.384614], + [9.136244, 45.384614], + [9.136244, 45.380118], + [9.131747, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.384614], + [9.131747, 45.389111], + [9.136244, 45.389111], + [9.136244, 45.384614], + [9.131747, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.389111], + [9.131747, 45.393608], + [9.136244, 45.393608], + [9.136244, 45.389111], + [9.131747, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.393608], + [9.131747, 45.398104], + [9.136244, 45.398104], + [9.136244, 45.393608], + [9.131747, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.398104], + [9.131747, 45.402601], + [9.136244, 45.402601], + [9.136244, 45.398104], + [9.131747, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.402601], + [9.131747, 45.407097], + [9.136244, 45.407097], + [9.136244, 45.402601], + [9.131747, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.407097], + [9.131747, 45.411594], + [9.136244, 45.411594], + [9.136244, 45.407097], + [9.131747, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.411594], + [9.131747, 45.416091], + [9.136244, 45.416091], + [9.136244, 45.411594], + [9.131747, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.416091], + [9.131747, 45.420587], + [9.136244, 45.420587], + [9.136244, 45.416091], + [9.131747, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.420587], + [9.131747, 45.425084], + [9.136244, 45.425084], + [9.136244, 45.420587], + [9.131747, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.425084], + [9.131747, 45.42958], + [9.136244, 45.42958], + [9.136244, 45.425084], + [9.131747, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.42958], + [9.131747, 45.434077], + [9.136244, 45.434077], + [9.136244, 45.42958], + [9.131747, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.434077], + [9.131747, 45.438574], + [9.136244, 45.438574], + [9.136244, 45.434077], + [9.131747, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.438574], + [9.131747, 45.44307], + [9.136244, 45.44307], + [9.136244, 45.438574], + [9.131747, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.44307], + [9.131747, 45.447567], + [9.136244, 45.447567], + [9.136244, 45.44307], + [9.131747, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.447567], + [9.131747, 45.452063], + [9.136244, 45.452063], + [9.136244, 45.447567], + [9.131747, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.452063], + [9.131747, 45.45656], + [9.136244, 45.45656], + [9.136244, 45.452063], + [9.131747, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.45656], + [9.131747, 45.461057], + [9.136244, 45.461057], + [9.136244, 45.45656], + [9.131747, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.461057], + [9.131747, 45.465553], + [9.136244, 45.465553], + [9.136244, 45.461057], + [9.131747, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.465553], + [9.131747, 45.47005], + [9.136244, 45.47005], + [9.136244, 45.465553], + [9.131747, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.47005], + [9.131747, 45.474547], + [9.136244, 45.474547], + [9.136244, 45.47005], + [9.131747, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.474547], + [9.131747, 45.479043], + [9.136244, 45.479043], + [9.136244, 45.474547], + [9.131747, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.479043], + [9.131747, 45.48354], + [9.136244, 45.48354], + [9.136244, 45.479043], + [9.131747, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.48354], + [9.131747, 45.488036], + [9.136244, 45.488036], + [9.136244, 45.48354], + [9.131747, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.488036], + [9.131747, 45.492533], + [9.136244, 45.492533], + [9.136244, 45.488036], + [9.131747, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.492533], + [9.131747, 45.49703], + [9.136244, 45.49703], + [9.136244, 45.492533], + [9.131747, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.49703], + [9.131747, 45.501526], + [9.136244, 45.501526], + [9.136244, 45.49703], + [9.131747, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.501526], + [9.131747, 45.506023], + [9.136244, 45.506023], + [9.136244, 45.501526], + [9.131747, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.506023], + [9.131747, 45.510519], + [9.136244, 45.510519], + [9.136244, 45.506023], + [9.131747, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.510519], + [9.131747, 45.515016], + [9.136244, 45.515016], + [9.136244, 45.510519], + [9.131747, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.515016], + [9.131747, 45.519513], + [9.136244, 45.519513], + [9.136244, 45.515016], + [9.131747, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.519513], + [9.131747, 45.524009], + [9.136244, 45.524009], + [9.136244, 45.519513], + [9.131747, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.524009], + [9.131747, 45.528506], + [9.136244, 45.528506], + [9.136244, 45.524009], + [9.131747, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.528506], + [9.131747, 45.533002], + [9.136244, 45.533002], + [9.136244, 45.528506], + [9.131747, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.533002], + [9.131747, 45.537499], + [9.136244, 45.537499], + [9.136244, 45.533002], + [9.131747, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.537499], + [9.131747, 45.541996], + [9.136244, 45.541996], + [9.136244, 45.537499], + [9.131747, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.541996], + [9.131747, 45.546492], + [9.136244, 45.546492], + [9.136244, 45.541996], + [9.131747, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.546492], + [9.131747, 45.550989], + [9.136244, 45.550989], + [9.136244, 45.546492], + [9.131747, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.550989], + [9.131747, 45.555485], + [9.136244, 45.555485], + [9.136244, 45.550989], + [9.131747, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.555485], + [9.131747, 45.559982], + [9.136244, 45.559982], + [9.136244, 45.555485], + [9.131747, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.559982], + [9.131747, 45.564479], + [9.136244, 45.564479], + [9.136244, 45.559982], + [9.131747, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.564479], + [9.131747, 45.568975], + [9.136244, 45.568975], + [9.136244, 45.564479], + [9.131747, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.568975], + [9.131747, 45.573472], + [9.136244, 45.573472], + [9.136244, 45.568975], + [9.131747, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.573472], + [9.131747, 45.577968], + [9.136244, 45.577968], + [9.136244, 45.573472], + [9.131747, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.577968], + [9.131747, 45.582465], + [9.136244, 45.582465], + [9.136244, 45.577968], + [9.131747, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.582465], + [9.131747, 45.586962], + [9.136244, 45.586962], + [9.136244, 45.582465], + [9.131747, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.586962], + [9.131747, 45.591458], + [9.136244, 45.591458], + [9.136244, 45.586962], + [9.131747, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.591458], + [9.131747, 45.595955], + [9.136244, 45.595955], + [9.136244, 45.591458], + [9.131747, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.595955], + [9.131747, 45.600451], + [9.136244, 45.600451], + [9.136244, 45.595955], + [9.131747, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.600451], + [9.131747, 45.604948], + [9.136244, 45.604948], + [9.136244, 45.600451], + [9.131747, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.604948], + [9.131747, 45.609445], + [9.136244, 45.609445], + [9.136244, 45.604948], + [9.131747, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.609445], + [9.131747, 45.613941], + [9.136244, 45.613941], + [9.136244, 45.609445], + [9.131747, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.613941], + [9.131747, 45.618438], + [9.136244, 45.618438], + [9.136244, 45.613941], + [9.131747, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.618438], + [9.131747, 45.622934], + [9.136244, 45.622934], + [9.136244, 45.618438], + [9.131747, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.622934], + [9.131747, 45.627431], + [9.136244, 45.627431], + [9.136244, 45.622934], + [9.131747, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.627431], + [9.131747, 45.631928], + [9.136244, 45.631928], + [9.136244, 45.627431], + [9.131747, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.631928], + [9.131747, 45.636424], + [9.136244, 45.636424], + [9.136244, 45.631928], + [9.131747, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.339648], + [9.136244, 45.344145], + [9.14074, 45.344145], + [9.14074, 45.339648], + [9.136244, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.344145], + [9.136244, 45.348642], + [9.14074, 45.348642], + [9.14074, 45.344145], + [9.136244, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.348642], + [9.136244, 45.353138], + [9.14074, 45.353138], + [9.14074, 45.348642], + [9.136244, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.353138], + [9.136244, 45.357635], + [9.14074, 45.357635], + [9.14074, 45.353138], + [9.136244, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.357635], + [9.136244, 45.362131], + [9.14074, 45.362131], + [9.14074, 45.357635], + [9.136244, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.362131], + [9.136244, 45.366628], + [9.14074, 45.366628], + [9.14074, 45.362131], + [9.136244, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.366628], + [9.136244, 45.371125], + [9.14074, 45.371125], + [9.14074, 45.366628], + [9.136244, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.371125], + [9.136244, 45.375621], + [9.14074, 45.375621], + [9.14074, 45.371125], + [9.136244, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.375621], + [9.136244, 45.380118], + [9.14074, 45.380118], + [9.14074, 45.375621], + [9.136244, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.380118], + [9.136244, 45.384614], + [9.14074, 45.384614], + [9.14074, 45.380118], + [9.136244, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.384614], + [9.136244, 45.389111], + [9.14074, 45.389111], + [9.14074, 45.384614], + [9.136244, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.389111], + [9.136244, 45.393608], + [9.14074, 45.393608], + [9.14074, 45.389111], + [9.136244, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.393608], + [9.136244, 45.398104], + [9.14074, 45.398104], + [9.14074, 45.393608], + [9.136244, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.398104], + [9.136244, 45.402601], + [9.14074, 45.402601], + [9.14074, 45.398104], + [9.136244, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.402601], + [9.136244, 45.407097], + [9.14074, 45.407097], + [9.14074, 45.402601], + [9.136244, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.407097], + [9.136244, 45.411594], + [9.14074, 45.411594], + [9.14074, 45.407097], + [9.136244, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.411594], + [9.136244, 45.416091], + [9.14074, 45.416091], + [9.14074, 45.411594], + [9.136244, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.416091], + [9.136244, 45.420587], + [9.14074, 45.420587], + [9.14074, 45.416091], + [9.136244, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.420587], + [9.136244, 45.425084], + [9.14074, 45.425084], + [9.14074, 45.420587], + [9.136244, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.425084], + [9.136244, 45.42958], + [9.14074, 45.42958], + [9.14074, 45.425084], + [9.136244, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.42958], + [9.136244, 45.434077], + [9.14074, 45.434077], + [9.14074, 45.42958], + [9.136244, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.434077], + [9.136244, 45.438574], + [9.14074, 45.438574], + [9.14074, 45.434077], + [9.136244, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.438574], + [9.136244, 45.44307], + [9.14074, 45.44307], + [9.14074, 45.438574], + [9.136244, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.44307], + [9.136244, 45.447567], + [9.14074, 45.447567], + [9.14074, 45.44307], + [9.136244, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.447567], + [9.136244, 45.452063], + [9.14074, 45.452063], + [9.14074, 45.447567], + [9.136244, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.452063], + [9.136244, 45.45656], + [9.14074, 45.45656], + [9.14074, 45.452063], + [9.136244, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.45656], + [9.136244, 45.461057], + [9.14074, 45.461057], + [9.14074, 45.45656], + [9.136244, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.461057], + [9.136244, 45.465553], + [9.14074, 45.465553], + [9.14074, 45.461057], + [9.136244, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.465553], + [9.136244, 45.47005], + [9.14074, 45.47005], + [9.14074, 45.465553], + [9.136244, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.47005], + [9.136244, 45.474547], + [9.14074, 45.474547], + [9.14074, 45.47005], + [9.136244, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.474547], + [9.136244, 45.479043], + [9.14074, 45.479043], + [9.14074, 45.474547], + [9.136244, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.479043], + [9.136244, 45.48354], + [9.14074, 45.48354], + [9.14074, 45.479043], + [9.136244, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.48354], + [9.136244, 45.488036], + [9.14074, 45.488036], + [9.14074, 45.48354], + [9.136244, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.488036], + [9.136244, 45.492533], + [9.14074, 45.492533], + [9.14074, 45.488036], + [9.136244, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.492533], + [9.136244, 45.49703], + [9.14074, 45.49703], + [9.14074, 45.492533], + [9.136244, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.49703], + [9.136244, 45.501526], + [9.14074, 45.501526], + [9.14074, 45.49703], + [9.136244, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.501526], + [9.136244, 45.506023], + [9.14074, 45.506023], + [9.14074, 45.501526], + [9.136244, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.506023], + [9.136244, 45.510519], + [9.14074, 45.510519], + [9.14074, 45.506023], + [9.136244, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.510519], + [9.136244, 45.515016], + [9.14074, 45.515016], + [9.14074, 45.510519], + [9.136244, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.515016], + [9.136244, 45.519513], + [9.14074, 45.519513], + [9.14074, 45.515016], + [9.136244, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.519513], + [9.136244, 45.524009], + [9.14074, 45.524009], + [9.14074, 45.519513], + [9.136244, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.524009], + [9.136244, 45.528506], + [9.14074, 45.528506], + [9.14074, 45.524009], + [9.136244, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.528506], + [9.136244, 45.533002], + [9.14074, 45.533002], + [9.14074, 45.528506], + [9.136244, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.533002], + [9.136244, 45.537499], + [9.14074, 45.537499], + [9.14074, 45.533002], + [9.136244, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.537499], + [9.136244, 45.541996], + [9.14074, 45.541996], + [9.14074, 45.537499], + [9.136244, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.541996], + [9.136244, 45.546492], + [9.14074, 45.546492], + [9.14074, 45.541996], + [9.136244, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.546492], + [9.136244, 45.550989], + [9.14074, 45.550989], + [9.14074, 45.546492], + [9.136244, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.550989], + [9.136244, 45.555485], + [9.14074, 45.555485], + [9.14074, 45.550989], + [9.136244, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.555485], + [9.136244, 45.559982], + [9.14074, 45.559982], + [9.14074, 45.555485], + [9.136244, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.559982], + [9.136244, 45.564479], + [9.14074, 45.564479], + [9.14074, 45.559982], + [9.136244, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.564479], + [9.136244, 45.568975], + [9.14074, 45.568975], + [9.14074, 45.564479], + [9.136244, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.568975], + [9.136244, 45.573472], + [9.14074, 45.573472], + [9.14074, 45.568975], + [9.136244, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.573472], + [9.136244, 45.577968], + [9.14074, 45.577968], + [9.14074, 45.573472], + [9.136244, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.577968], + [9.136244, 45.582465], + [9.14074, 45.582465], + [9.14074, 45.577968], + [9.136244, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.582465], + [9.136244, 45.586962], + [9.14074, 45.586962], + [9.14074, 45.582465], + [9.136244, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.586962], + [9.136244, 45.591458], + [9.14074, 45.591458], + [9.14074, 45.586962], + [9.136244, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.591458], + [9.136244, 45.595955], + [9.14074, 45.595955], + [9.14074, 45.591458], + [9.136244, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.595955], + [9.136244, 45.600451], + [9.14074, 45.600451], + [9.14074, 45.595955], + [9.136244, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.600451], + [9.136244, 45.604948], + [9.14074, 45.604948], + [9.14074, 45.600451], + [9.136244, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.604948], + [9.136244, 45.609445], + [9.14074, 45.609445], + [9.14074, 45.604948], + [9.136244, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.609445], + [9.136244, 45.613941], + [9.14074, 45.613941], + [9.14074, 45.609445], + [9.136244, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.613941], + [9.136244, 45.618438], + [9.14074, 45.618438], + [9.14074, 45.613941], + [9.136244, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.618438], + [9.136244, 45.622934], + [9.14074, 45.622934], + [9.14074, 45.618438], + [9.136244, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.622934], + [9.136244, 45.627431], + [9.14074, 45.627431], + [9.14074, 45.622934], + [9.136244, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.627431], + [9.136244, 45.631928], + [9.14074, 45.631928], + [9.14074, 45.627431], + [9.136244, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.631928], + [9.136244, 45.636424], + [9.14074, 45.636424], + [9.14074, 45.631928], + [9.136244, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.339648], + [9.14074, 45.344145], + [9.145237, 45.344145], + [9.145237, 45.339648], + [9.14074, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.344145], + [9.14074, 45.348642], + [9.145237, 45.348642], + [9.145237, 45.344145], + [9.14074, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.348642], + [9.14074, 45.353138], + [9.145237, 45.353138], + [9.145237, 45.348642], + [9.14074, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.353138], + [9.14074, 45.357635], + [9.145237, 45.357635], + [9.145237, 45.353138], + [9.14074, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.357635], + [9.14074, 45.362131], + [9.145237, 45.362131], + [9.145237, 45.357635], + [9.14074, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.362131], + [9.14074, 45.366628], + [9.145237, 45.366628], + [9.145237, 45.362131], + [9.14074, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.366628], + [9.14074, 45.371125], + [9.145237, 45.371125], + [9.145237, 45.366628], + [9.14074, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.371125], + [9.14074, 45.375621], + [9.145237, 45.375621], + [9.145237, 45.371125], + [9.14074, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.375621], + [9.14074, 45.380118], + [9.145237, 45.380118], + [9.145237, 45.375621], + [9.14074, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.380118], + [9.14074, 45.384614], + [9.145237, 45.384614], + [9.145237, 45.380118], + [9.14074, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.384614], + [9.14074, 45.389111], + [9.145237, 45.389111], + [9.145237, 45.384614], + [9.14074, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.389111], + [9.14074, 45.393608], + [9.145237, 45.393608], + [9.145237, 45.389111], + [9.14074, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.393608], + [9.14074, 45.398104], + [9.145237, 45.398104], + [9.145237, 45.393608], + [9.14074, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.398104], + [9.14074, 45.402601], + [9.145237, 45.402601], + [9.145237, 45.398104], + [9.14074, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.402601], + [9.14074, 45.407097], + [9.145237, 45.407097], + [9.145237, 45.402601], + [9.14074, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.407097], + [9.14074, 45.411594], + [9.145237, 45.411594], + [9.145237, 45.407097], + [9.14074, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.411594], + [9.14074, 45.416091], + [9.145237, 45.416091], + [9.145237, 45.411594], + [9.14074, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.416091], + [9.14074, 45.420587], + [9.145237, 45.420587], + [9.145237, 45.416091], + [9.14074, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.420587], + [9.14074, 45.425084], + [9.145237, 45.425084], + [9.145237, 45.420587], + [9.14074, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.425084], + [9.14074, 45.42958], + [9.145237, 45.42958], + [9.145237, 45.425084], + [9.14074, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.42958], + [9.14074, 45.434077], + [9.145237, 45.434077], + [9.145237, 45.42958], + [9.14074, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.434077], + [9.14074, 45.438574], + [9.145237, 45.438574], + [9.145237, 45.434077], + [9.14074, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.438574], + [9.14074, 45.44307], + [9.145237, 45.44307], + [9.145237, 45.438574], + [9.14074, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.44307], + [9.14074, 45.447567], + [9.145237, 45.447567], + [9.145237, 45.44307], + [9.14074, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.447567], + [9.14074, 45.452063], + [9.145237, 45.452063], + [9.145237, 45.447567], + [9.14074, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.452063], + [9.14074, 45.45656], + [9.145237, 45.45656], + [9.145237, 45.452063], + [9.14074, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.45656], + [9.14074, 45.461057], + [9.145237, 45.461057], + [9.145237, 45.45656], + [9.14074, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.461057], + [9.14074, 45.465553], + [9.145237, 45.465553], + [9.145237, 45.461057], + [9.14074, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.465553], + [9.14074, 45.47005], + [9.145237, 45.47005], + [9.145237, 45.465553], + [9.14074, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.47005], + [9.14074, 45.474547], + [9.145237, 45.474547], + [9.145237, 45.47005], + [9.14074, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.474547], + [9.14074, 45.479043], + [9.145237, 45.479043], + [9.145237, 45.474547], + [9.14074, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.479043], + [9.14074, 45.48354], + [9.145237, 45.48354], + [9.145237, 45.479043], + [9.14074, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.48354], + [9.14074, 45.488036], + [9.145237, 45.488036], + [9.145237, 45.48354], + [9.14074, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.488036], + [9.14074, 45.492533], + [9.145237, 45.492533], + [9.145237, 45.488036], + [9.14074, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.492533], + [9.14074, 45.49703], + [9.145237, 45.49703], + [9.145237, 45.492533], + [9.14074, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.49703], + [9.14074, 45.501526], + [9.145237, 45.501526], + [9.145237, 45.49703], + [9.14074, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.501526], + [9.14074, 45.506023], + [9.145237, 45.506023], + [9.145237, 45.501526], + [9.14074, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.506023], + [9.14074, 45.510519], + [9.145237, 45.510519], + [9.145237, 45.506023], + [9.14074, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.510519], + [9.14074, 45.515016], + [9.145237, 45.515016], + [9.145237, 45.510519], + [9.14074, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.515016], + [9.14074, 45.519513], + [9.145237, 45.519513], + [9.145237, 45.515016], + [9.14074, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.519513], + [9.14074, 45.524009], + [9.145237, 45.524009], + [9.145237, 45.519513], + [9.14074, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.524009], + [9.14074, 45.528506], + [9.145237, 45.528506], + [9.145237, 45.524009], + [9.14074, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.528506], + [9.14074, 45.533002], + [9.145237, 45.533002], + [9.145237, 45.528506], + [9.14074, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.533002], + [9.14074, 45.537499], + [9.145237, 45.537499], + [9.145237, 45.533002], + [9.14074, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.537499], + [9.14074, 45.541996], + [9.145237, 45.541996], + [9.145237, 45.537499], + [9.14074, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.541996], + [9.14074, 45.546492], + [9.145237, 45.546492], + [9.145237, 45.541996], + [9.14074, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.546492], + [9.14074, 45.550989], + [9.145237, 45.550989], + [9.145237, 45.546492], + [9.14074, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.550989], + [9.14074, 45.555485], + [9.145237, 45.555485], + [9.145237, 45.550989], + [9.14074, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.555485], + [9.14074, 45.559982], + [9.145237, 45.559982], + [9.145237, 45.555485], + [9.14074, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.559982], + [9.14074, 45.564479], + [9.145237, 45.564479], + [9.145237, 45.559982], + [9.14074, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.564479], + [9.14074, 45.568975], + [9.145237, 45.568975], + [9.145237, 45.564479], + [9.14074, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.568975], + [9.14074, 45.573472], + [9.145237, 45.573472], + [9.145237, 45.568975], + [9.14074, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.573472], + [9.14074, 45.577968], + [9.145237, 45.577968], + [9.145237, 45.573472], + [9.14074, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.577968], + [9.14074, 45.582465], + [9.145237, 45.582465], + [9.145237, 45.577968], + [9.14074, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.582465], + [9.14074, 45.586962], + [9.145237, 45.586962], + [9.145237, 45.582465], + [9.14074, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.586962], + [9.14074, 45.591458], + [9.145237, 45.591458], + [9.145237, 45.586962], + [9.14074, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.591458], + [9.14074, 45.595955], + [9.145237, 45.595955], + [9.145237, 45.591458], + [9.14074, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.595955], + [9.14074, 45.600451], + [9.145237, 45.600451], + [9.145237, 45.595955], + [9.14074, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.600451], + [9.14074, 45.604948], + [9.145237, 45.604948], + [9.145237, 45.600451], + [9.14074, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.604948], + [9.14074, 45.609445], + [9.145237, 45.609445], + [9.145237, 45.604948], + [9.14074, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.609445], + [9.14074, 45.613941], + [9.145237, 45.613941], + [9.145237, 45.609445], + [9.14074, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.613941], + [9.14074, 45.618438], + [9.145237, 45.618438], + [9.145237, 45.613941], + [9.14074, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.618438], + [9.14074, 45.622934], + [9.145237, 45.622934], + [9.145237, 45.618438], + [9.14074, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.622934], + [9.14074, 45.627431], + [9.145237, 45.627431], + [9.145237, 45.622934], + [9.14074, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.627431], + [9.14074, 45.631928], + [9.145237, 45.631928], + [9.145237, 45.627431], + [9.14074, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.631928], + [9.14074, 45.636424], + [9.145237, 45.636424], + [9.145237, 45.631928], + [9.14074, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.339648], + [9.145237, 45.344145], + [9.149733, 45.344145], + [9.149733, 45.339648], + [9.145237, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.344145], + [9.145237, 45.348642], + [9.149733, 45.348642], + [9.149733, 45.344145], + [9.145237, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.348642], + [9.145237, 45.353138], + [9.149733, 45.353138], + [9.149733, 45.348642], + [9.145237, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.353138], + [9.145237, 45.357635], + [9.149733, 45.357635], + [9.149733, 45.353138], + [9.145237, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.357635], + [9.145237, 45.362131], + [9.149733, 45.362131], + [9.149733, 45.357635], + [9.145237, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.362131], + [9.145237, 45.366628], + [9.149733, 45.366628], + [9.149733, 45.362131], + [9.145237, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.366628], + [9.145237, 45.371125], + [9.149733, 45.371125], + [9.149733, 45.366628], + [9.145237, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.371125], + [9.145237, 45.375621], + [9.149733, 45.375621], + [9.149733, 45.371125], + [9.145237, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.375621], + [9.145237, 45.380118], + [9.149733, 45.380118], + [9.149733, 45.375621], + [9.145237, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.380118], + [9.145237, 45.384614], + [9.149733, 45.384614], + [9.149733, 45.380118], + [9.145237, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.384614], + [9.145237, 45.389111], + [9.149733, 45.389111], + [9.149733, 45.384614], + [9.145237, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.389111], + [9.145237, 45.393608], + [9.149733, 45.393608], + [9.149733, 45.389111], + [9.145237, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.393608], + [9.145237, 45.398104], + [9.149733, 45.398104], + [9.149733, 45.393608], + [9.145237, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.398104], + [9.145237, 45.402601], + [9.149733, 45.402601], + [9.149733, 45.398104], + [9.145237, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.402601], + [9.145237, 45.407097], + [9.149733, 45.407097], + [9.149733, 45.402601], + [9.145237, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.407097], + [9.145237, 45.411594], + [9.149733, 45.411594], + [9.149733, 45.407097], + [9.145237, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.411594], + [9.145237, 45.416091], + [9.149733, 45.416091], + [9.149733, 45.411594], + [9.145237, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.416091], + [9.145237, 45.420587], + [9.149733, 45.420587], + [9.149733, 45.416091], + [9.145237, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.420587], + [9.145237, 45.425084], + [9.149733, 45.425084], + [9.149733, 45.420587], + [9.145237, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.425084], + [9.145237, 45.42958], + [9.149733, 45.42958], + [9.149733, 45.425084], + [9.145237, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.42958], + [9.145237, 45.434077], + [9.149733, 45.434077], + [9.149733, 45.42958], + [9.145237, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.434077], + [9.145237, 45.438574], + [9.149733, 45.438574], + [9.149733, 45.434077], + [9.145237, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.438574], + [9.145237, 45.44307], + [9.149733, 45.44307], + [9.149733, 45.438574], + [9.145237, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.44307], + [9.145237, 45.447567], + [9.149733, 45.447567], + [9.149733, 45.44307], + [9.145237, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.447567], + [9.145237, 45.452063], + [9.149733, 45.452063], + [9.149733, 45.447567], + [9.145237, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.452063], + [9.145237, 45.45656], + [9.149733, 45.45656], + [9.149733, 45.452063], + [9.145237, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.45656], + [9.145237, 45.461057], + [9.149733, 45.461057], + [9.149733, 45.45656], + [9.145237, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.461057], + [9.145237, 45.465553], + [9.149733, 45.465553], + [9.149733, 45.461057], + [9.145237, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.465553], + [9.145237, 45.47005], + [9.149733, 45.47005], + [9.149733, 45.465553], + [9.145237, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.47005], + [9.145237, 45.474547], + [9.149733, 45.474547], + [9.149733, 45.47005], + [9.145237, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.474547], + [9.145237, 45.479043], + [9.149733, 45.479043], + [9.149733, 45.474547], + [9.145237, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.479043], + [9.145237, 45.48354], + [9.149733, 45.48354], + [9.149733, 45.479043], + [9.145237, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.48354], + [9.145237, 45.488036], + [9.149733, 45.488036], + [9.149733, 45.48354], + [9.145237, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.488036], + [9.145237, 45.492533], + [9.149733, 45.492533], + [9.149733, 45.488036], + [9.145237, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.492533], + [9.145237, 45.49703], + [9.149733, 45.49703], + [9.149733, 45.492533], + [9.145237, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.49703], + [9.145237, 45.501526], + [9.149733, 45.501526], + [9.149733, 45.49703], + [9.145237, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.501526], + [9.145237, 45.506023], + [9.149733, 45.506023], + [9.149733, 45.501526], + [9.145237, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.506023], + [9.145237, 45.510519], + [9.149733, 45.510519], + [9.149733, 45.506023], + [9.145237, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.510519], + [9.145237, 45.515016], + [9.149733, 45.515016], + [9.149733, 45.510519], + [9.145237, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.515016], + [9.145237, 45.519513], + [9.149733, 45.519513], + [9.149733, 45.515016], + [9.145237, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.519513], + [9.145237, 45.524009], + [9.149733, 45.524009], + [9.149733, 45.519513], + [9.145237, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.524009], + [9.145237, 45.528506], + [9.149733, 45.528506], + [9.149733, 45.524009], + [9.145237, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.528506], + [9.145237, 45.533002], + [9.149733, 45.533002], + [9.149733, 45.528506], + [9.145237, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.533002], + [9.145237, 45.537499], + [9.149733, 45.537499], + [9.149733, 45.533002], + [9.145237, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.537499], + [9.145237, 45.541996], + [9.149733, 45.541996], + [9.149733, 45.537499], + [9.145237, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.541996], + [9.145237, 45.546492], + [9.149733, 45.546492], + [9.149733, 45.541996], + [9.145237, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.546492], + [9.145237, 45.550989], + [9.149733, 45.550989], + [9.149733, 45.546492], + [9.145237, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.550989], + [9.145237, 45.555485], + [9.149733, 45.555485], + [9.149733, 45.550989], + [9.145237, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.555485], + [9.145237, 45.559982], + [9.149733, 45.559982], + [9.149733, 45.555485], + [9.145237, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.559982], + [9.145237, 45.564479], + [9.149733, 45.564479], + [9.149733, 45.559982], + [9.145237, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.564479], + [9.145237, 45.568975], + [9.149733, 45.568975], + [9.149733, 45.564479], + [9.145237, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.568975], + [9.145237, 45.573472], + [9.149733, 45.573472], + [9.149733, 45.568975], + [9.145237, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.573472], + [9.145237, 45.577968], + [9.149733, 45.577968], + [9.149733, 45.573472], + [9.145237, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.577968], + [9.145237, 45.582465], + [9.149733, 45.582465], + [9.149733, 45.577968], + [9.145237, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.582465], + [9.145237, 45.586962], + [9.149733, 45.586962], + [9.149733, 45.582465], + [9.145237, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.586962], + [9.145237, 45.591458], + [9.149733, 45.591458], + [9.149733, 45.586962], + [9.145237, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.591458], + [9.145237, 45.595955], + [9.149733, 45.595955], + [9.149733, 45.591458], + [9.145237, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.595955], + [9.145237, 45.600451], + [9.149733, 45.600451], + [9.149733, 45.595955], + [9.145237, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.600451], + [9.145237, 45.604948], + [9.149733, 45.604948], + [9.149733, 45.600451], + [9.145237, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.604948], + [9.145237, 45.609445], + [9.149733, 45.609445], + [9.149733, 45.604948], + [9.145237, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.609445], + [9.145237, 45.613941], + [9.149733, 45.613941], + [9.149733, 45.609445], + [9.145237, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.613941], + [9.145237, 45.618438], + [9.149733, 45.618438], + [9.149733, 45.613941], + [9.145237, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.618438], + [9.145237, 45.622934], + [9.149733, 45.622934], + [9.149733, 45.618438], + [9.145237, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.622934], + [9.145237, 45.627431], + [9.149733, 45.627431], + [9.149733, 45.622934], + [9.145237, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.627431], + [9.145237, 45.631928], + [9.149733, 45.631928], + [9.149733, 45.627431], + [9.145237, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.631928], + [9.145237, 45.636424], + [9.149733, 45.636424], + [9.149733, 45.631928], + [9.145237, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.339648], + [9.149733, 45.344145], + [9.15423, 45.344145], + [9.15423, 45.339648], + [9.149733, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.344145], + [9.149733, 45.348642], + [9.15423, 45.348642], + [9.15423, 45.344145], + [9.149733, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.348642], + [9.149733, 45.353138], + [9.15423, 45.353138], + [9.15423, 45.348642], + [9.149733, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.353138], + [9.149733, 45.357635], + [9.15423, 45.357635], + [9.15423, 45.353138], + [9.149733, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.357635], + [9.149733, 45.362131], + [9.15423, 45.362131], + [9.15423, 45.357635], + [9.149733, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.362131], + [9.149733, 45.366628], + [9.15423, 45.366628], + [9.15423, 45.362131], + [9.149733, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.366628], + [9.149733, 45.371125], + [9.15423, 45.371125], + [9.15423, 45.366628], + [9.149733, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.371125], + [9.149733, 45.375621], + [9.15423, 45.375621], + [9.15423, 45.371125], + [9.149733, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.375621], + [9.149733, 45.380118], + [9.15423, 45.380118], + [9.15423, 45.375621], + [9.149733, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.380118], + [9.149733, 45.384614], + [9.15423, 45.384614], + [9.15423, 45.380118], + [9.149733, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.384614], + [9.149733, 45.389111], + [9.15423, 45.389111], + [9.15423, 45.384614], + [9.149733, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.389111], + [9.149733, 45.393608], + [9.15423, 45.393608], + [9.15423, 45.389111], + [9.149733, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.393608], + [9.149733, 45.398104], + [9.15423, 45.398104], + [9.15423, 45.393608], + [9.149733, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.398104], + [9.149733, 45.402601], + [9.15423, 45.402601], + [9.15423, 45.398104], + [9.149733, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.402601], + [9.149733, 45.407097], + [9.15423, 45.407097], + [9.15423, 45.402601], + [9.149733, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.407097], + [9.149733, 45.411594], + [9.15423, 45.411594], + [9.15423, 45.407097], + [9.149733, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.411594], + [9.149733, 45.416091], + [9.15423, 45.416091], + [9.15423, 45.411594], + [9.149733, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.416091], + [9.149733, 45.420587], + [9.15423, 45.420587], + [9.15423, 45.416091], + [9.149733, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.420587], + [9.149733, 45.425084], + [9.15423, 45.425084], + [9.15423, 45.420587], + [9.149733, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.425084], + [9.149733, 45.42958], + [9.15423, 45.42958], + [9.15423, 45.425084], + [9.149733, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.42958], + [9.149733, 45.434077], + [9.15423, 45.434077], + [9.15423, 45.42958], + [9.149733, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.434077], + [9.149733, 45.438574], + [9.15423, 45.438574], + [9.15423, 45.434077], + [9.149733, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.438574], + [9.149733, 45.44307], + [9.15423, 45.44307], + [9.15423, 45.438574], + [9.149733, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.44307], + [9.149733, 45.447567], + [9.15423, 45.447567], + [9.15423, 45.44307], + [9.149733, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.447567], + [9.149733, 45.452063], + [9.15423, 45.452063], + [9.15423, 45.447567], + [9.149733, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.452063], + [9.149733, 45.45656], + [9.15423, 45.45656], + [9.15423, 45.452063], + [9.149733, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.45656], + [9.149733, 45.461057], + [9.15423, 45.461057], + [9.15423, 45.45656], + [9.149733, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.461057], + [9.149733, 45.465553], + [9.15423, 45.465553], + [9.15423, 45.461057], + [9.149733, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.465553], + [9.149733, 45.47005], + [9.15423, 45.47005], + [9.15423, 45.465553], + [9.149733, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.47005], + [9.149733, 45.474547], + [9.15423, 45.474547], + [9.15423, 45.47005], + [9.149733, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.474547], + [9.149733, 45.479043], + [9.15423, 45.479043], + [9.15423, 45.474547], + [9.149733, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.479043], + [9.149733, 45.48354], + [9.15423, 45.48354], + [9.15423, 45.479043], + [9.149733, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.48354], + [9.149733, 45.488036], + [9.15423, 45.488036], + [9.15423, 45.48354], + [9.149733, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.488036], + [9.149733, 45.492533], + [9.15423, 45.492533], + [9.15423, 45.488036], + [9.149733, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.492533], + [9.149733, 45.49703], + [9.15423, 45.49703], + [9.15423, 45.492533], + [9.149733, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.49703], + [9.149733, 45.501526], + [9.15423, 45.501526], + [9.15423, 45.49703], + [9.149733, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.501526], + [9.149733, 45.506023], + [9.15423, 45.506023], + [9.15423, 45.501526], + [9.149733, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.506023], + [9.149733, 45.510519], + [9.15423, 45.510519], + [9.15423, 45.506023], + [9.149733, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.510519], + [9.149733, 45.515016], + [9.15423, 45.515016], + [9.15423, 45.510519], + [9.149733, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.515016], + [9.149733, 45.519513], + [9.15423, 45.519513], + [9.15423, 45.515016], + [9.149733, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.519513], + [9.149733, 45.524009], + [9.15423, 45.524009], + [9.15423, 45.519513], + [9.149733, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.524009], + [9.149733, 45.528506], + [9.15423, 45.528506], + [9.15423, 45.524009], + [9.149733, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.528506], + [9.149733, 45.533002], + [9.15423, 45.533002], + [9.15423, 45.528506], + [9.149733, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.533002], + [9.149733, 45.537499], + [9.15423, 45.537499], + [9.15423, 45.533002], + [9.149733, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.537499], + [9.149733, 45.541996], + [9.15423, 45.541996], + [9.15423, 45.537499], + [9.149733, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.541996], + [9.149733, 45.546492], + [9.15423, 45.546492], + [9.15423, 45.541996], + [9.149733, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.546492], + [9.149733, 45.550989], + [9.15423, 45.550989], + [9.15423, 45.546492], + [9.149733, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.550989], + [9.149733, 45.555485], + [9.15423, 45.555485], + [9.15423, 45.550989], + [9.149733, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.555485], + [9.149733, 45.559982], + [9.15423, 45.559982], + [9.15423, 45.555485], + [9.149733, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.559982], + [9.149733, 45.564479], + [9.15423, 45.564479], + [9.15423, 45.559982], + [9.149733, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.564479], + [9.149733, 45.568975], + [9.15423, 45.568975], + [9.15423, 45.564479], + [9.149733, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.568975], + [9.149733, 45.573472], + [9.15423, 45.573472], + [9.15423, 45.568975], + [9.149733, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.573472], + [9.149733, 45.577968], + [9.15423, 45.577968], + [9.15423, 45.573472], + [9.149733, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.577968], + [9.149733, 45.582465], + [9.15423, 45.582465], + [9.15423, 45.577968], + [9.149733, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.582465], + [9.149733, 45.586962], + [9.15423, 45.586962], + [9.15423, 45.582465], + [9.149733, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.586962], + [9.149733, 45.591458], + [9.15423, 45.591458], + [9.15423, 45.586962], + [9.149733, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.591458], + [9.149733, 45.595955], + [9.15423, 45.595955], + [9.15423, 45.591458], + [9.149733, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.595955], + [9.149733, 45.600451], + [9.15423, 45.600451], + [9.15423, 45.595955], + [9.149733, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.600451], + [9.149733, 45.604948], + [9.15423, 45.604948], + [9.15423, 45.600451], + [9.149733, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.604948], + [9.149733, 45.609445], + [9.15423, 45.609445], + [9.15423, 45.604948], + [9.149733, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.609445], + [9.149733, 45.613941], + [9.15423, 45.613941], + [9.15423, 45.609445], + [9.149733, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.613941], + [9.149733, 45.618438], + [9.15423, 45.618438], + [9.15423, 45.613941], + [9.149733, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.618438], + [9.149733, 45.622934], + [9.15423, 45.622934], + [9.15423, 45.618438], + [9.149733, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.622934], + [9.149733, 45.627431], + [9.15423, 45.627431], + [9.15423, 45.622934], + [9.149733, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.627431], + [9.149733, 45.631928], + [9.15423, 45.631928], + [9.15423, 45.627431], + [9.149733, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.631928], + [9.149733, 45.636424], + [9.15423, 45.636424], + [9.15423, 45.631928], + [9.149733, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.339648], + [9.15423, 45.344145], + [9.158727, 45.344145], + [9.158727, 45.339648], + [9.15423, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.344145], + [9.15423, 45.348642], + [9.158727, 45.348642], + [9.158727, 45.344145], + [9.15423, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.348642], + [9.15423, 45.353138], + [9.158727, 45.353138], + [9.158727, 45.348642], + [9.15423, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.353138], + [9.15423, 45.357635], + [9.158727, 45.357635], + [9.158727, 45.353138], + [9.15423, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.357635], + [9.15423, 45.362131], + [9.158727, 45.362131], + [9.158727, 45.357635], + [9.15423, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.362131], + [9.15423, 45.366628], + [9.158727, 45.366628], + [9.158727, 45.362131], + [9.15423, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.366628], + [9.15423, 45.371125], + [9.158727, 45.371125], + [9.158727, 45.366628], + [9.15423, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.371125], + [9.15423, 45.375621], + [9.158727, 45.375621], + [9.158727, 45.371125], + [9.15423, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.375621], + [9.15423, 45.380118], + [9.158727, 45.380118], + [9.158727, 45.375621], + [9.15423, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.380118], + [9.15423, 45.384614], + [9.158727, 45.384614], + [9.158727, 45.380118], + [9.15423, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.384614], + [9.15423, 45.389111], + [9.158727, 45.389111], + [9.158727, 45.384614], + [9.15423, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.389111], + [9.15423, 45.393608], + [9.158727, 45.393608], + [9.158727, 45.389111], + [9.15423, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.393608], + [9.15423, 45.398104], + [9.158727, 45.398104], + [9.158727, 45.393608], + [9.15423, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.398104], + [9.15423, 45.402601], + [9.158727, 45.402601], + [9.158727, 45.398104], + [9.15423, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.402601], + [9.15423, 45.407097], + [9.158727, 45.407097], + [9.158727, 45.402601], + [9.15423, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.407097], + [9.15423, 45.411594], + [9.158727, 45.411594], + [9.158727, 45.407097], + [9.15423, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.411594], + [9.15423, 45.416091], + [9.158727, 45.416091], + [9.158727, 45.411594], + [9.15423, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.416091], + [9.15423, 45.420587], + [9.158727, 45.420587], + [9.158727, 45.416091], + [9.15423, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.420587], + [9.15423, 45.425084], + [9.158727, 45.425084], + [9.158727, 45.420587], + [9.15423, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.425084], + [9.15423, 45.42958], + [9.158727, 45.42958], + [9.158727, 45.425084], + [9.15423, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.42958], + [9.15423, 45.434077], + [9.158727, 45.434077], + [9.158727, 45.42958], + [9.15423, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.434077], + [9.15423, 45.438574], + [9.158727, 45.438574], + [9.158727, 45.434077], + [9.15423, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.438574], + [9.15423, 45.44307], + [9.158727, 45.44307], + [9.158727, 45.438574], + [9.15423, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.44307], + [9.15423, 45.447567], + [9.158727, 45.447567], + [9.158727, 45.44307], + [9.15423, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.447567], + [9.15423, 45.452063], + [9.158727, 45.452063], + [9.158727, 45.447567], + [9.15423, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.452063], + [9.15423, 45.45656], + [9.158727, 45.45656], + [9.158727, 45.452063], + [9.15423, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.45656], + [9.15423, 45.461057], + [9.158727, 45.461057], + [9.158727, 45.45656], + [9.15423, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.461057], + [9.15423, 45.465553], + [9.158727, 45.465553], + [9.158727, 45.461057], + [9.15423, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.465553], + [9.15423, 45.47005], + [9.158727, 45.47005], + [9.158727, 45.465553], + [9.15423, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 11, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.47005], + [9.15423, 45.474547], + [9.158727, 45.474547], + [9.158727, 45.47005], + [9.15423, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.474547], + [9.15423, 45.479043], + [9.158727, 45.479043], + [9.158727, 45.474547], + [9.15423, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.479043], + [9.15423, 45.48354], + [9.158727, 45.48354], + [9.158727, 45.479043], + [9.15423, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.48354], + [9.15423, 45.488036], + [9.158727, 45.488036], + [9.158727, 45.48354], + [9.15423, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.488036], + [9.15423, 45.492533], + [9.158727, 45.492533], + [9.158727, 45.488036], + [9.15423, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.492533], + [9.15423, 45.49703], + [9.158727, 45.49703], + [9.158727, 45.492533], + [9.15423, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.49703], + [9.15423, 45.501526], + [9.158727, 45.501526], + [9.158727, 45.49703], + [9.15423, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.501526], + [9.15423, 45.506023], + [9.158727, 45.506023], + [9.158727, 45.501526], + [9.15423, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.506023], + [9.15423, 45.510519], + [9.158727, 45.510519], + [9.158727, 45.506023], + [9.15423, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.510519], + [9.15423, 45.515016], + [9.158727, 45.515016], + [9.158727, 45.510519], + [9.15423, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.515016], + [9.15423, 45.519513], + [9.158727, 45.519513], + [9.158727, 45.515016], + [9.15423, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.519513], + [9.15423, 45.524009], + [9.158727, 45.524009], + [9.158727, 45.519513], + [9.15423, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.524009], + [9.15423, 45.528506], + [9.158727, 45.528506], + [9.158727, 45.524009], + [9.15423, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.528506], + [9.15423, 45.533002], + [9.158727, 45.533002], + [9.158727, 45.528506], + [9.15423, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.533002], + [9.15423, 45.537499], + [9.158727, 45.537499], + [9.158727, 45.533002], + [9.15423, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.537499], + [9.15423, 45.541996], + [9.158727, 45.541996], + [9.158727, 45.537499], + [9.15423, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.541996], + [9.15423, 45.546492], + [9.158727, 45.546492], + [9.158727, 45.541996], + [9.15423, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.546492], + [9.15423, 45.550989], + [9.158727, 45.550989], + [9.158727, 45.546492], + [9.15423, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.550989], + [9.15423, 45.555485], + [9.158727, 45.555485], + [9.158727, 45.550989], + [9.15423, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.555485], + [9.15423, 45.559982], + [9.158727, 45.559982], + [9.158727, 45.555485], + [9.15423, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.559982], + [9.15423, 45.564479], + [9.158727, 45.564479], + [9.158727, 45.559982], + [9.15423, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.564479], + [9.15423, 45.568975], + [9.158727, 45.568975], + [9.158727, 45.564479], + [9.15423, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.568975], + [9.15423, 45.573472], + [9.158727, 45.573472], + [9.158727, 45.568975], + [9.15423, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.573472], + [9.15423, 45.577968], + [9.158727, 45.577968], + [9.158727, 45.573472], + [9.15423, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.577968], + [9.15423, 45.582465], + [9.158727, 45.582465], + [9.158727, 45.577968], + [9.15423, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.582465], + [9.15423, 45.586962], + [9.158727, 45.586962], + [9.158727, 45.582465], + [9.15423, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.586962], + [9.15423, 45.591458], + [9.158727, 45.591458], + [9.158727, 45.586962], + [9.15423, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.591458], + [9.15423, 45.595955], + [9.158727, 45.595955], + [9.158727, 45.591458], + [9.15423, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.595955], + [9.15423, 45.600451], + [9.158727, 45.600451], + [9.158727, 45.595955], + [9.15423, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.600451], + [9.15423, 45.604948], + [9.158727, 45.604948], + [9.158727, 45.600451], + [9.15423, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.604948], + [9.15423, 45.609445], + [9.158727, 45.609445], + [9.158727, 45.604948], + [9.15423, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.609445], + [9.15423, 45.613941], + [9.158727, 45.613941], + [9.158727, 45.609445], + [9.15423, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.613941], + [9.15423, 45.618438], + [9.158727, 45.618438], + [9.158727, 45.613941], + [9.15423, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.618438], + [9.15423, 45.622934], + [9.158727, 45.622934], + [9.158727, 45.618438], + [9.15423, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.622934], + [9.15423, 45.627431], + [9.158727, 45.627431], + [9.158727, 45.622934], + [9.15423, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.627431], + [9.15423, 45.631928], + [9.158727, 45.631928], + [9.158727, 45.627431], + [9.15423, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.631928], + [9.15423, 45.636424], + [9.158727, 45.636424], + [9.158727, 45.631928], + [9.15423, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.339648], + [9.158727, 45.344145], + [9.163223, 45.344145], + [9.163223, 45.339648], + [9.158727, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.344145], + [9.158727, 45.348642], + [9.163223, 45.348642], + [9.163223, 45.344145], + [9.158727, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.348642], + [9.158727, 45.353138], + [9.163223, 45.353138], + [9.163223, 45.348642], + [9.158727, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.353138], + [9.158727, 45.357635], + [9.163223, 45.357635], + [9.163223, 45.353138], + [9.158727, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.357635], + [9.158727, 45.362131], + [9.163223, 45.362131], + [9.163223, 45.357635], + [9.158727, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.362131], + [9.158727, 45.366628], + [9.163223, 45.366628], + [9.163223, 45.362131], + [9.158727, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.366628], + [9.158727, 45.371125], + [9.163223, 45.371125], + [9.163223, 45.366628], + [9.158727, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.371125], + [9.158727, 45.375621], + [9.163223, 45.375621], + [9.163223, 45.371125], + [9.158727, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.375621], + [9.158727, 45.380118], + [9.163223, 45.380118], + [9.163223, 45.375621], + [9.158727, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.380118], + [9.158727, 45.384614], + [9.163223, 45.384614], + [9.163223, 45.380118], + [9.158727, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.384614], + [9.158727, 45.389111], + [9.163223, 45.389111], + [9.163223, 45.384614], + [9.158727, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.389111], + [9.158727, 45.393608], + [9.163223, 45.393608], + [9.163223, 45.389111], + [9.158727, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.393608], + [9.158727, 45.398104], + [9.163223, 45.398104], + [9.163223, 45.393608], + [9.158727, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.398104], + [9.158727, 45.402601], + [9.163223, 45.402601], + [9.163223, 45.398104], + [9.158727, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.402601], + [9.158727, 45.407097], + [9.163223, 45.407097], + [9.163223, 45.402601], + [9.158727, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.407097], + [9.158727, 45.411594], + [9.163223, 45.411594], + [9.163223, 45.407097], + [9.158727, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.411594], + [9.158727, 45.416091], + [9.163223, 45.416091], + [9.163223, 45.411594], + [9.158727, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.416091], + [9.158727, 45.420587], + [9.163223, 45.420587], + [9.163223, 45.416091], + [9.158727, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.420587], + [9.158727, 45.425084], + [9.163223, 45.425084], + [9.163223, 45.420587], + [9.158727, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.425084], + [9.158727, 45.42958], + [9.163223, 45.42958], + [9.163223, 45.425084], + [9.158727, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.42958], + [9.158727, 45.434077], + [9.163223, 45.434077], + [9.163223, 45.42958], + [9.158727, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.434077], + [9.158727, 45.438574], + [9.163223, 45.438574], + [9.163223, 45.434077], + [9.158727, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.438574], + [9.158727, 45.44307], + [9.163223, 45.44307], + [9.163223, 45.438574], + [9.158727, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.44307], + [9.158727, 45.447567], + [9.163223, 45.447567], + [9.163223, 45.44307], + [9.158727, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.447567], + [9.158727, 45.452063], + [9.163223, 45.452063], + [9.163223, 45.447567], + [9.158727, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.452063], + [9.158727, 45.45656], + [9.163223, 45.45656], + [9.163223, 45.452063], + [9.158727, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.45656], + [9.158727, 45.461057], + [9.163223, 45.461057], + [9.163223, 45.45656], + [9.158727, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.461057], + [9.158727, 45.465553], + [9.163223, 45.465553], + [9.163223, 45.461057], + [9.158727, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.465553], + [9.158727, 45.47005], + [9.163223, 45.47005], + [9.163223, 45.465553], + [9.158727, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.47005], + [9.158727, 45.474547], + [9.163223, 45.474547], + [9.163223, 45.47005], + [9.158727, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.474547], + [9.158727, 45.479043], + [9.163223, 45.479043], + [9.163223, 45.474547], + [9.158727, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.479043], + [9.158727, 45.48354], + [9.163223, 45.48354], + [9.163223, 45.479043], + [9.158727, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.48354], + [9.158727, 45.488036], + [9.163223, 45.488036], + [9.163223, 45.48354], + [9.158727, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.488036], + [9.158727, 45.492533], + [9.163223, 45.492533], + [9.163223, 45.488036], + [9.158727, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.492533], + [9.158727, 45.49703], + [9.163223, 45.49703], + [9.163223, 45.492533], + [9.158727, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.49703], + [9.158727, 45.501526], + [9.163223, 45.501526], + [9.163223, 45.49703], + [9.158727, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.501526], + [9.158727, 45.506023], + [9.163223, 45.506023], + [9.163223, 45.501526], + [9.158727, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.506023], + [9.158727, 45.510519], + [9.163223, 45.510519], + [9.163223, 45.506023], + [9.158727, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.510519], + [9.158727, 45.515016], + [9.163223, 45.515016], + [9.163223, 45.510519], + [9.158727, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.515016], + [9.158727, 45.519513], + [9.163223, 45.519513], + [9.163223, 45.515016], + [9.158727, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.519513], + [9.158727, 45.524009], + [9.163223, 45.524009], + [9.163223, 45.519513], + [9.158727, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.524009], + [9.158727, 45.528506], + [9.163223, 45.528506], + [9.163223, 45.524009], + [9.158727, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.528506], + [9.158727, 45.533002], + [9.163223, 45.533002], + [9.163223, 45.528506], + [9.158727, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.533002], + [9.158727, 45.537499], + [9.163223, 45.537499], + [9.163223, 45.533002], + [9.158727, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.537499], + [9.158727, 45.541996], + [9.163223, 45.541996], + [9.163223, 45.537499], + [9.158727, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.541996], + [9.158727, 45.546492], + [9.163223, 45.546492], + [9.163223, 45.541996], + [9.158727, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.546492], + [9.158727, 45.550989], + [9.163223, 45.550989], + [9.163223, 45.546492], + [9.158727, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.550989], + [9.158727, 45.555485], + [9.163223, 45.555485], + [9.163223, 45.550989], + [9.158727, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.555485], + [9.158727, 45.559982], + [9.163223, 45.559982], + [9.163223, 45.555485], + [9.158727, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.559982], + [9.158727, 45.564479], + [9.163223, 45.564479], + [9.163223, 45.559982], + [9.158727, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.564479], + [9.158727, 45.568975], + [9.163223, 45.568975], + [9.163223, 45.564479], + [9.158727, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.568975], + [9.158727, 45.573472], + [9.163223, 45.573472], + [9.163223, 45.568975], + [9.158727, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.573472], + [9.158727, 45.577968], + [9.163223, 45.577968], + [9.163223, 45.573472], + [9.158727, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.577968], + [9.158727, 45.582465], + [9.163223, 45.582465], + [9.163223, 45.577968], + [9.158727, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.582465], + [9.158727, 45.586962], + [9.163223, 45.586962], + [9.163223, 45.582465], + [9.158727, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.586962], + [9.158727, 45.591458], + [9.163223, 45.591458], + [9.163223, 45.586962], + [9.158727, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.591458], + [9.158727, 45.595955], + [9.163223, 45.595955], + [9.163223, 45.591458], + [9.158727, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.595955], + [9.158727, 45.600451], + [9.163223, 45.600451], + [9.163223, 45.595955], + [9.158727, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.600451], + [9.158727, 45.604948], + [9.163223, 45.604948], + [9.163223, 45.600451], + [9.158727, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.604948], + [9.158727, 45.609445], + [9.163223, 45.609445], + [9.163223, 45.604948], + [9.158727, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.609445], + [9.158727, 45.613941], + [9.163223, 45.613941], + [9.163223, 45.609445], + [9.158727, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.613941], + [9.158727, 45.618438], + [9.163223, 45.618438], + [9.163223, 45.613941], + [9.158727, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.618438], + [9.158727, 45.622934], + [9.163223, 45.622934], + [9.163223, 45.618438], + [9.158727, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.622934], + [9.158727, 45.627431], + [9.163223, 45.627431], + [9.163223, 45.622934], + [9.158727, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.627431], + [9.158727, 45.631928], + [9.163223, 45.631928], + [9.163223, 45.627431], + [9.158727, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.631928], + [9.158727, 45.636424], + [9.163223, 45.636424], + [9.163223, 45.631928], + [9.158727, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.339648], + [9.163223, 45.344145], + [9.16772, 45.344145], + [9.16772, 45.339648], + [9.163223, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.344145], + [9.163223, 45.348642], + [9.16772, 45.348642], + [9.16772, 45.344145], + [9.163223, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.348642], + [9.163223, 45.353138], + [9.16772, 45.353138], + [9.16772, 45.348642], + [9.163223, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.353138], + [9.163223, 45.357635], + [9.16772, 45.357635], + [9.16772, 45.353138], + [9.163223, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.357635], + [9.163223, 45.362131], + [9.16772, 45.362131], + [9.16772, 45.357635], + [9.163223, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.362131], + [9.163223, 45.366628], + [9.16772, 45.366628], + [9.16772, 45.362131], + [9.163223, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.366628], + [9.163223, 45.371125], + [9.16772, 45.371125], + [9.16772, 45.366628], + [9.163223, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.371125], + [9.163223, 45.375621], + [9.16772, 45.375621], + [9.16772, 45.371125], + [9.163223, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.375621], + [9.163223, 45.380118], + [9.16772, 45.380118], + [9.16772, 45.375621], + [9.163223, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.380118], + [9.163223, 45.384614], + [9.16772, 45.384614], + [9.16772, 45.380118], + [9.163223, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.384614], + [9.163223, 45.389111], + [9.16772, 45.389111], + [9.16772, 45.384614], + [9.163223, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.389111], + [9.163223, 45.393608], + [9.16772, 45.393608], + [9.16772, 45.389111], + [9.163223, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.393608], + [9.163223, 45.398104], + [9.16772, 45.398104], + [9.16772, 45.393608], + [9.163223, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.398104], + [9.163223, 45.402601], + [9.16772, 45.402601], + [9.16772, 45.398104], + [9.163223, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.402601], + [9.163223, 45.407097], + [9.16772, 45.407097], + [9.16772, 45.402601], + [9.163223, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.407097], + [9.163223, 45.411594], + [9.16772, 45.411594], + [9.16772, 45.407097], + [9.163223, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.411594], + [9.163223, 45.416091], + [9.16772, 45.416091], + [9.16772, 45.411594], + [9.163223, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.416091], + [9.163223, 45.420587], + [9.16772, 45.420587], + [9.16772, 45.416091], + [9.163223, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.420587], + [9.163223, 45.425084], + [9.16772, 45.425084], + [9.16772, 45.420587], + [9.163223, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.425084], + [9.163223, 45.42958], + [9.16772, 45.42958], + [9.16772, 45.425084], + [9.163223, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.42958], + [9.163223, 45.434077], + [9.16772, 45.434077], + [9.16772, 45.42958], + [9.163223, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.434077], + [9.163223, 45.438574], + [9.16772, 45.438574], + [9.16772, 45.434077], + [9.163223, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.438574], + [9.163223, 45.44307], + [9.16772, 45.44307], + [9.16772, 45.438574], + [9.163223, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.44307], + [9.163223, 45.447567], + [9.16772, 45.447567], + [9.16772, 45.44307], + [9.163223, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.447567], + [9.163223, 45.452063], + [9.16772, 45.452063], + [9.16772, 45.447567], + [9.163223, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.452063], + [9.163223, 45.45656], + [9.16772, 45.45656], + [9.16772, 45.452063], + [9.163223, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.45656], + [9.163223, 45.461057], + [9.16772, 45.461057], + [9.16772, 45.45656], + [9.163223, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.461057], + [9.163223, 45.465553], + [9.16772, 45.465553], + [9.16772, 45.461057], + [9.163223, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.465553], + [9.163223, 45.47005], + [9.16772, 45.47005], + [9.16772, 45.465553], + [9.163223, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.47005], + [9.163223, 45.474547], + [9.16772, 45.474547], + [9.16772, 45.47005], + [9.163223, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.474547], + [9.163223, 45.479043], + [9.16772, 45.479043], + [9.16772, 45.474547], + [9.163223, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.479043], + [9.163223, 45.48354], + [9.16772, 45.48354], + [9.16772, 45.479043], + [9.163223, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.48354], + [9.163223, 45.488036], + [9.16772, 45.488036], + [9.16772, 45.48354], + [9.163223, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.488036], + [9.163223, 45.492533], + [9.16772, 45.492533], + [9.16772, 45.488036], + [9.163223, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.492533], + [9.163223, 45.49703], + [9.16772, 45.49703], + [9.16772, 45.492533], + [9.163223, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.49703], + [9.163223, 45.501526], + [9.16772, 45.501526], + [9.16772, 45.49703], + [9.163223, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.501526], + [9.163223, 45.506023], + [9.16772, 45.506023], + [9.16772, 45.501526], + [9.163223, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.506023], + [9.163223, 45.510519], + [9.16772, 45.510519], + [9.16772, 45.506023], + [9.163223, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.510519], + [9.163223, 45.515016], + [9.16772, 45.515016], + [9.16772, 45.510519], + [9.163223, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.515016], + [9.163223, 45.519513], + [9.16772, 45.519513], + [9.16772, 45.515016], + [9.163223, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.519513], + [9.163223, 45.524009], + [9.16772, 45.524009], + [9.16772, 45.519513], + [9.163223, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.524009], + [9.163223, 45.528506], + [9.16772, 45.528506], + [9.16772, 45.524009], + [9.163223, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.528506], + [9.163223, 45.533002], + [9.16772, 45.533002], + [9.16772, 45.528506], + [9.163223, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.533002], + [9.163223, 45.537499], + [9.16772, 45.537499], + [9.16772, 45.533002], + [9.163223, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.537499], + [9.163223, 45.541996], + [9.16772, 45.541996], + [9.16772, 45.537499], + [9.163223, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.541996], + [9.163223, 45.546492], + [9.16772, 45.546492], + [9.16772, 45.541996], + [9.163223, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.546492], + [9.163223, 45.550989], + [9.16772, 45.550989], + [9.16772, 45.546492], + [9.163223, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.550989], + [9.163223, 45.555485], + [9.16772, 45.555485], + [9.16772, 45.550989], + [9.163223, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.555485], + [9.163223, 45.559982], + [9.16772, 45.559982], + [9.16772, 45.555485], + [9.163223, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.559982], + [9.163223, 45.564479], + [9.16772, 45.564479], + [9.16772, 45.559982], + [9.163223, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.564479], + [9.163223, 45.568975], + [9.16772, 45.568975], + [9.16772, 45.564479], + [9.163223, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.568975], + [9.163223, 45.573472], + [9.16772, 45.573472], + [9.16772, 45.568975], + [9.163223, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.573472], + [9.163223, 45.577968], + [9.16772, 45.577968], + [9.16772, 45.573472], + [9.163223, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.577968], + [9.163223, 45.582465], + [9.16772, 45.582465], + [9.16772, 45.577968], + [9.163223, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.582465], + [9.163223, 45.586962], + [9.16772, 45.586962], + [9.16772, 45.582465], + [9.163223, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.586962], + [9.163223, 45.591458], + [9.16772, 45.591458], + [9.16772, 45.586962], + [9.163223, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.591458], + [9.163223, 45.595955], + [9.16772, 45.595955], + [9.16772, 45.591458], + [9.163223, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.595955], + [9.163223, 45.600451], + [9.16772, 45.600451], + [9.16772, 45.595955], + [9.163223, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.600451], + [9.163223, 45.604948], + [9.16772, 45.604948], + [9.16772, 45.600451], + [9.163223, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.604948], + [9.163223, 45.609445], + [9.16772, 45.609445], + [9.16772, 45.604948], + [9.163223, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.609445], + [9.163223, 45.613941], + [9.16772, 45.613941], + [9.16772, 45.609445], + [9.163223, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.613941], + [9.163223, 45.618438], + [9.16772, 45.618438], + [9.16772, 45.613941], + [9.163223, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.618438], + [9.163223, 45.622934], + [9.16772, 45.622934], + [9.16772, 45.618438], + [9.163223, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.622934], + [9.163223, 45.627431], + [9.16772, 45.627431], + [9.16772, 45.622934], + [9.163223, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.627431], + [9.163223, 45.631928], + [9.16772, 45.631928], + [9.16772, 45.627431], + [9.163223, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.631928], + [9.163223, 45.636424], + [9.16772, 45.636424], + [9.16772, 45.631928], + [9.163223, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.339648], + [9.16772, 45.344145], + [9.172216, 45.344145], + [9.172216, 45.339648], + [9.16772, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.344145], + [9.16772, 45.348642], + [9.172216, 45.348642], + [9.172216, 45.344145], + [9.16772, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.348642], + [9.16772, 45.353138], + [9.172216, 45.353138], + [9.172216, 45.348642], + [9.16772, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.353138], + [9.16772, 45.357635], + [9.172216, 45.357635], + [9.172216, 45.353138], + [9.16772, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.357635], + [9.16772, 45.362131], + [9.172216, 45.362131], + [9.172216, 45.357635], + [9.16772, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.362131], + [9.16772, 45.366628], + [9.172216, 45.366628], + [9.172216, 45.362131], + [9.16772, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.366628], + [9.16772, 45.371125], + [9.172216, 45.371125], + [9.172216, 45.366628], + [9.16772, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.371125], + [9.16772, 45.375621], + [9.172216, 45.375621], + [9.172216, 45.371125], + [9.16772, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.375621], + [9.16772, 45.380118], + [9.172216, 45.380118], + [9.172216, 45.375621], + [9.16772, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.380118], + [9.16772, 45.384614], + [9.172216, 45.384614], + [9.172216, 45.380118], + [9.16772, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.384614], + [9.16772, 45.389111], + [9.172216, 45.389111], + [9.172216, 45.384614], + [9.16772, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.389111], + [9.16772, 45.393608], + [9.172216, 45.393608], + [9.172216, 45.389111], + [9.16772, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.393608], + [9.16772, 45.398104], + [9.172216, 45.398104], + [9.172216, 45.393608], + [9.16772, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.398104], + [9.16772, 45.402601], + [9.172216, 45.402601], + [9.172216, 45.398104], + [9.16772, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.402601], + [9.16772, 45.407097], + [9.172216, 45.407097], + [9.172216, 45.402601], + [9.16772, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.407097], + [9.16772, 45.411594], + [9.172216, 45.411594], + [9.172216, 45.407097], + [9.16772, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.411594], + [9.16772, 45.416091], + [9.172216, 45.416091], + [9.172216, 45.411594], + [9.16772, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.416091], + [9.16772, 45.420587], + [9.172216, 45.420587], + [9.172216, 45.416091], + [9.16772, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.420587], + [9.16772, 45.425084], + [9.172216, 45.425084], + [9.172216, 45.420587], + [9.16772, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.425084], + [9.16772, 45.42958], + [9.172216, 45.42958], + [9.172216, 45.425084], + [9.16772, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.42958], + [9.16772, 45.434077], + [9.172216, 45.434077], + [9.172216, 45.42958], + [9.16772, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.434077], + [9.16772, 45.438574], + [9.172216, 45.438574], + [9.172216, 45.434077], + [9.16772, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.438574], + [9.16772, 45.44307], + [9.172216, 45.44307], + [9.172216, 45.438574], + [9.16772, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.44307], + [9.16772, 45.447567], + [9.172216, 45.447567], + [9.172216, 45.44307], + [9.16772, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.447567], + [9.16772, 45.452063], + [9.172216, 45.452063], + [9.172216, 45.447567], + [9.16772, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.452063], + [9.16772, 45.45656], + [9.172216, 45.45656], + [9.172216, 45.452063], + [9.16772, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.45656], + [9.16772, 45.461057], + [9.172216, 45.461057], + [9.172216, 45.45656], + [9.16772, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.461057], + [9.16772, 45.465553], + [9.172216, 45.465553], + [9.172216, 45.461057], + [9.16772, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.465553], + [9.16772, 45.47005], + [9.172216, 45.47005], + [9.172216, 45.465553], + [9.16772, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.47005], + [9.16772, 45.474547], + [9.172216, 45.474547], + [9.172216, 45.47005], + [9.16772, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.474547], + [9.16772, 45.479043], + [9.172216, 45.479043], + [9.172216, 45.474547], + [9.16772, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.479043], + [9.16772, 45.48354], + [9.172216, 45.48354], + [9.172216, 45.479043], + [9.16772, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.48354], + [9.16772, 45.488036], + [9.172216, 45.488036], + [9.172216, 45.48354], + [9.16772, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.488036], + [9.16772, 45.492533], + [9.172216, 45.492533], + [9.172216, 45.488036], + [9.16772, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.492533], + [9.16772, 45.49703], + [9.172216, 45.49703], + [9.172216, 45.492533], + [9.16772, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.49703], + [9.16772, 45.501526], + [9.172216, 45.501526], + [9.172216, 45.49703], + [9.16772, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.501526], + [9.16772, 45.506023], + [9.172216, 45.506023], + [9.172216, 45.501526], + [9.16772, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.506023], + [9.16772, 45.510519], + [9.172216, 45.510519], + [9.172216, 45.506023], + [9.16772, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.510519], + [9.16772, 45.515016], + [9.172216, 45.515016], + [9.172216, 45.510519], + [9.16772, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.515016], + [9.16772, 45.519513], + [9.172216, 45.519513], + [9.172216, 45.515016], + [9.16772, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.519513], + [9.16772, 45.524009], + [9.172216, 45.524009], + [9.172216, 45.519513], + [9.16772, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.524009], + [9.16772, 45.528506], + [9.172216, 45.528506], + [9.172216, 45.524009], + [9.16772, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.528506], + [9.16772, 45.533002], + [9.172216, 45.533002], + [9.172216, 45.528506], + [9.16772, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.533002], + [9.16772, 45.537499], + [9.172216, 45.537499], + [9.172216, 45.533002], + [9.16772, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.537499], + [9.16772, 45.541996], + [9.172216, 45.541996], + [9.172216, 45.537499], + [9.16772, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.541996], + [9.16772, 45.546492], + [9.172216, 45.546492], + [9.172216, 45.541996], + [9.16772, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.546492], + [9.16772, 45.550989], + [9.172216, 45.550989], + [9.172216, 45.546492], + [9.16772, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.550989], + [9.16772, 45.555485], + [9.172216, 45.555485], + [9.172216, 45.550989], + [9.16772, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.555485], + [9.16772, 45.559982], + [9.172216, 45.559982], + [9.172216, 45.555485], + [9.16772, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.559982], + [9.16772, 45.564479], + [9.172216, 45.564479], + [9.172216, 45.559982], + [9.16772, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.564479], + [9.16772, 45.568975], + [9.172216, 45.568975], + [9.172216, 45.564479], + [9.16772, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.568975], + [9.16772, 45.573472], + [9.172216, 45.573472], + [9.172216, 45.568975], + [9.16772, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.573472], + [9.16772, 45.577968], + [9.172216, 45.577968], + [9.172216, 45.573472], + [9.16772, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.577968], + [9.16772, 45.582465], + [9.172216, 45.582465], + [9.172216, 45.577968], + [9.16772, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.582465], + [9.16772, 45.586962], + [9.172216, 45.586962], + [9.172216, 45.582465], + [9.16772, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.586962], + [9.16772, 45.591458], + [9.172216, 45.591458], + [9.172216, 45.586962], + [9.16772, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.591458], + [9.16772, 45.595955], + [9.172216, 45.595955], + [9.172216, 45.591458], + [9.16772, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.595955], + [9.16772, 45.600451], + [9.172216, 45.600451], + [9.172216, 45.595955], + [9.16772, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.600451], + [9.16772, 45.604948], + [9.172216, 45.604948], + [9.172216, 45.600451], + [9.16772, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.604948], + [9.16772, 45.609445], + [9.172216, 45.609445], + [9.172216, 45.604948], + [9.16772, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.609445], + [9.16772, 45.613941], + [9.172216, 45.613941], + [9.172216, 45.609445], + [9.16772, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.613941], + [9.16772, 45.618438], + [9.172216, 45.618438], + [9.172216, 45.613941], + [9.16772, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.618438], + [9.16772, 45.622934], + [9.172216, 45.622934], + [9.172216, 45.618438], + [9.16772, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.622934], + [9.16772, 45.627431], + [9.172216, 45.627431], + [9.172216, 45.622934], + [9.16772, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.627431], + [9.16772, 45.631928], + [9.172216, 45.631928], + [9.172216, 45.627431], + [9.16772, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.631928], + [9.16772, 45.636424], + [9.172216, 45.636424], + [9.172216, 45.631928], + [9.16772, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.339648], + [9.172216, 45.344145], + [9.176713, 45.344145], + [9.176713, 45.339648], + [9.172216, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.344145], + [9.172216, 45.348642], + [9.176713, 45.348642], + [9.176713, 45.344145], + [9.172216, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.348642], + [9.172216, 45.353138], + [9.176713, 45.353138], + [9.176713, 45.348642], + [9.172216, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.353138], + [9.172216, 45.357635], + [9.176713, 45.357635], + [9.176713, 45.353138], + [9.172216, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.357635], + [9.172216, 45.362131], + [9.176713, 45.362131], + [9.176713, 45.357635], + [9.172216, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.362131], + [9.172216, 45.366628], + [9.176713, 45.366628], + [9.176713, 45.362131], + [9.172216, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.366628], + [9.172216, 45.371125], + [9.176713, 45.371125], + [9.176713, 45.366628], + [9.172216, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.371125], + [9.172216, 45.375621], + [9.176713, 45.375621], + [9.176713, 45.371125], + [9.172216, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.375621], + [9.172216, 45.380118], + [9.176713, 45.380118], + [9.176713, 45.375621], + [9.172216, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.380118], + [9.172216, 45.384614], + [9.176713, 45.384614], + [9.176713, 45.380118], + [9.172216, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.384614], + [9.172216, 45.389111], + [9.176713, 45.389111], + [9.176713, 45.384614], + [9.172216, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.389111], + [9.172216, 45.393608], + [9.176713, 45.393608], + [9.176713, 45.389111], + [9.172216, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.393608], + [9.172216, 45.398104], + [9.176713, 45.398104], + [9.176713, 45.393608], + [9.172216, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.398104], + [9.172216, 45.402601], + [9.176713, 45.402601], + [9.176713, 45.398104], + [9.172216, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.402601], + [9.172216, 45.407097], + [9.176713, 45.407097], + [9.176713, 45.402601], + [9.172216, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.407097], + [9.172216, 45.411594], + [9.176713, 45.411594], + [9.176713, 45.407097], + [9.172216, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.411594], + [9.172216, 45.416091], + [9.176713, 45.416091], + [9.176713, 45.411594], + [9.172216, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.416091], + [9.172216, 45.420587], + [9.176713, 45.420587], + [9.176713, 45.416091], + [9.172216, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.420587], + [9.172216, 45.425084], + [9.176713, 45.425084], + [9.176713, 45.420587], + [9.172216, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.425084], + [9.172216, 45.42958], + [9.176713, 45.42958], + [9.176713, 45.425084], + [9.172216, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.42958], + [9.172216, 45.434077], + [9.176713, 45.434077], + [9.176713, 45.42958], + [9.172216, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.434077], + [9.172216, 45.438574], + [9.176713, 45.438574], + [9.176713, 45.434077], + [9.172216, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.438574], + [9.172216, 45.44307], + [9.176713, 45.44307], + [9.176713, 45.438574], + [9.172216, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.44307], + [9.172216, 45.447567], + [9.176713, 45.447567], + [9.176713, 45.44307], + [9.172216, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.447567], + [9.172216, 45.452063], + [9.176713, 45.452063], + [9.176713, 45.447567], + [9.172216, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.452063], + [9.172216, 45.45656], + [9.176713, 45.45656], + [9.176713, 45.452063], + [9.172216, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.45656], + [9.172216, 45.461057], + [9.176713, 45.461057], + [9.176713, 45.45656], + [9.172216, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.461057], + [9.172216, 45.465553], + [9.176713, 45.465553], + [9.176713, 45.461057], + [9.172216, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.465553], + [9.172216, 45.47005], + [9.176713, 45.47005], + [9.176713, 45.465553], + [9.172216, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.47005], + [9.172216, 45.474547], + [9.176713, 45.474547], + [9.176713, 45.47005], + [9.172216, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.474547], + [9.172216, 45.479043], + [9.176713, 45.479043], + [9.176713, 45.474547], + [9.172216, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.479043], + [9.172216, 45.48354], + [9.176713, 45.48354], + [9.176713, 45.479043], + [9.172216, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.48354], + [9.172216, 45.488036], + [9.176713, 45.488036], + [9.176713, 45.48354], + [9.172216, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.488036], + [9.172216, 45.492533], + [9.176713, 45.492533], + [9.176713, 45.488036], + [9.172216, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.492533], + [9.172216, 45.49703], + [9.176713, 45.49703], + [9.176713, 45.492533], + [9.172216, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.49703], + [9.172216, 45.501526], + [9.176713, 45.501526], + [9.176713, 45.49703], + [9.172216, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.501526], + [9.172216, 45.506023], + [9.176713, 45.506023], + [9.176713, 45.501526], + [9.172216, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.506023], + [9.172216, 45.510519], + [9.176713, 45.510519], + [9.176713, 45.506023], + [9.172216, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.510519], + [9.172216, 45.515016], + [9.176713, 45.515016], + [9.176713, 45.510519], + [9.172216, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.515016], + [9.172216, 45.519513], + [9.176713, 45.519513], + [9.176713, 45.515016], + [9.172216, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.519513], + [9.172216, 45.524009], + [9.176713, 45.524009], + [9.176713, 45.519513], + [9.172216, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.524009], + [9.172216, 45.528506], + [9.176713, 45.528506], + [9.176713, 45.524009], + [9.172216, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.528506], + [9.172216, 45.533002], + [9.176713, 45.533002], + [9.176713, 45.528506], + [9.172216, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.533002], + [9.172216, 45.537499], + [9.176713, 45.537499], + [9.176713, 45.533002], + [9.172216, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.537499], + [9.172216, 45.541996], + [9.176713, 45.541996], + [9.176713, 45.537499], + [9.172216, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.541996], + [9.172216, 45.546492], + [9.176713, 45.546492], + [9.176713, 45.541996], + [9.172216, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.546492], + [9.172216, 45.550989], + [9.176713, 45.550989], + [9.176713, 45.546492], + [9.172216, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.550989], + [9.172216, 45.555485], + [9.176713, 45.555485], + [9.176713, 45.550989], + [9.172216, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.555485], + [9.172216, 45.559982], + [9.176713, 45.559982], + [9.176713, 45.555485], + [9.172216, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.559982], + [9.172216, 45.564479], + [9.176713, 45.564479], + [9.176713, 45.559982], + [9.172216, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.564479], + [9.172216, 45.568975], + [9.176713, 45.568975], + [9.176713, 45.564479], + [9.172216, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.568975], + [9.172216, 45.573472], + [9.176713, 45.573472], + [9.176713, 45.568975], + [9.172216, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.573472], + [9.172216, 45.577968], + [9.176713, 45.577968], + [9.176713, 45.573472], + [9.172216, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.577968], + [9.172216, 45.582465], + [9.176713, 45.582465], + [9.176713, 45.577968], + [9.172216, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.582465], + [9.172216, 45.586962], + [9.176713, 45.586962], + [9.176713, 45.582465], + [9.172216, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.586962], + [9.172216, 45.591458], + [9.176713, 45.591458], + [9.176713, 45.586962], + [9.172216, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.591458], + [9.172216, 45.595955], + [9.176713, 45.595955], + [9.176713, 45.591458], + [9.172216, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.595955], + [9.172216, 45.600451], + [9.176713, 45.600451], + [9.176713, 45.595955], + [9.172216, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.600451], + [9.172216, 45.604948], + [9.176713, 45.604948], + [9.176713, 45.600451], + [9.172216, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.604948], + [9.172216, 45.609445], + [9.176713, 45.609445], + [9.176713, 45.604948], + [9.172216, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.609445], + [9.172216, 45.613941], + [9.176713, 45.613941], + [9.176713, 45.609445], + [9.172216, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.613941], + [9.172216, 45.618438], + [9.176713, 45.618438], + [9.176713, 45.613941], + [9.172216, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.618438], + [9.172216, 45.622934], + [9.176713, 45.622934], + [9.176713, 45.618438], + [9.172216, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.622934], + [9.172216, 45.627431], + [9.176713, 45.627431], + [9.176713, 45.622934], + [9.172216, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.627431], + [9.172216, 45.631928], + [9.176713, 45.631928], + [9.176713, 45.627431], + [9.172216, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.631928], + [9.172216, 45.636424], + [9.176713, 45.636424], + [9.176713, 45.631928], + [9.172216, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.339648], + [9.176713, 45.344145], + [9.18121, 45.344145], + [9.18121, 45.339648], + [9.176713, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.344145], + [9.176713, 45.348642], + [9.18121, 45.348642], + [9.18121, 45.344145], + [9.176713, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.348642], + [9.176713, 45.353138], + [9.18121, 45.353138], + [9.18121, 45.348642], + [9.176713, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.353138], + [9.176713, 45.357635], + [9.18121, 45.357635], + [9.18121, 45.353138], + [9.176713, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.357635], + [9.176713, 45.362131], + [9.18121, 45.362131], + [9.18121, 45.357635], + [9.176713, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.362131], + [9.176713, 45.366628], + [9.18121, 45.366628], + [9.18121, 45.362131], + [9.176713, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.366628], + [9.176713, 45.371125], + [9.18121, 45.371125], + [9.18121, 45.366628], + [9.176713, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.371125], + [9.176713, 45.375621], + [9.18121, 45.375621], + [9.18121, 45.371125], + [9.176713, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.375621], + [9.176713, 45.380118], + [9.18121, 45.380118], + [9.18121, 45.375621], + [9.176713, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.380118], + [9.176713, 45.384614], + [9.18121, 45.384614], + [9.18121, 45.380118], + [9.176713, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.384614], + [9.176713, 45.389111], + [9.18121, 45.389111], + [9.18121, 45.384614], + [9.176713, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.389111], + [9.176713, 45.393608], + [9.18121, 45.393608], + [9.18121, 45.389111], + [9.176713, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.393608], + [9.176713, 45.398104], + [9.18121, 45.398104], + [9.18121, 45.393608], + [9.176713, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.398104], + [9.176713, 45.402601], + [9.18121, 45.402601], + [9.18121, 45.398104], + [9.176713, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.402601], + [9.176713, 45.407097], + [9.18121, 45.407097], + [9.18121, 45.402601], + [9.176713, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.407097], + [9.176713, 45.411594], + [9.18121, 45.411594], + [9.18121, 45.407097], + [9.176713, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.411594], + [9.176713, 45.416091], + [9.18121, 45.416091], + [9.18121, 45.411594], + [9.176713, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.416091], + [9.176713, 45.420587], + [9.18121, 45.420587], + [9.18121, 45.416091], + [9.176713, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.420587], + [9.176713, 45.425084], + [9.18121, 45.425084], + [9.18121, 45.420587], + [9.176713, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.425084], + [9.176713, 45.42958], + [9.18121, 45.42958], + [9.18121, 45.425084], + [9.176713, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.42958], + [9.176713, 45.434077], + [9.18121, 45.434077], + [9.18121, 45.42958], + [9.176713, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.434077], + [9.176713, 45.438574], + [9.18121, 45.438574], + [9.18121, 45.434077], + [9.176713, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.438574], + [9.176713, 45.44307], + [9.18121, 45.44307], + [9.18121, 45.438574], + [9.176713, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.44307], + [9.176713, 45.447567], + [9.18121, 45.447567], + [9.18121, 45.44307], + [9.176713, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.447567], + [9.176713, 45.452063], + [9.18121, 45.452063], + [9.18121, 45.447567], + [9.176713, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.452063], + [9.176713, 45.45656], + [9.18121, 45.45656], + [9.18121, 45.452063], + [9.176713, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.45656], + [9.176713, 45.461057], + [9.18121, 45.461057], + [9.18121, 45.45656], + [9.176713, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.461057], + [9.176713, 45.465553], + [9.18121, 45.465553], + [9.18121, 45.461057], + [9.176713, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.465553], + [9.176713, 45.47005], + [9.18121, 45.47005], + [9.18121, 45.465553], + [9.176713, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.47005], + [9.176713, 45.474547], + [9.18121, 45.474547], + [9.18121, 45.47005], + [9.176713, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.474547], + [9.176713, 45.479043], + [9.18121, 45.479043], + [9.18121, 45.474547], + [9.176713, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.479043], + [9.176713, 45.48354], + [9.18121, 45.48354], + [9.18121, 45.479043], + [9.176713, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.48354], + [9.176713, 45.488036], + [9.18121, 45.488036], + [9.18121, 45.48354], + [9.176713, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.488036], + [9.176713, 45.492533], + [9.18121, 45.492533], + [9.18121, 45.488036], + [9.176713, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.492533], + [9.176713, 45.49703], + [9.18121, 45.49703], + [9.18121, 45.492533], + [9.176713, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.49703], + [9.176713, 45.501526], + [9.18121, 45.501526], + [9.18121, 45.49703], + [9.176713, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.501526], + [9.176713, 45.506023], + [9.18121, 45.506023], + [9.18121, 45.501526], + [9.176713, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.506023], + [9.176713, 45.510519], + [9.18121, 45.510519], + [9.18121, 45.506023], + [9.176713, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.510519], + [9.176713, 45.515016], + [9.18121, 45.515016], + [9.18121, 45.510519], + [9.176713, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.515016], + [9.176713, 45.519513], + [9.18121, 45.519513], + [9.18121, 45.515016], + [9.176713, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.519513], + [9.176713, 45.524009], + [9.18121, 45.524009], + [9.18121, 45.519513], + [9.176713, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.524009], + [9.176713, 45.528506], + [9.18121, 45.528506], + [9.18121, 45.524009], + [9.176713, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.528506], + [9.176713, 45.533002], + [9.18121, 45.533002], + [9.18121, 45.528506], + [9.176713, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.533002], + [9.176713, 45.537499], + [9.18121, 45.537499], + [9.18121, 45.533002], + [9.176713, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.537499], + [9.176713, 45.541996], + [9.18121, 45.541996], + [9.18121, 45.537499], + [9.176713, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.541996], + [9.176713, 45.546492], + [9.18121, 45.546492], + [9.18121, 45.541996], + [9.176713, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.546492], + [9.176713, 45.550989], + [9.18121, 45.550989], + [9.18121, 45.546492], + [9.176713, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.550989], + [9.176713, 45.555485], + [9.18121, 45.555485], + [9.18121, 45.550989], + [9.176713, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.555485], + [9.176713, 45.559982], + [9.18121, 45.559982], + [9.18121, 45.555485], + [9.176713, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.559982], + [9.176713, 45.564479], + [9.18121, 45.564479], + [9.18121, 45.559982], + [9.176713, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.564479], + [9.176713, 45.568975], + [9.18121, 45.568975], + [9.18121, 45.564479], + [9.176713, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.568975], + [9.176713, 45.573472], + [9.18121, 45.573472], + [9.18121, 45.568975], + [9.176713, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.573472], + [9.176713, 45.577968], + [9.18121, 45.577968], + [9.18121, 45.573472], + [9.176713, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.577968], + [9.176713, 45.582465], + [9.18121, 45.582465], + [9.18121, 45.577968], + [9.176713, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.582465], + [9.176713, 45.586962], + [9.18121, 45.586962], + [9.18121, 45.582465], + [9.176713, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.586962], + [9.176713, 45.591458], + [9.18121, 45.591458], + [9.18121, 45.586962], + [9.176713, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.591458], + [9.176713, 45.595955], + [9.18121, 45.595955], + [9.18121, 45.591458], + [9.176713, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.595955], + [9.176713, 45.600451], + [9.18121, 45.600451], + [9.18121, 45.595955], + [9.176713, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.600451], + [9.176713, 45.604948], + [9.18121, 45.604948], + [9.18121, 45.600451], + [9.176713, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.604948], + [9.176713, 45.609445], + [9.18121, 45.609445], + [9.18121, 45.604948], + [9.176713, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.609445], + [9.176713, 45.613941], + [9.18121, 45.613941], + [9.18121, 45.609445], + [9.176713, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.613941], + [9.176713, 45.618438], + [9.18121, 45.618438], + [9.18121, 45.613941], + [9.176713, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.618438], + [9.176713, 45.622934], + [9.18121, 45.622934], + [9.18121, 45.618438], + [9.176713, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.622934], + [9.176713, 45.627431], + [9.18121, 45.627431], + [9.18121, 45.622934], + [9.176713, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.627431], + [9.176713, 45.631928], + [9.18121, 45.631928], + [9.18121, 45.627431], + [9.176713, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.631928], + [9.176713, 45.636424], + [9.18121, 45.636424], + [9.18121, 45.631928], + [9.176713, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.339648], + [9.18121, 45.344145], + [9.185706, 45.344145], + [9.185706, 45.339648], + [9.18121, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.344145], + [9.18121, 45.348642], + [9.185706, 45.348642], + [9.185706, 45.344145], + [9.18121, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.348642], + [9.18121, 45.353138], + [9.185706, 45.353138], + [9.185706, 45.348642], + [9.18121, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.353138], + [9.18121, 45.357635], + [9.185706, 45.357635], + [9.185706, 45.353138], + [9.18121, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.357635], + [9.18121, 45.362131], + [9.185706, 45.362131], + [9.185706, 45.357635], + [9.18121, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.362131], + [9.18121, 45.366628], + [9.185706, 45.366628], + [9.185706, 45.362131], + [9.18121, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.366628], + [9.18121, 45.371125], + [9.185706, 45.371125], + [9.185706, 45.366628], + [9.18121, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.371125], + [9.18121, 45.375621], + [9.185706, 45.375621], + [9.185706, 45.371125], + [9.18121, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.375621], + [9.18121, 45.380118], + [9.185706, 45.380118], + [9.185706, 45.375621], + [9.18121, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.380118], + [9.18121, 45.384614], + [9.185706, 45.384614], + [9.185706, 45.380118], + [9.18121, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.384614], + [9.18121, 45.389111], + [9.185706, 45.389111], + [9.185706, 45.384614], + [9.18121, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.389111], + [9.18121, 45.393608], + [9.185706, 45.393608], + [9.185706, 45.389111], + [9.18121, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.393608], + [9.18121, 45.398104], + [9.185706, 45.398104], + [9.185706, 45.393608], + [9.18121, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.398104], + [9.18121, 45.402601], + [9.185706, 45.402601], + [9.185706, 45.398104], + [9.18121, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.402601], + [9.18121, 45.407097], + [9.185706, 45.407097], + [9.185706, 45.402601], + [9.18121, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.407097], + [9.18121, 45.411594], + [9.185706, 45.411594], + [9.185706, 45.407097], + [9.18121, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.411594], + [9.18121, 45.416091], + [9.185706, 45.416091], + [9.185706, 45.411594], + [9.18121, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.416091], + [9.18121, 45.420587], + [9.185706, 45.420587], + [9.185706, 45.416091], + [9.18121, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.420587], + [9.18121, 45.425084], + [9.185706, 45.425084], + [9.185706, 45.420587], + [9.18121, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.425084], + [9.18121, 45.42958], + [9.185706, 45.42958], + [9.185706, 45.425084], + [9.18121, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.42958], + [9.18121, 45.434077], + [9.185706, 45.434077], + [9.185706, 45.42958], + [9.18121, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.434077], + [9.18121, 45.438574], + [9.185706, 45.438574], + [9.185706, 45.434077], + [9.18121, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.438574], + [9.18121, 45.44307], + [9.185706, 45.44307], + [9.185706, 45.438574], + [9.18121, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.44307], + [9.18121, 45.447567], + [9.185706, 45.447567], + [9.185706, 45.44307], + [9.18121, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.447567], + [9.18121, 45.452063], + [9.185706, 45.452063], + [9.185706, 45.447567], + [9.18121, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.452063], + [9.18121, 45.45656], + [9.185706, 45.45656], + [9.185706, 45.452063], + [9.18121, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.45656], + [9.18121, 45.461057], + [9.185706, 45.461057], + [9.185706, 45.45656], + [9.18121, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.461057], + [9.18121, 45.465553], + [9.185706, 45.465553], + [9.185706, 45.461057], + [9.18121, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.465553], + [9.18121, 45.47005], + [9.185706, 45.47005], + [9.185706, 45.465553], + [9.18121, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.47005], + [9.18121, 45.474547], + [9.185706, 45.474547], + [9.185706, 45.47005], + [9.18121, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.474547], + [9.18121, 45.479043], + [9.185706, 45.479043], + [9.185706, 45.474547], + [9.18121, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.479043], + [9.18121, 45.48354], + [9.185706, 45.48354], + [9.185706, 45.479043], + [9.18121, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.48354], + [9.18121, 45.488036], + [9.185706, 45.488036], + [9.185706, 45.48354], + [9.18121, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.488036], + [9.18121, 45.492533], + [9.185706, 45.492533], + [9.185706, 45.488036], + [9.18121, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.492533], + [9.18121, 45.49703], + [9.185706, 45.49703], + [9.185706, 45.492533], + [9.18121, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.49703], + [9.18121, 45.501526], + [9.185706, 45.501526], + [9.185706, 45.49703], + [9.18121, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.501526], + [9.18121, 45.506023], + [9.185706, 45.506023], + [9.185706, 45.501526], + [9.18121, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.506023], + [9.18121, 45.510519], + [9.185706, 45.510519], + [9.185706, 45.506023], + [9.18121, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.510519], + [9.18121, 45.515016], + [9.185706, 45.515016], + [9.185706, 45.510519], + [9.18121, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.515016], + [9.18121, 45.519513], + [9.185706, 45.519513], + [9.185706, 45.515016], + [9.18121, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.519513], + [9.18121, 45.524009], + [9.185706, 45.524009], + [9.185706, 45.519513], + [9.18121, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.524009], + [9.18121, 45.528506], + [9.185706, 45.528506], + [9.185706, 45.524009], + [9.18121, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.528506], + [9.18121, 45.533002], + [9.185706, 45.533002], + [9.185706, 45.528506], + [9.18121, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.533002], + [9.18121, 45.537499], + [9.185706, 45.537499], + [9.185706, 45.533002], + [9.18121, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.537499], + [9.18121, 45.541996], + [9.185706, 45.541996], + [9.185706, 45.537499], + [9.18121, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.541996], + [9.18121, 45.546492], + [9.185706, 45.546492], + [9.185706, 45.541996], + [9.18121, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.546492], + [9.18121, 45.550989], + [9.185706, 45.550989], + [9.185706, 45.546492], + [9.18121, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.550989], + [9.18121, 45.555485], + [9.185706, 45.555485], + [9.185706, 45.550989], + [9.18121, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.555485], + [9.18121, 45.559982], + [9.185706, 45.559982], + [9.185706, 45.555485], + [9.18121, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.559982], + [9.18121, 45.564479], + [9.185706, 45.564479], + [9.185706, 45.559982], + [9.18121, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.564479], + [9.18121, 45.568975], + [9.185706, 45.568975], + [9.185706, 45.564479], + [9.18121, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.568975], + [9.18121, 45.573472], + [9.185706, 45.573472], + [9.185706, 45.568975], + [9.18121, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.573472], + [9.18121, 45.577968], + [9.185706, 45.577968], + [9.185706, 45.573472], + [9.18121, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.577968], + [9.18121, 45.582465], + [9.185706, 45.582465], + [9.185706, 45.577968], + [9.18121, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.582465], + [9.18121, 45.586962], + [9.185706, 45.586962], + [9.185706, 45.582465], + [9.18121, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.586962], + [9.18121, 45.591458], + [9.185706, 45.591458], + [9.185706, 45.586962], + [9.18121, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.591458], + [9.18121, 45.595955], + [9.185706, 45.595955], + [9.185706, 45.591458], + [9.18121, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.595955], + [9.18121, 45.600451], + [9.185706, 45.600451], + [9.185706, 45.595955], + [9.18121, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.600451], + [9.18121, 45.604948], + [9.185706, 45.604948], + [9.185706, 45.600451], + [9.18121, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.604948], + [9.18121, 45.609445], + [9.185706, 45.609445], + [9.185706, 45.604948], + [9.18121, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.609445], + [9.18121, 45.613941], + [9.185706, 45.613941], + [9.185706, 45.609445], + [9.18121, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.613941], + [9.18121, 45.618438], + [9.185706, 45.618438], + [9.185706, 45.613941], + [9.18121, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.618438], + [9.18121, 45.622934], + [9.185706, 45.622934], + [9.185706, 45.618438], + [9.18121, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.622934], + [9.18121, 45.627431], + [9.185706, 45.627431], + [9.185706, 45.622934], + [9.18121, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.627431], + [9.18121, 45.631928], + [9.185706, 45.631928], + [9.185706, 45.627431], + [9.18121, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.631928], + [9.18121, 45.636424], + [9.185706, 45.636424], + [9.185706, 45.631928], + [9.18121, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.339648], + [9.185706, 45.344145], + [9.190203, 45.344145], + [9.190203, 45.339648], + [9.185706, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.344145], + [9.185706, 45.348642], + [9.190203, 45.348642], + [9.190203, 45.344145], + [9.185706, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.348642], + [9.185706, 45.353138], + [9.190203, 45.353138], + [9.190203, 45.348642], + [9.185706, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.353138], + [9.185706, 45.357635], + [9.190203, 45.357635], + [9.190203, 45.353138], + [9.185706, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.357635], + [9.185706, 45.362131], + [9.190203, 45.362131], + [9.190203, 45.357635], + [9.185706, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.362131], + [9.185706, 45.366628], + [9.190203, 45.366628], + [9.190203, 45.362131], + [9.185706, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.366628], + [9.185706, 45.371125], + [9.190203, 45.371125], + [9.190203, 45.366628], + [9.185706, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.371125], + [9.185706, 45.375621], + [9.190203, 45.375621], + [9.190203, 45.371125], + [9.185706, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.375621], + [9.185706, 45.380118], + [9.190203, 45.380118], + [9.190203, 45.375621], + [9.185706, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.380118], + [9.185706, 45.384614], + [9.190203, 45.384614], + [9.190203, 45.380118], + [9.185706, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.384614], + [9.185706, 45.389111], + [9.190203, 45.389111], + [9.190203, 45.384614], + [9.185706, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.389111], + [9.185706, 45.393608], + [9.190203, 45.393608], + [9.190203, 45.389111], + [9.185706, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.393608], + [9.185706, 45.398104], + [9.190203, 45.398104], + [9.190203, 45.393608], + [9.185706, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.398104], + [9.185706, 45.402601], + [9.190203, 45.402601], + [9.190203, 45.398104], + [9.185706, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.402601], + [9.185706, 45.407097], + [9.190203, 45.407097], + [9.190203, 45.402601], + [9.185706, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.407097], + [9.185706, 45.411594], + [9.190203, 45.411594], + [9.190203, 45.407097], + [9.185706, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.411594], + [9.185706, 45.416091], + [9.190203, 45.416091], + [9.190203, 45.411594], + [9.185706, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.416091], + [9.185706, 45.420587], + [9.190203, 45.420587], + [9.190203, 45.416091], + [9.185706, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.420587], + [9.185706, 45.425084], + [9.190203, 45.425084], + [9.190203, 45.420587], + [9.185706, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.425084], + [9.185706, 45.42958], + [9.190203, 45.42958], + [9.190203, 45.425084], + [9.185706, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.42958], + [9.185706, 45.434077], + [9.190203, 45.434077], + [9.190203, 45.42958], + [9.185706, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.434077], + [9.185706, 45.438574], + [9.190203, 45.438574], + [9.190203, 45.434077], + [9.185706, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.438574], + [9.185706, 45.44307], + [9.190203, 45.44307], + [9.190203, 45.438574], + [9.185706, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.44307], + [9.185706, 45.447567], + [9.190203, 45.447567], + [9.190203, 45.44307], + [9.185706, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.447567], + [9.185706, 45.452063], + [9.190203, 45.452063], + [9.190203, 45.447567], + [9.185706, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.452063], + [9.185706, 45.45656], + [9.190203, 45.45656], + [9.190203, 45.452063], + [9.185706, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.45656], + [9.185706, 45.461057], + [9.190203, 45.461057], + [9.190203, 45.45656], + [9.185706, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.461057], + [9.185706, 45.465553], + [9.190203, 45.465553], + [9.190203, 45.461057], + [9.185706, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.465553], + [9.185706, 45.47005], + [9.190203, 45.47005], + [9.190203, 45.465553], + [9.185706, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.47005], + [9.185706, 45.474547], + [9.190203, 45.474547], + [9.190203, 45.47005], + [9.185706, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.474547], + [9.185706, 45.479043], + [9.190203, 45.479043], + [9.190203, 45.474547], + [9.185706, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.479043], + [9.185706, 45.48354], + [9.190203, 45.48354], + [9.190203, 45.479043], + [9.185706, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.48354], + [9.185706, 45.488036], + [9.190203, 45.488036], + [9.190203, 45.48354], + [9.185706, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.488036], + [9.185706, 45.492533], + [9.190203, 45.492533], + [9.190203, 45.488036], + [9.185706, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.492533], + [9.185706, 45.49703], + [9.190203, 45.49703], + [9.190203, 45.492533], + [9.185706, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.49703], + [9.185706, 45.501526], + [9.190203, 45.501526], + [9.190203, 45.49703], + [9.185706, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.501526], + [9.185706, 45.506023], + [9.190203, 45.506023], + [9.190203, 45.501526], + [9.185706, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.506023], + [9.185706, 45.510519], + [9.190203, 45.510519], + [9.190203, 45.506023], + [9.185706, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.510519], + [9.185706, 45.515016], + [9.190203, 45.515016], + [9.190203, 45.510519], + [9.185706, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.515016], + [9.185706, 45.519513], + [9.190203, 45.519513], + [9.190203, 45.515016], + [9.185706, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.519513], + [9.185706, 45.524009], + [9.190203, 45.524009], + [9.190203, 45.519513], + [9.185706, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.524009], + [9.185706, 45.528506], + [9.190203, 45.528506], + [9.190203, 45.524009], + [9.185706, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.528506], + [9.185706, 45.533002], + [9.190203, 45.533002], + [9.190203, 45.528506], + [9.185706, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 49, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.533002], + [9.185706, 45.537499], + [9.190203, 45.537499], + [9.190203, 45.533002], + [9.185706, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 49, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.537499], + [9.185706, 45.541996], + [9.190203, 45.541996], + [9.190203, 45.537499], + [9.185706, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.541996], + [9.185706, 45.546492], + [9.190203, 45.546492], + [9.190203, 45.541996], + [9.185706, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.546492], + [9.185706, 45.550989], + [9.190203, 45.550989], + [9.190203, 45.546492], + [9.185706, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.550989], + [9.185706, 45.555485], + [9.190203, 45.555485], + [9.190203, 45.550989], + [9.185706, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.555485], + [9.185706, 45.559982], + [9.190203, 45.559982], + [9.190203, 45.555485], + [9.185706, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.559982], + [9.185706, 45.564479], + [9.190203, 45.564479], + [9.190203, 45.559982], + [9.185706, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.564479], + [9.185706, 45.568975], + [9.190203, 45.568975], + [9.190203, 45.564479], + [9.185706, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.568975], + [9.185706, 45.573472], + [9.190203, 45.573472], + [9.190203, 45.568975], + [9.185706, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.573472], + [9.185706, 45.577968], + [9.190203, 45.577968], + [9.190203, 45.573472], + [9.185706, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.577968], + [9.185706, 45.582465], + [9.190203, 45.582465], + [9.190203, 45.577968], + [9.185706, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.582465], + [9.185706, 45.586962], + [9.190203, 45.586962], + [9.190203, 45.582465], + [9.185706, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.586962], + [9.185706, 45.591458], + [9.190203, 45.591458], + [9.190203, 45.586962], + [9.185706, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.591458], + [9.185706, 45.595955], + [9.190203, 45.595955], + [9.190203, 45.591458], + [9.185706, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.595955], + [9.185706, 45.600451], + [9.190203, 45.600451], + [9.190203, 45.595955], + [9.185706, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.600451], + [9.185706, 45.604948], + [9.190203, 45.604948], + [9.190203, 45.600451], + [9.185706, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.604948], + [9.185706, 45.609445], + [9.190203, 45.609445], + [9.190203, 45.604948], + [9.185706, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.609445], + [9.185706, 45.613941], + [9.190203, 45.613941], + [9.190203, 45.609445], + [9.185706, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.613941], + [9.185706, 45.618438], + [9.190203, 45.618438], + [9.190203, 45.613941], + [9.185706, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.618438], + [9.185706, 45.622934], + [9.190203, 45.622934], + [9.190203, 45.618438], + [9.185706, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.622934], + [9.185706, 45.627431], + [9.190203, 45.627431], + [9.190203, 45.622934], + [9.185706, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.627431], + [9.185706, 45.631928], + [9.190203, 45.631928], + [9.190203, 45.627431], + [9.185706, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.631928], + [9.185706, 45.636424], + [9.190203, 45.636424], + [9.190203, 45.631928], + [9.185706, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.339648], + [9.190203, 45.344145], + [9.194699, 45.344145], + [9.194699, 45.339648], + [9.190203, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.344145], + [9.190203, 45.348642], + [9.194699, 45.348642], + [9.194699, 45.344145], + [9.190203, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.348642], + [9.190203, 45.353138], + [9.194699, 45.353138], + [9.194699, 45.348642], + [9.190203, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.353138], + [9.190203, 45.357635], + [9.194699, 45.357635], + [9.194699, 45.353138], + [9.190203, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.357635], + [9.190203, 45.362131], + [9.194699, 45.362131], + [9.194699, 45.357635], + [9.190203, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.362131], + [9.190203, 45.366628], + [9.194699, 45.366628], + [9.194699, 45.362131], + [9.190203, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.366628], + [9.190203, 45.371125], + [9.194699, 45.371125], + [9.194699, 45.366628], + [9.190203, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.371125], + [9.190203, 45.375621], + [9.194699, 45.375621], + [9.194699, 45.371125], + [9.190203, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.375621], + [9.190203, 45.380118], + [9.194699, 45.380118], + [9.194699, 45.375621], + [9.190203, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.380118], + [9.190203, 45.384614], + [9.194699, 45.384614], + [9.194699, 45.380118], + [9.190203, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.384614], + [9.190203, 45.389111], + [9.194699, 45.389111], + [9.194699, 45.384614], + [9.190203, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.389111], + [9.190203, 45.393608], + [9.194699, 45.393608], + [9.194699, 45.389111], + [9.190203, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.393608], + [9.190203, 45.398104], + [9.194699, 45.398104], + [9.194699, 45.393608], + [9.190203, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.398104], + [9.190203, 45.402601], + [9.194699, 45.402601], + [9.194699, 45.398104], + [9.190203, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.402601], + [9.190203, 45.407097], + [9.194699, 45.407097], + [9.194699, 45.402601], + [9.190203, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.407097], + [9.190203, 45.411594], + [9.194699, 45.411594], + [9.194699, 45.407097], + [9.190203, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.411594], + [9.190203, 45.416091], + [9.194699, 45.416091], + [9.194699, 45.411594], + [9.190203, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.416091], + [9.190203, 45.420587], + [9.194699, 45.420587], + [9.194699, 45.416091], + [9.190203, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.420587], + [9.190203, 45.425084], + [9.194699, 45.425084], + [9.194699, 45.420587], + [9.190203, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.425084], + [9.190203, 45.42958], + [9.194699, 45.42958], + [9.194699, 45.425084], + [9.190203, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.42958], + [9.190203, 45.434077], + [9.194699, 45.434077], + [9.194699, 45.42958], + [9.190203, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.434077], + [9.190203, 45.438574], + [9.194699, 45.438574], + [9.194699, 45.434077], + [9.190203, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.438574], + [9.190203, 45.44307], + [9.194699, 45.44307], + [9.194699, 45.438574], + [9.190203, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.44307], + [9.190203, 45.447567], + [9.194699, 45.447567], + [9.194699, 45.44307], + [9.190203, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.447567], + [9.190203, 45.452063], + [9.194699, 45.452063], + [9.194699, 45.447567], + [9.190203, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.452063], + [9.190203, 45.45656], + [9.194699, 45.45656], + [9.194699, 45.452063], + [9.190203, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.45656], + [9.190203, 45.461057], + [9.194699, 45.461057], + [9.194699, 45.45656], + [9.190203, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.461057], + [9.190203, 45.465553], + [9.194699, 45.465553], + [9.194699, 45.461057], + [9.190203, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.465553], + [9.190203, 45.47005], + [9.194699, 45.47005], + [9.194699, 45.465553], + [9.190203, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.47005], + [9.190203, 45.474547], + [9.194699, 45.474547], + [9.194699, 45.47005], + [9.190203, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.474547], + [9.190203, 45.479043], + [9.194699, 45.479043], + [9.194699, 45.474547], + [9.190203, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.479043], + [9.190203, 45.48354], + [9.194699, 45.48354], + [9.194699, 45.479043], + [9.190203, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.48354], + [9.190203, 45.488036], + [9.194699, 45.488036], + [9.194699, 45.48354], + [9.190203, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.488036], + [9.190203, 45.492533], + [9.194699, 45.492533], + [9.194699, 45.488036], + [9.190203, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.492533], + [9.190203, 45.49703], + [9.194699, 45.49703], + [9.194699, 45.492533], + [9.190203, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.49703], + [9.190203, 45.501526], + [9.194699, 45.501526], + [9.194699, 45.49703], + [9.190203, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.501526], + [9.190203, 45.506023], + [9.194699, 45.506023], + [9.194699, 45.501526], + [9.190203, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.506023], + [9.190203, 45.510519], + [9.194699, 45.510519], + [9.194699, 45.506023], + [9.190203, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.510519], + [9.190203, 45.515016], + [9.194699, 45.515016], + [9.194699, 45.510519], + [9.190203, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.515016], + [9.190203, 45.519513], + [9.194699, 45.519513], + [9.194699, 45.515016], + [9.190203, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.519513], + [9.190203, 45.524009], + [9.194699, 45.524009], + [9.194699, 45.519513], + [9.190203, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.524009], + [9.190203, 45.528506], + [9.194699, 45.528506], + [9.194699, 45.524009], + [9.190203, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.528506], + [9.190203, 45.533002], + [9.194699, 45.533002], + [9.194699, 45.528506], + [9.190203, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 57, + "stroke": "#00101f", + "fill": "#00101f", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.533002], + [9.190203, 45.537499], + [9.194699, 45.537499], + [9.194699, 45.533002], + [9.190203, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 55, + "stroke": "#001b33", + "fill": "#001b33", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.537499], + [9.190203, 45.541996], + [9.194699, 45.541996], + [9.194699, 45.537499], + [9.190203, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.541996], + [9.190203, 45.546492], + [9.194699, 45.546492], + [9.194699, 45.541996], + [9.190203, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.546492], + [9.190203, 45.550989], + [9.194699, 45.550989], + [9.194699, 45.546492], + [9.190203, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.550989], + [9.190203, 45.555485], + [9.194699, 45.555485], + [9.194699, 45.550989], + [9.190203, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.555485], + [9.190203, 45.559982], + [9.194699, 45.559982], + [9.194699, 45.555485], + [9.190203, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.559982], + [9.190203, 45.564479], + [9.194699, 45.564479], + [9.194699, 45.559982], + [9.190203, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.564479], + [9.190203, 45.568975], + [9.194699, 45.568975], + [9.194699, 45.564479], + [9.190203, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.568975], + [9.190203, 45.573472], + [9.194699, 45.573472], + [9.194699, 45.568975], + [9.190203, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.573472], + [9.190203, 45.577968], + [9.194699, 45.577968], + [9.194699, 45.573472], + [9.190203, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.577968], + [9.190203, 45.582465], + [9.194699, 45.582465], + [9.194699, 45.577968], + [9.190203, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.582465], + [9.190203, 45.586962], + [9.194699, 45.586962], + [9.194699, 45.582465], + [9.190203, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.586962], + [9.190203, 45.591458], + [9.194699, 45.591458], + [9.194699, 45.586962], + [9.190203, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.591458], + [9.190203, 45.595955], + [9.194699, 45.595955], + [9.194699, 45.591458], + [9.190203, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.595955], + [9.190203, 45.600451], + [9.194699, 45.600451], + [9.194699, 45.595955], + [9.190203, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.600451], + [9.190203, 45.604948], + [9.194699, 45.604948], + [9.194699, 45.600451], + [9.190203, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.604948], + [9.190203, 45.609445], + [9.194699, 45.609445], + [9.194699, 45.604948], + [9.190203, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.609445], + [9.190203, 45.613941], + [9.194699, 45.613941], + [9.194699, 45.609445], + [9.190203, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.613941], + [9.190203, 45.618438], + [9.194699, 45.618438], + [9.194699, 45.613941], + [9.190203, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.618438], + [9.190203, 45.622934], + [9.194699, 45.622934], + [9.194699, 45.618438], + [9.190203, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.622934], + [9.190203, 45.627431], + [9.194699, 45.627431], + [9.194699, 45.622934], + [9.190203, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.627431], + [9.190203, 45.631928], + [9.194699, 45.631928], + [9.194699, 45.627431], + [9.190203, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.631928], + [9.190203, 45.636424], + [9.194699, 45.636424], + [9.194699, 45.631928], + [9.190203, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.339648], + [9.194699, 45.344145], + [9.199196, 45.344145], + [9.199196, 45.339648], + [9.194699, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.344145], + [9.194699, 45.348642], + [9.199196, 45.348642], + [9.199196, 45.344145], + [9.194699, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.348642], + [9.194699, 45.353138], + [9.199196, 45.353138], + [9.199196, 45.348642], + [9.194699, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.353138], + [9.194699, 45.357635], + [9.199196, 45.357635], + [9.199196, 45.353138], + [9.194699, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.357635], + [9.194699, 45.362131], + [9.199196, 45.362131], + [9.199196, 45.357635], + [9.194699, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.362131], + [9.194699, 45.366628], + [9.199196, 45.366628], + [9.199196, 45.362131], + [9.194699, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.366628], + [9.194699, 45.371125], + [9.199196, 45.371125], + [9.199196, 45.366628], + [9.194699, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.371125], + [9.194699, 45.375621], + [9.199196, 45.375621], + [9.199196, 45.371125], + [9.194699, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.375621], + [9.194699, 45.380118], + [9.199196, 45.380118], + [9.199196, 45.375621], + [9.194699, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.380118], + [9.194699, 45.384614], + [9.199196, 45.384614], + [9.199196, 45.380118], + [9.194699, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.384614], + [9.194699, 45.389111], + [9.199196, 45.389111], + [9.199196, 45.384614], + [9.194699, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.389111], + [9.194699, 45.393608], + [9.199196, 45.393608], + [9.199196, 45.389111], + [9.194699, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.393608], + [9.194699, 45.398104], + [9.199196, 45.398104], + [9.199196, 45.393608], + [9.194699, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.398104], + [9.194699, 45.402601], + [9.199196, 45.402601], + [9.199196, 45.398104], + [9.194699, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.402601], + [9.194699, 45.407097], + [9.199196, 45.407097], + [9.199196, 45.402601], + [9.194699, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.407097], + [9.194699, 45.411594], + [9.199196, 45.411594], + [9.199196, 45.407097], + [9.194699, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.411594], + [9.194699, 45.416091], + [9.199196, 45.416091], + [9.199196, 45.411594], + [9.194699, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.416091], + [9.194699, 45.420587], + [9.199196, 45.420587], + [9.199196, 45.416091], + [9.194699, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.420587], + [9.194699, 45.425084], + [9.199196, 45.425084], + [9.199196, 45.420587], + [9.194699, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.425084], + [9.194699, 45.42958], + [9.199196, 45.42958], + [9.199196, 45.425084], + [9.194699, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.42958], + [9.194699, 45.434077], + [9.199196, 45.434077], + [9.199196, 45.42958], + [9.194699, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.434077], + [9.194699, 45.438574], + [9.199196, 45.438574], + [9.199196, 45.434077], + [9.194699, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.438574], + [9.194699, 45.44307], + [9.199196, 45.44307], + [9.199196, 45.438574], + [9.194699, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.44307], + [9.194699, 45.447567], + [9.199196, 45.447567], + [9.199196, 45.44307], + [9.194699, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.447567], + [9.194699, 45.452063], + [9.199196, 45.452063], + [9.199196, 45.447567], + [9.194699, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.452063], + [9.194699, 45.45656], + [9.199196, 45.45656], + [9.199196, 45.452063], + [9.194699, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.45656], + [9.194699, 45.461057], + [9.199196, 45.461057], + [9.199196, 45.45656], + [9.194699, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.461057], + [9.194699, 45.465553], + [9.199196, 45.465553], + [9.199196, 45.461057], + [9.194699, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.465553], + [9.194699, 45.47005], + [9.199196, 45.47005], + [9.199196, 45.465553], + [9.194699, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.47005], + [9.194699, 45.474547], + [9.199196, 45.474547], + [9.199196, 45.47005], + [9.194699, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.474547], + [9.194699, 45.479043], + [9.199196, 45.479043], + [9.199196, 45.474547], + [9.194699, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.479043], + [9.194699, 45.48354], + [9.199196, 45.48354], + [9.199196, 45.479043], + [9.194699, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.48354], + [9.194699, 45.488036], + [9.199196, 45.488036], + [9.199196, 45.48354], + [9.194699, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.488036], + [9.194699, 45.492533], + [9.199196, 45.492533], + [9.199196, 45.488036], + [9.194699, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.492533], + [9.194699, 45.49703], + [9.199196, 45.49703], + [9.199196, 45.492533], + [9.194699, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.49703], + [9.194699, 45.501526], + [9.199196, 45.501526], + [9.199196, 45.49703], + [9.194699, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.501526], + [9.194699, 45.506023], + [9.199196, 45.506023], + [9.199196, 45.501526], + [9.194699, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.506023], + [9.194699, 45.510519], + [9.199196, 45.510519], + [9.199196, 45.506023], + [9.194699, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.510519], + [9.194699, 45.515016], + [9.199196, 45.515016], + [9.199196, 45.510519], + [9.194699, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.515016], + [9.194699, 45.519513], + [9.199196, 45.519513], + [9.199196, 45.515016], + [9.194699, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.519513], + [9.194699, 45.524009], + [9.199196, 45.524009], + [9.199196, 45.519513], + [9.194699, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.524009], + [9.194699, 45.528506], + [9.199196, 45.528506], + [9.199196, 45.524009], + [9.194699, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.528506], + [9.194699, 45.533002], + [9.199196, 45.533002], + [9.199196, 45.528506], + [9.194699, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 60, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.533002], + [9.194699, 45.537499], + [9.199196, 45.537499], + [9.199196, 45.533002], + [9.194699, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 56, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.537499], + [9.194699, 45.541996], + [9.199196, 45.541996], + [9.199196, 45.537499], + [9.194699, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 47, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.541996], + [9.194699, 45.546492], + [9.199196, 45.546492], + [9.199196, 45.541996], + [9.194699, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.546492], + [9.194699, 45.550989], + [9.199196, 45.550989], + [9.199196, 45.546492], + [9.194699, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.550989], + [9.194699, 45.555485], + [9.199196, 45.555485], + [9.199196, 45.550989], + [9.194699, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.555485], + [9.194699, 45.559982], + [9.199196, 45.559982], + [9.199196, 45.555485], + [9.194699, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.559982], + [9.194699, 45.564479], + [9.199196, 45.564479], + [9.199196, 45.559982], + [9.194699, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.564479], + [9.194699, 45.568975], + [9.199196, 45.568975], + [9.199196, 45.564479], + [9.194699, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.568975], + [9.194699, 45.573472], + [9.199196, 45.573472], + [9.199196, 45.568975], + [9.194699, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.573472], + [9.194699, 45.577968], + [9.199196, 45.577968], + [9.199196, 45.573472], + [9.194699, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.577968], + [9.194699, 45.582465], + [9.199196, 45.582465], + [9.199196, 45.577968], + [9.194699, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.582465], + [9.194699, 45.586962], + [9.199196, 45.586962], + [9.199196, 45.582465], + [9.194699, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.586962], + [9.194699, 45.591458], + [9.199196, 45.591458], + [9.199196, 45.586962], + [9.194699, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.591458], + [9.194699, 45.595955], + [9.199196, 45.595955], + [9.199196, 45.591458], + [9.194699, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.595955], + [9.194699, 45.600451], + [9.199196, 45.600451], + [9.199196, 45.595955], + [9.194699, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.600451], + [9.194699, 45.604948], + [9.199196, 45.604948], + [9.199196, 45.600451], + [9.194699, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.604948], + [9.194699, 45.609445], + [9.199196, 45.609445], + [9.199196, 45.604948], + [9.194699, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.609445], + [9.194699, 45.613941], + [9.199196, 45.613941], + [9.199196, 45.609445], + [9.194699, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.613941], + [9.194699, 45.618438], + [9.199196, 45.618438], + [9.199196, 45.613941], + [9.194699, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.618438], + [9.194699, 45.622934], + [9.199196, 45.622934], + [9.199196, 45.618438], + [9.194699, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.622934], + [9.194699, 45.627431], + [9.199196, 45.627431], + [9.199196, 45.622934], + [9.194699, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.627431], + [9.194699, 45.631928], + [9.199196, 45.631928], + [9.199196, 45.627431], + [9.194699, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.631928], + [9.194699, 45.636424], + [9.199196, 45.636424], + [9.199196, 45.631928], + [9.194699, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.339648], + [9.199196, 45.344145], + [9.203693, 45.344145], + [9.203693, 45.339648], + [9.199196, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.344145], + [9.199196, 45.348642], + [9.203693, 45.348642], + [9.203693, 45.344145], + [9.199196, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.348642], + [9.199196, 45.353138], + [9.203693, 45.353138], + [9.203693, 45.348642], + [9.199196, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.353138], + [9.199196, 45.357635], + [9.203693, 45.357635], + [9.203693, 45.353138], + [9.199196, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.357635], + [9.199196, 45.362131], + [9.203693, 45.362131], + [9.203693, 45.357635], + [9.199196, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.362131], + [9.199196, 45.366628], + [9.203693, 45.366628], + [9.203693, 45.362131], + [9.199196, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.366628], + [9.199196, 45.371125], + [9.203693, 45.371125], + [9.203693, 45.366628], + [9.199196, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.371125], + [9.199196, 45.375621], + [9.203693, 45.375621], + [9.203693, 45.371125], + [9.199196, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.375621], + [9.199196, 45.380118], + [9.203693, 45.380118], + [9.203693, 45.375621], + [9.199196, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.380118], + [9.199196, 45.384614], + [9.203693, 45.384614], + [9.203693, 45.380118], + [9.199196, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.384614], + [9.199196, 45.389111], + [9.203693, 45.389111], + [9.203693, 45.384614], + [9.199196, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.389111], + [9.199196, 45.393608], + [9.203693, 45.393608], + [9.203693, 45.389111], + [9.199196, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.393608], + [9.199196, 45.398104], + [9.203693, 45.398104], + [9.203693, 45.393608], + [9.199196, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.398104], + [9.199196, 45.402601], + [9.203693, 45.402601], + [9.203693, 45.398104], + [9.199196, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.402601], + [9.199196, 45.407097], + [9.203693, 45.407097], + [9.203693, 45.402601], + [9.199196, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.407097], + [9.199196, 45.411594], + [9.203693, 45.411594], + [9.203693, 45.407097], + [9.199196, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.411594], + [9.199196, 45.416091], + [9.203693, 45.416091], + [9.203693, 45.411594], + [9.199196, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.416091], + [9.199196, 45.420587], + [9.203693, 45.420587], + [9.203693, 45.416091], + [9.199196, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.420587], + [9.199196, 45.425084], + [9.203693, 45.425084], + [9.203693, 45.420587], + [9.199196, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.425084], + [9.199196, 45.42958], + [9.203693, 45.42958], + [9.203693, 45.425084], + [9.199196, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.42958], + [9.199196, 45.434077], + [9.203693, 45.434077], + [9.203693, 45.42958], + [9.199196, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.434077], + [9.199196, 45.438574], + [9.203693, 45.438574], + [9.203693, 45.434077], + [9.199196, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.438574], + [9.199196, 45.44307], + [9.203693, 45.44307], + [9.203693, 45.438574], + [9.199196, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.44307], + [9.199196, 45.447567], + [9.203693, 45.447567], + [9.203693, 45.44307], + [9.199196, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.447567], + [9.199196, 45.452063], + [9.203693, 45.452063], + [9.203693, 45.447567], + [9.199196, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.452063], + [9.199196, 45.45656], + [9.203693, 45.45656], + [9.203693, 45.452063], + [9.199196, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.45656], + [9.199196, 45.461057], + [9.203693, 45.461057], + [9.203693, 45.45656], + [9.199196, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.461057], + [9.199196, 45.465553], + [9.203693, 45.465553], + [9.203693, 45.461057], + [9.199196, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.465553], + [9.199196, 45.47005], + [9.203693, 45.47005], + [9.203693, 45.465553], + [9.199196, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.47005], + [9.199196, 45.474547], + [9.203693, 45.474547], + [9.203693, 45.47005], + [9.199196, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.474547], + [9.199196, 45.479043], + [9.203693, 45.479043], + [9.203693, 45.474547], + [9.199196, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.479043], + [9.199196, 45.48354], + [9.203693, 45.48354], + [9.203693, 45.479043], + [9.199196, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.48354], + [9.199196, 45.488036], + [9.203693, 45.488036], + [9.203693, 45.48354], + [9.199196, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.488036], + [9.199196, 45.492533], + [9.203693, 45.492533], + [9.203693, 45.488036], + [9.199196, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.492533], + [9.199196, 45.49703], + [9.203693, 45.49703], + [9.203693, 45.492533], + [9.199196, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.49703], + [9.199196, 45.501526], + [9.203693, 45.501526], + [9.203693, 45.49703], + [9.199196, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.501526], + [9.199196, 45.506023], + [9.203693, 45.506023], + [9.203693, 45.501526], + [9.199196, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.506023], + [9.199196, 45.510519], + [9.203693, 45.510519], + [9.203693, 45.506023], + [9.199196, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.510519], + [9.199196, 45.515016], + [9.203693, 45.515016], + [9.203693, 45.510519], + [9.199196, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.515016], + [9.199196, 45.519513], + [9.203693, 45.519513], + [9.203693, 45.515016], + [9.199196, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.519513], + [9.199196, 45.524009], + [9.203693, 45.524009], + [9.203693, 45.519513], + [9.199196, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.524009], + [9.199196, 45.528506], + [9.203693, 45.528506], + [9.203693, 45.524009], + [9.199196, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.528506], + [9.199196, 45.533002], + [9.203693, 45.533002], + [9.203693, 45.528506], + [9.199196, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 51, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.533002], + [9.199196, 45.537499], + [9.203693, 45.537499], + [9.203693, 45.533002], + [9.199196, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 50, + "stroke": "#003566", + "fill": "#003566", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.537499], + [9.199196, 45.541996], + [9.203693, 45.541996], + [9.203693, 45.537499], + [9.199196, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.541996], + [9.199196, 45.546492], + [9.203693, 45.546492], + [9.203693, 45.541996], + [9.199196, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.546492], + [9.199196, 45.550989], + [9.203693, 45.550989], + [9.203693, 45.546492], + [9.199196, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.550989], + [9.199196, 45.555485], + [9.203693, 45.555485], + [9.203693, 45.550989], + [9.199196, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.555485], + [9.199196, 45.559982], + [9.203693, 45.559982], + [9.203693, 45.555485], + [9.199196, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.559982], + [9.199196, 45.564479], + [9.203693, 45.564479], + [9.203693, 45.559982], + [9.199196, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.564479], + [9.199196, 45.568975], + [9.203693, 45.568975], + [9.203693, 45.564479], + [9.199196, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.568975], + [9.199196, 45.573472], + [9.203693, 45.573472], + [9.203693, 45.568975], + [9.199196, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.573472], + [9.199196, 45.577968], + [9.203693, 45.577968], + [9.203693, 45.573472], + [9.199196, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.577968], + [9.199196, 45.582465], + [9.203693, 45.582465], + [9.203693, 45.577968], + [9.199196, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.582465], + [9.199196, 45.586962], + [9.203693, 45.586962], + [9.203693, 45.582465], + [9.199196, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.586962], + [9.199196, 45.591458], + [9.203693, 45.591458], + [9.203693, 45.586962], + [9.199196, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.591458], + [9.199196, 45.595955], + [9.203693, 45.595955], + [9.203693, 45.591458], + [9.199196, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.595955], + [9.199196, 45.600451], + [9.203693, 45.600451], + [9.203693, 45.595955], + [9.199196, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.600451], + [9.199196, 45.604948], + [9.203693, 45.604948], + [9.203693, 45.600451], + [9.199196, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.604948], + [9.199196, 45.609445], + [9.203693, 45.609445], + [9.203693, 45.604948], + [9.199196, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.609445], + [9.199196, 45.613941], + [9.203693, 45.613941], + [9.203693, 45.609445], + [9.199196, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.613941], + [9.199196, 45.618438], + [9.203693, 45.618438], + [9.203693, 45.613941], + [9.199196, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.618438], + [9.199196, 45.622934], + [9.203693, 45.622934], + [9.203693, 45.618438], + [9.199196, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.622934], + [9.199196, 45.627431], + [9.203693, 45.627431], + [9.203693, 45.622934], + [9.199196, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.627431], + [9.199196, 45.631928], + [9.203693, 45.631928], + [9.203693, 45.627431], + [9.199196, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.631928], + [9.199196, 45.636424], + [9.203693, 45.636424], + [9.203693, 45.631928], + [9.199196, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.339648], + [9.203693, 45.344145], + [9.208189, 45.344145], + [9.208189, 45.339648], + [9.203693, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.344145], + [9.203693, 45.348642], + [9.208189, 45.348642], + [9.208189, 45.344145], + [9.203693, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.348642], + [9.203693, 45.353138], + [9.208189, 45.353138], + [9.208189, 45.348642], + [9.203693, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.353138], + [9.203693, 45.357635], + [9.208189, 45.357635], + [9.208189, 45.353138], + [9.203693, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.357635], + [9.203693, 45.362131], + [9.208189, 45.362131], + [9.208189, 45.357635], + [9.203693, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.362131], + [9.203693, 45.366628], + [9.208189, 45.366628], + [9.208189, 45.362131], + [9.203693, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.366628], + [9.203693, 45.371125], + [9.208189, 45.371125], + [9.208189, 45.366628], + [9.203693, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.371125], + [9.203693, 45.375621], + [9.208189, 45.375621], + [9.208189, 45.371125], + [9.203693, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.375621], + [9.203693, 45.380118], + [9.208189, 45.380118], + [9.208189, 45.375621], + [9.203693, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.380118], + [9.203693, 45.384614], + [9.208189, 45.384614], + [9.208189, 45.380118], + [9.203693, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.384614], + [9.203693, 45.389111], + [9.208189, 45.389111], + [9.208189, 45.384614], + [9.203693, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.389111], + [9.203693, 45.393608], + [9.208189, 45.393608], + [9.208189, 45.389111], + [9.203693, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.393608], + [9.203693, 45.398104], + [9.208189, 45.398104], + [9.208189, 45.393608], + [9.203693, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.398104], + [9.203693, 45.402601], + [9.208189, 45.402601], + [9.208189, 45.398104], + [9.203693, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.402601], + [9.203693, 45.407097], + [9.208189, 45.407097], + [9.208189, 45.402601], + [9.203693, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.407097], + [9.203693, 45.411594], + [9.208189, 45.411594], + [9.208189, 45.407097], + [9.203693, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.411594], + [9.203693, 45.416091], + [9.208189, 45.416091], + [9.208189, 45.411594], + [9.203693, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.416091], + [9.203693, 45.420587], + [9.208189, 45.420587], + [9.208189, 45.416091], + [9.203693, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.420587], + [9.203693, 45.425084], + [9.208189, 45.425084], + [9.208189, 45.420587], + [9.203693, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.425084], + [9.203693, 45.42958], + [9.208189, 45.42958], + [9.208189, 45.425084], + [9.203693, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.42958], + [9.203693, 45.434077], + [9.208189, 45.434077], + [9.208189, 45.42958], + [9.203693, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.434077], + [9.203693, 45.438574], + [9.208189, 45.438574], + [9.208189, 45.434077], + [9.203693, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.438574], + [9.203693, 45.44307], + [9.208189, 45.44307], + [9.208189, 45.438574], + [9.203693, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.44307], + [9.203693, 45.447567], + [9.208189, 45.447567], + [9.208189, 45.44307], + [9.203693, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.447567], + [9.203693, 45.452063], + [9.208189, 45.452063], + [9.208189, 45.447567], + [9.203693, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.452063], + [9.203693, 45.45656], + [9.208189, 45.45656], + [9.208189, 45.452063], + [9.203693, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.45656], + [9.203693, 45.461057], + [9.208189, 45.461057], + [9.208189, 45.45656], + [9.203693, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.461057], + [9.203693, 45.465553], + [9.208189, 45.465553], + [9.208189, 45.461057], + [9.203693, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.465553], + [9.203693, 45.47005], + [9.208189, 45.47005], + [9.208189, 45.465553], + [9.203693, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.47005], + [9.203693, 45.474547], + [9.208189, 45.474547], + [9.208189, 45.47005], + [9.203693, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.474547], + [9.203693, 45.479043], + [9.208189, 45.479043], + [9.208189, 45.474547], + [9.203693, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.479043], + [9.203693, 45.48354], + [9.208189, 45.48354], + [9.208189, 45.479043], + [9.203693, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.48354], + [9.203693, 45.488036], + [9.208189, 45.488036], + [9.208189, 45.48354], + [9.203693, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.488036], + [9.203693, 45.492533], + [9.208189, 45.492533], + [9.208189, 45.488036], + [9.203693, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.492533], + [9.203693, 45.49703], + [9.208189, 45.49703], + [9.208189, 45.492533], + [9.203693, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.49703], + [9.203693, 45.501526], + [9.208189, 45.501526], + [9.208189, 45.49703], + [9.203693, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.501526], + [9.203693, 45.506023], + [9.208189, 45.506023], + [9.208189, 45.501526], + [9.203693, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.506023], + [9.203693, 45.510519], + [9.208189, 45.510519], + [9.208189, 45.506023], + [9.203693, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.510519], + [9.203693, 45.515016], + [9.208189, 45.515016], + [9.208189, 45.510519], + [9.203693, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.515016], + [9.203693, 45.519513], + [9.208189, 45.519513], + [9.208189, 45.515016], + [9.203693, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.519513], + [9.203693, 45.524009], + [9.208189, 45.524009], + [9.208189, 45.519513], + [9.203693, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.524009], + [9.203693, 45.528506], + [9.208189, 45.528506], + [9.208189, 45.524009], + [9.203693, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.528506], + [9.203693, 45.533002], + [9.208189, 45.533002], + [9.208189, 45.528506], + [9.203693, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.533002], + [9.203693, 45.537499], + [9.208189, 45.537499], + [9.208189, 45.533002], + [9.203693, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.537499], + [9.203693, 45.541996], + [9.208189, 45.541996], + [9.208189, 45.537499], + [9.203693, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.541996], + [9.203693, 45.546492], + [9.208189, 45.546492], + [9.208189, 45.541996], + [9.203693, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.546492], + [9.203693, 45.550989], + [9.208189, 45.550989], + [9.208189, 45.546492], + [9.203693, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.550989], + [9.203693, 45.555485], + [9.208189, 45.555485], + [9.208189, 45.550989], + [9.203693, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.555485], + [9.203693, 45.559982], + [9.208189, 45.559982], + [9.208189, 45.555485], + [9.203693, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.559982], + [9.203693, 45.564479], + [9.208189, 45.564479], + [9.208189, 45.559982], + [9.203693, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.564479], + [9.203693, 45.568975], + [9.208189, 45.568975], + [9.208189, 45.564479], + [9.203693, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.568975], + [9.203693, 45.573472], + [9.208189, 45.573472], + [9.208189, 45.568975], + [9.203693, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.573472], + [9.203693, 45.577968], + [9.208189, 45.577968], + [9.208189, 45.573472], + [9.203693, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.577968], + [9.203693, 45.582465], + [9.208189, 45.582465], + [9.208189, 45.577968], + [9.203693, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.582465], + [9.203693, 45.586962], + [9.208189, 45.586962], + [9.208189, 45.582465], + [9.203693, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.586962], + [9.203693, 45.591458], + [9.208189, 45.591458], + [9.208189, 45.586962], + [9.203693, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.591458], + [9.203693, 45.595955], + [9.208189, 45.595955], + [9.208189, 45.591458], + [9.203693, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.595955], + [9.203693, 45.600451], + [9.208189, 45.600451], + [9.208189, 45.595955], + [9.203693, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.600451], + [9.203693, 45.604948], + [9.208189, 45.604948], + [9.208189, 45.600451], + [9.203693, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.604948], + [9.203693, 45.609445], + [9.208189, 45.609445], + [9.208189, 45.604948], + [9.203693, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.609445], + [9.203693, 45.613941], + [9.208189, 45.613941], + [9.208189, 45.609445], + [9.203693, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.613941], + [9.203693, 45.618438], + [9.208189, 45.618438], + [9.208189, 45.613941], + [9.203693, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.618438], + [9.203693, 45.622934], + [9.208189, 45.622934], + [9.208189, 45.618438], + [9.203693, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.622934], + [9.203693, 45.627431], + [9.208189, 45.627431], + [9.208189, 45.622934], + [9.203693, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.627431], + [9.203693, 45.631928], + [9.208189, 45.631928], + [9.208189, 45.627431], + [9.203693, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.631928], + [9.203693, 45.636424], + [9.208189, 45.636424], + [9.208189, 45.631928], + [9.203693, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.339648], + [9.208189, 45.344145], + [9.212686, 45.344145], + [9.212686, 45.339648], + [9.208189, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.344145], + [9.208189, 45.348642], + [9.212686, 45.348642], + [9.212686, 45.344145], + [9.208189, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.348642], + [9.208189, 45.353138], + [9.212686, 45.353138], + [9.212686, 45.348642], + [9.208189, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.353138], + [9.208189, 45.357635], + [9.212686, 45.357635], + [9.212686, 45.353138], + [9.208189, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.357635], + [9.208189, 45.362131], + [9.212686, 45.362131], + [9.212686, 45.357635], + [9.208189, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.362131], + [9.208189, 45.366628], + [9.212686, 45.366628], + [9.212686, 45.362131], + [9.208189, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.366628], + [9.208189, 45.371125], + [9.212686, 45.371125], + [9.212686, 45.366628], + [9.208189, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.371125], + [9.208189, 45.375621], + [9.212686, 45.375621], + [9.212686, 45.371125], + [9.208189, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.375621], + [9.208189, 45.380118], + [9.212686, 45.380118], + [9.212686, 45.375621], + [9.208189, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.380118], + [9.208189, 45.384614], + [9.212686, 45.384614], + [9.212686, 45.380118], + [9.208189, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.384614], + [9.208189, 45.389111], + [9.212686, 45.389111], + [9.212686, 45.384614], + [9.208189, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.389111], + [9.208189, 45.393608], + [9.212686, 45.393608], + [9.212686, 45.389111], + [9.208189, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.393608], + [9.208189, 45.398104], + [9.212686, 45.398104], + [9.212686, 45.393608], + [9.208189, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.398104], + [9.208189, 45.402601], + [9.212686, 45.402601], + [9.212686, 45.398104], + [9.208189, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.402601], + [9.208189, 45.407097], + [9.212686, 45.407097], + [9.212686, 45.402601], + [9.208189, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.407097], + [9.208189, 45.411594], + [9.212686, 45.411594], + [9.212686, 45.407097], + [9.208189, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.411594], + [9.208189, 45.416091], + [9.212686, 45.416091], + [9.212686, 45.411594], + [9.208189, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.416091], + [9.208189, 45.420587], + [9.212686, 45.420587], + [9.212686, 45.416091], + [9.208189, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.420587], + [9.208189, 45.425084], + [9.212686, 45.425084], + [9.212686, 45.420587], + [9.208189, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.425084], + [9.208189, 45.42958], + [9.212686, 45.42958], + [9.212686, 45.425084], + [9.208189, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.42958], + [9.208189, 45.434077], + [9.212686, 45.434077], + [9.212686, 45.42958], + [9.208189, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.434077], + [9.208189, 45.438574], + [9.212686, 45.438574], + [9.212686, 45.434077], + [9.208189, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.438574], + [9.208189, 45.44307], + [9.212686, 45.44307], + [9.212686, 45.438574], + [9.208189, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.44307], + [9.208189, 45.447567], + [9.212686, 45.447567], + [9.212686, 45.44307], + [9.208189, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.447567], + [9.208189, 45.452063], + [9.212686, 45.452063], + [9.212686, 45.447567], + [9.208189, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.452063], + [9.208189, 45.45656], + [9.212686, 45.45656], + [9.212686, 45.452063], + [9.208189, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.45656], + [9.208189, 45.461057], + [9.212686, 45.461057], + [9.212686, 45.45656], + [9.208189, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.461057], + [9.208189, 45.465553], + [9.212686, 45.465553], + [9.212686, 45.461057], + [9.208189, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.465553], + [9.208189, 45.47005], + [9.212686, 45.47005], + [9.212686, 45.465553], + [9.208189, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.47005], + [9.208189, 45.474547], + [9.212686, 45.474547], + [9.212686, 45.47005], + [9.208189, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.474547], + [9.208189, 45.479043], + [9.212686, 45.479043], + [9.212686, 45.474547], + [9.208189, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.479043], + [9.208189, 45.48354], + [9.212686, 45.48354], + [9.212686, 45.479043], + [9.208189, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.48354], + [9.208189, 45.488036], + [9.212686, 45.488036], + [9.212686, 45.48354], + [9.208189, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.488036], + [9.208189, 45.492533], + [9.212686, 45.492533], + [9.212686, 45.488036], + [9.208189, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.492533], + [9.208189, 45.49703], + [9.212686, 45.49703], + [9.212686, 45.492533], + [9.208189, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.49703], + [9.208189, 45.501526], + [9.212686, 45.501526], + [9.212686, 45.49703], + [9.208189, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.501526], + [9.208189, 45.506023], + [9.212686, 45.506023], + [9.212686, 45.501526], + [9.208189, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.506023], + [9.208189, 45.510519], + [9.212686, 45.510519], + [9.212686, 45.506023], + [9.208189, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.510519], + [9.208189, 45.515016], + [9.212686, 45.515016], + [9.212686, 45.510519], + [9.208189, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.515016], + [9.208189, 45.519513], + [9.212686, 45.519513], + [9.212686, 45.515016], + [9.208189, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.519513], + [9.208189, 45.524009], + [9.212686, 45.524009], + [9.212686, 45.519513], + [9.208189, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.524009], + [9.208189, 45.528506], + [9.212686, 45.528506], + [9.212686, 45.524009], + [9.208189, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.528506], + [9.208189, 45.533002], + [9.212686, 45.533002], + [9.212686, 45.528506], + [9.208189, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.533002], + [9.208189, 45.537499], + [9.212686, 45.537499], + [9.212686, 45.533002], + [9.208189, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.537499], + [9.208189, 45.541996], + [9.212686, 45.541996], + [9.212686, 45.537499], + [9.208189, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.541996], + [9.208189, 45.546492], + [9.212686, 45.546492], + [9.212686, 45.541996], + [9.208189, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.546492], + [9.208189, 45.550989], + [9.212686, 45.550989], + [9.212686, 45.546492], + [9.208189, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.550989], + [9.208189, 45.555485], + [9.212686, 45.555485], + [9.212686, 45.550989], + [9.208189, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.555485], + [9.208189, 45.559982], + [9.212686, 45.559982], + [9.212686, 45.555485], + [9.208189, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.559982], + [9.208189, 45.564479], + [9.212686, 45.564479], + [9.212686, 45.559982], + [9.208189, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.564479], + [9.208189, 45.568975], + [9.212686, 45.568975], + [9.212686, 45.564479], + [9.208189, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.568975], + [9.208189, 45.573472], + [9.212686, 45.573472], + [9.212686, 45.568975], + [9.208189, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.573472], + [9.208189, 45.577968], + [9.212686, 45.577968], + [9.212686, 45.573472], + [9.208189, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.577968], + [9.208189, 45.582465], + [9.212686, 45.582465], + [9.212686, 45.577968], + [9.208189, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.582465], + [9.208189, 45.586962], + [9.212686, 45.586962], + [9.212686, 45.582465], + [9.208189, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.586962], + [9.208189, 45.591458], + [9.212686, 45.591458], + [9.212686, 45.586962], + [9.208189, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.591458], + [9.208189, 45.595955], + [9.212686, 45.595955], + [9.212686, 45.591458], + [9.208189, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.595955], + [9.208189, 45.600451], + [9.212686, 45.600451], + [9.212686, 45.595955], + [9.208189, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.600451], + [9.208189, 45.604948], + [9.212686, 45.604948], + [9.212686, 45.600451], + [9.208189, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.604948], + [9.208189, 45.609445], + [9.212686, 45.609445], + [9.212686, 45.604948], + [9.208189, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.609445], + [9.208189, 45.613941], + [9.212686, 45.613941], + [9.212686, 45.609445], + [9.208189, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.613941], + [9.208189, 45.618438], + [9.212686, 45.618438], + [9.212686, 45.613941], + [9.208189, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.618438], + [9.208189, 45.622934], + [9.212686, 45.622934], + [9.212686, 45.618438], + [9.208189, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.622934], + [9.208189, 45.627431], + [9.212686, 45.627431], + [9.212686, 45.622934], + [9.208189, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.627431], + [9.208189, 45.631928], + [9.212686, 45.631928], + [9.212686, 45.627431], + [9.208189, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.631928], + [9.208189, 45.636424], + [9.212686, 45.636424], + [9.212686, 45.631928], + [9.208189, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.339648], + [9.212686, 45.344145], + [9.217182, 45.344145], + [9.217182, 45.339648], + [9.212686, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.344145], + [9.212686, 45.348642], + [9.217182, 45.348642], + [9.217182, 45.344145], + [9.212686, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.348642], + [9.212686, 45.353138], + [9.217182, 45.353138], + [9.217182, 45.348642], + [9.212686, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.353138], + [9.212686, 45.357635], + [9.217182, 45.357635], + [9.217182, 45.353138], + [9.212686, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.357635], + [9.212686, 45.362131], + [9.217182, 45.362131], + [9.217182, 45.357635], + [9.212686, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.362131], + [9.212686, 45.366628], + [9.217182, 45.366628], + [9.217182, 45.362131], + [9.212686, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.366628], + [9.212686, 45.371125], + [9.217182, 45.371125], + [9.217182, 45.366628], + [9.212686, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.371125], + [9.212686, 45.375621], + [9.217182, 45.375621], + [9.217182, 45.371125], + [9.212686, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.375621], + [9.212686, 45.380118], + [9.217182, 45.380118], + [9.217182, 45.375621], + [9.212686, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.380118], + [9.212686, 45.384614], + [9.217182, 45.384614], + [9.217182, 45.380118], + [9.212686, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.384614], + [9.212686, 45.389111], + [9.217182, 45.389111], + [9.217182, 45.384614], + [9.212686, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.389111], + [9.212686, 45.393608], + [9.217182, 45.393608], + [9.217182, 45.389111], + [9.212686, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.393608], + [9.212686, 45.398104], + [9.217182, 45.398104], + [9.217182, 45.393608], + [9.212686, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.398104], + [9.212686, 45.402601], + [9.217182, 45.402601], + [9.217182, 45.398104], + [9.212686, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.402601], + [9.212686, 45.407097], + [9.217182, 45.407097], + [9.217182, 45.402601], + [9.212686, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.407097], + [9.212686, 45.411594], + [9.217182, 45.411594], + [9.217182, 45.407097], + [9.212686, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.411594], + [9.212686, 45.416091], + [9.217182, 45.416091], + [9.217182, 45.411594], + [9.212686, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.416091], + [9.212686, 45.420587], + [9.217182, 45.420587], + [9.217182, 45.416091], + [9.212686, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.420587], + [9.212686, 45.425084], + [9.217182, 45.425084], + [9.217182, 45.420587], + [9.212686, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.425084], + [9.212686, 45.42958], + [9.217182, 45.42958], + [9.217182, 45.425084], + [9.212686, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.42958], + [9.212686, 45.434077], + [9.217182, 45.434077], + [9.217182, 45.42958], + [9.212686, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.434077], + [9.212686, 45.438574], + [9.217182, 45.438574], + [9.217182, 45.434077], + [9.212686, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.438574], + [9.212686, 45.44307], + [9.217182, 45.44307], + [9.217182, 45.438574], + [9.212686, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.44307], + [9.212686, 45.447567], + [9.217182, 45.447567], + [9.217182, 45.44307], + [9.212686, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.447567], + [9.212686, 45.452063], + [9.217182, 45.452063], + [9.217182, 45.447567], + [9.212686, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.452063], + [9.212686, 45.45656], + [9.217182, 45.45656], + [9.217182, 45.452063], + [9.212686, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.45656], + [9.212686, 45.461057], + [9.217182, 45.461057], + [9.217182, 45.45656], + [9.212686, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.461057], + [9.212686, 45.465553], + [9.217182, 45.465553], + [9.217182, 45.461057], + [9.212686, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.465553], + [9.212686, 45.47005], + [9.217182, 45.47005], + [9.217182, 45.465553], + [9.212686, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.47005], + [9.212686, 45.474547], + [9.217182, 45.474547], + [9.217182, 45.47005], + [9.212686, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.474547], + [9.212686, 45.479043], + [9.217182, 45.479043], + [9.217182, 45.474547], + [9.212686, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.479043], + [9.212686, 45.48354], + [9.217182, 45.48354], + [9.217182, 45.479043], + [9.212686, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.48354], + [9.212686, 45.488036], + [9.217182, 45.488036], + [9.217182, 45.48354], + [9.212686, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.488036], + [9.212686, 45.492533], + [9.217182, 45.492533], + [9.217182, 45.488036], + [9.212686, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.492533], + [9.212686, 45.49703], + [9.217182, 45.49703], + [9.217182, 45.492533], + [9.212686, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.49703], + [9.212686, 45.501526], + [9.217182, 45.501526], + [9.217182, 45.49703], + [9.212686, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.501526], + [9.212686, 45.506023], + [9.217182, 45.506023], + [9.217182, 45.501526], + [9.212686, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.506023], + [9.212686, 45.510519], + [9.217182, 45.510519], + [9.217182, 45.506023], + [9.212686, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.510519], + [9.212686, 45.515016], + [9.217182, 45.515016], + [9.217182, 45.510519], + [9.212686, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.515016], + [9.212686, 45.519513], + [9.217182, 45.519513], + [9.217182, 45.515016], + [9.212686, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.519513], + [9.212686, 45.524009], + [9.217182, 45.524009], + [9.217182, 45.519513], + [9.212686, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.524009], + [9.212686, 45.528506], + [9.217182, 45.528506], + [9.217182, 45.524009], + [9.212686, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.528506], + [9.212686, 45.533002], + [9.217182, 45.533002], + [9.217182, 45.528506], + [9.212686, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.533002], + [9.212686, 45.537499], + [9.217182, 45.537499], + [9.217182, 45.533002], + [9.212686, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.537499], + [9.212686, 45.541996], + [9.217182, 45.541996], + [9.217182, 45.537499], + [9.212686, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.541996], + [9.212686, 45.546492], + [9.217182, 45.546492], + [9.217182, 45.541996], + [9.212686, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.546492], + [9.212686, 45.550989], + [9.217182, 45.550989], + [9.217182, 45.546492], + [9.212686, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.550989], + [9.212686, 45.555485], + [9.217182, 45.555485], + [9.217182, 45.550989], + [9.212686, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.555485], + [9.212686, 45.559982], + [9.217182, 45.559982], + [9.217182, 45.555485], + [9.212686, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.559982], + [9.212686, 45.564479], + [9.217182, 45.564479], + [9.217182, 45.559982], + [9.212686, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.564479], + [9.212686, 45.568975], + [9.217182, 45.568975], + [9.217182, 45.564479], + [9.212686, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.568975], + [9.212686, 45.573472], + [9.217182, 45.573472], + [9.217182, 45.568975], + [9.212686, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.573472], + [9.212686, 45.577968], + [9.217182, 45.577968], + [9.217182, 45.573472], + [9.212686, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.577968], + [9.212686, 45.582465], + [9.217182, 45.582465], + [9.217182, 45.577968], + [9.212686, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.582465], + [9.212686, 45.586962], + [9.217182, 45.586962], + [9.217182, 45.582465], + [9.212686, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.586962], + [9.212686, 45.591458], + [9.217182, 45.591458], + [9.217182, 45.586962], + [9.212686, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.591458], + [9.212686, 45.595955], + [9.217182, 45.595955], + [9.217182, 45.591458], + [9.212686, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.595955], + [9.212686, 45.600451], + [9.217182, 45.600451], + [9.217182, 45.595955], + [9.212686, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.600451], + [9.212686, 45.604948], + [9.217182, 45.604948], + [9.217182, 45.600451], + [9.212686, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.604948], + [9.212686, 45.609445], + [9.217182, 45.609445], + [9.217182, 45.604948], + [9.212686, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.609445], + [9.212686, 45.613941], + [9.217182, 45.613941], + [9.217182, 45.609445], + [9.212686, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.613941], + [9.212686, 45.618438], + [9.217182, 45.618438], + [9.217182, 45.613941], + [9.212686, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.618438], + [9.212686, 45.622934], + [9.217182, 45.622934], + [9.217182, 45.618438], + [9.212686, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.622934], + [9.212686, 45.627431], + [9.217182, 45.627431], + [9.217182, 45.622934], + [9.212686, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.627431], + [9.212686, 45.631928], + [9.217182, 45.631928], + [9.217182, 45.627431], + [9.212686, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.631928], + [9.212686, 45.636424], + [9.217182, 45.636424], + [9.217182, 45.631928], + [9.212686, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.339648], + [9.217182, 45.344145], + [9.221679, 45.344145], + [9.221679, 45.339648], + [9.217182, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.344145], + [9.217182, 45.348642], + [9.221679, 45.348642], + [9.221679, 45.344145], + [9.217182, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.348642], + [9.217182, 45.353138], + [9.221679, 45.353138], + [9.221679, 45.348642], + [9.217182, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.353138], + [9.217182, 45.357635], + [9.221679, 45.357635], + [9.221679, 45.353138], + [9.217182, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.357635], + [9.217182, 45.362131], + [9.221679, 45.362131], + [9.221679, 45.357635], + [9.217182, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.362131], + [9.217182, 45.366628], + [9.221679, 45.366628], + [9.221679, 45.362131], + [9.217182, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.366628], + [9.217182, 45.371125], + [9.221679, 45.371125], + [9.221679, 45.366628], + [9.217182, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.371125], + [9.217182, 45.375621], + [9.221679, 45.375621], + [9.221679, 45.371125], + [9.217182, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.375621], + [9.217182, 45.380118], + [9.221679, 45.380118], + [9.221679, 45.375621], + [9.217182, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.380118], + [9.217182, 45.384614], + [9.221679, 45.384614], + [9.221679, 45.380118], + [9.217182, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.384614], + [9.217182, 45.389111], + [9.221679, 45.389111], + [9.221679, 45.384614], + [9.217182, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.389111], + [9.217182, 45.393608], + [9.221679, 45.393608], + [9.221679, 45.389111], + [9.217182, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.393608], + [9.217182, 45.398104], + [9.221679, 45.398104], + [9.221679, 45.393608], + [9.217182, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.398104], + [9.217182, 45.402601], + [9.221679, 45.402601], + [9.221679, 45.398104], + [9.217182, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.402601], + [9.217182, 45.407097], + [9.221679, 45.407097], + [9.221679, 45.402601], + [9.217182, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.407097], + [9.217182, 45.411594], + [9.221679, 45.411594], + [9.221679, 45.407097], + [9.217182, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.411594], + [9.217182, 45.416091], + [9.221679, 45.416091], + [9.221679, 45.411594], + [9.217182, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.416091], + [9.217182, 45.420587], + [9.221679, 45.420587], + [9.221679, 45.416091], + [9.217182, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.420587], + [9.217182, 45.425084], + [9.221679, 45.425084], + [9.221679, 45.420587], + [9.217182, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.425084], + [9.217182, 45.42958], + [9.221679, 45.42958], + [9.221679, 45.425084], + [9.217182, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.42958], + [9.217182, 45.434077], + [9.221679, 45.434077], + [9.221679, 45.42958], + [9.217182, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.434077], + [9.217182, 45.438574], + [9.221679, 45.438574], + [9.221679, 45.434077], + [9.217182, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.438574], + [9.217182, 45.44307], + [9.221679, 45.44307], + [9.221679, 45.438574], + [9.217182, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.44307], + [9.217182, 45.447567], + [9.221679, 45.447567], + [9.221679, 45.44307], + [9.217182, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.447567], + [9.217182, 45.452063], + [9.221679, 45.452063], + [9.221679, 45.447567], + [9.217182, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.452063], + [9.217182, 45.45656], + [9.221679, 45.45656], + [9.221679, 45.452063], + [9.217182, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.45656], + [9.217182, 45.461057], + [9.221679, 45.461057], + [9.221679, 45.45656], + [9.217182, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.461057], + [9.217182, 45.465553], + [9.221679, 45.465553], + [9.221679, 45.461057], + [9.217182, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.465553], + [9.217182, 45.47005], + [9.221679, 45.47005], + [9.221679, 45.465553], + [9.217182, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.47005], + [9.217182, 45.474547], + [9.221679, 45.474547], + [9.221679, 45.47005], + [9.217182, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.474547], + [9.217182, 45.479043], + [9.221679, 45.479043], + [9.221679, 45.474547], + [9.217182, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.479043], + [9.217182, 45.48354], + [9.221679, 45.48354], + [9.221679, 45.479043], + [9.217182, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.48354], + [9.217182, 45.488036], + [9.221679, 45.488036], + [9.221679, 45.48354], + [9.217182, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.488036], + [9.217182, 45.492533], + [9.221679, 45.492533], + [9.221679, 45.488036], + [9.217182, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.492533], + [9.217182, 45.49703], + [9.221679, 45.49703], + [9.221679, 45.492533], + [9.217182, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.49703], + [9.217182, 45.501526], + [9.221679, 45.501526], + [9.221679, 45.49703], + [9.217182, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.501526], + [9.217182, 45.506023], + [9.221679, 45.506023], + [9.221679, 45.501526], + [9.217182, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.506023], + [9.217182, 45.510519], + [9.221679, 45.510519], + [9.221679, 45.506023], + [9.217182, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.510519], + [9.217182, 45.515016], + [9.221679, 45.515016], + [9.221679, 45.510519], + [9.217182, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.515016], + [9.217182, 45.519513], + [9.221679, 45.519513], + [9.221679, 45.515016], + [9.217182, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.519513], + [9.217182, 45.524009], + [9.221679, 45.524009], + [9.221679, 45.519513], + [9.217182, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.524009], + [9.217182, 45.528506], + [9.221679, 45.528506], + [9.221679, 45.524009], + [9.217182, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.528506], + [9.217182, 45.533002], + [9.221679, 45.533002], + [9.221679, 45.528506], + [9.217182, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.533002], + [9.217182, 45.537499], + [9.221679, 45.537499], + [9.221679, 45.533002], + [9.217182, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.537499], + [9.217182, 45.541996], + [9.221679, 45.541996], + [9.221679, 45.537499], + [9.217182, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.541996], + [9.217182, 45.546492], + [9.221679, 45.546492], + [9.221679, 45.541996], + [9.217182, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.546492], + [9.217182, 45.550989], + [9.221679, 45.550989], + [9.221679, 45.546492], + [9.217182, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.550989], + [9.217182, 45.555485], + [9.221679, 45.555485], + [9.221679, 45.550989], + [9.217182, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.555485], + [9.217182, 45.559982], + [9.221679, 45.559982], + [9.221679, 45.555485], + [9.217182, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.559982], + [9.217182, 45.564479], + [9.221679, 45.564479], + [9.221679, 45.559982], + [9.217182, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.564479], + [9.217182, 45.568975], + [9.221679, 45.568975], + [9.221679, 45.564479], + [9.217182, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.568975], + [9.217182, 45.573472], + [9.221679, 45.573472], + [9.221679, 45.568975], + [9.217182, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.573472], + [9.217182, 45.577968], + [9.221679, 45.577968], + [9.221679, 45.573472], + [9.217182, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.577968], + [9.217182, 45.582465], + [9.221679, 45.582465], + [9.221679, 45.577968], + [9.217182, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.582465], + [9.217182, 45.586962], + [9.221679, 45.586962], + [9.221679, 45.582465], + [9.217182, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.586962], + [9.217182, 45.591458], + [9.221679, 45.591458], + [9.221679, 45.586962], + [9.217182, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.591458], + [9.217182, 45.595955], + [9.221679, 45.595955], + [9.221679, 45.591458], + [9.217182, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.595955], + [9.217182, 45.600451], + [9.221679, 45.600451], + [9.221679, 45.595955], + [9.217182, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.600451], + [9.217182, 45.604948], + [9.221679, 45.604948], + [9.221679, 45.600451], + [9.217182, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.604948], + [9.217182, 45.609445], + [9.221679, 45.609445], + [9.221679, 45.604948], + [9.217182, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.609445], + [9.217182, 45.613941], + [9.221679, 45.613941], + [9.221679, 45.609445], + [9.217182, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.613941], + [9.217182, 45.618438], + [9.221679, 45.618438], + [9.221679, 45.613941], + [9.217182, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.618438], + [9.217182, 45.622934], + [9.221679, 45.622934], + [9.221679, 45.618438], + [9.217182, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.622934], + [9.217182, 45.627431], + [9.221679, 45.627431], + [9.221679, 45.622934], + [9.217182, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.627431], + [9.217182, 45.631928], + [9.221679, 45.631928], + [9.221679, 45.627431], + [9.217182, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.631928], + [9.217182, 45.636424], + [9.221679, 45.636424], + [9.221679, 45.631928], + [9.217182, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.339648], + [9.221679, 45.344145], + [9.226176, 45.344145], + [9.226176, 45.339648], + [9.221679, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.344145], + [9.221679, 45.348642], + [9.226176, 45.348642], + [9.226176, 45.344145], + [9.221679, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.348642], + [9.221679, 45.353138], + [9.226176, 45.353138], + [9.226176, 45.348642], + [9.221679, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.353138], + [9.221679, 45.357635], + [9.226176, 45.357635], + [9.226176, 45.353138], + [9.221679, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.357635], + [9.221679, 45.362131], + [9.226176, 45.362131], + [9.226176, 45.357635], + [9.221679, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.362131], + [9.221679, 45.366628], + [9.226176, 45.366628], + [9.226176, 45.362131], + [9.221679, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.366628], + [9.221679, 45.371125], + [9.226176, 45.371125], + [9.226176, 45.366628], + [9.221679, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.371125], + [9.221679, 45.375621], + [9.226176, 45.375621], + [9.226176, 45.371125], + [9.221679, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.375621], + [9.221679, 45.380118], + [9.226176, 45.380118], + [9.226176, 45.375621], + [9.221679, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.380118], + [9.221679, 45.384614], + [9.226176, 45.384614], + [9.226176, 45.380118], + [9.221679, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.384614], + [9.221679, 45.389111], + [9.226176, 45.389111], + [9.226176, 45.384614], + [9.221679, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.389111], + [9.221679, 45.393608], + [9.226176, 45.393608], + [9.226176, 45.389111], + [9.221679, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.393608], + [9.221679, 45.398104], + [9.226176, 45.398104], + [9.226176, 45.393608], + [9.221679, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.398104], + [9.221679, 45.402601], + [9.226176, 45.402601], + [9.226176, 45.398104], + [9.221679, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.402601], + [9.221679, 45.407097], + [9.226176, 45.407097], + [9.226176, 45.402601], + [9.221679, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.407097], + [9.221679, 45.411594], + [9.226176, 45.411594], + [9.226176, 45.407097], + [9.221679, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.411594], + [9.221679, 45.416091], + [9.226176, 45.416091], + [9.226176, 45.411594], + [9.221679, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.416091], + [9.221679, 45.420587], + [9.226176, 45.420587], + [9.226176, 45.416091], + [9.221679, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.420587], + [9.221679, 45.425084], + [9.226176, 45.425084], + [9.226176, 45.420587], + [9.221679, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.425084], + [9.221679, 45.42958], + [9.226176, 45.42958], + [9.226176, 45.425084], + [9.221679, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.42958], + [9.221679, 45.434077], + [9.226176, 45.434077], + [9.226176, 45.42958], + [9.221679, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.434077], + [9.221679, 45.438574], + [9.226176, 45.438574], + [9.226176, 45.434077], + [9.221679, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.438574], + [9.221679, 45.44307], + [9.226176, 45.44307], + [9.226176, 45.438574], + [9.221679, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.44307], + [9.221679, 45.447567], + [9.226176, 45.447567], + [9.226176, 45.44307], + [9.221679, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.447567], + [9.221679, 45.452063], + [9.226176, 45.452063], + [9.226176, 45.447567], + [9.221679, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.452063], + [9.221679, 45.45656], + [9.226176, 45.45656], + [9.226176, 45.452063], + [9.221679, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.45656], + [9.221679, 45.461057], + [9.226176, 45.461057], + [9.226176, 45.45656], + [9.221679, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.461057], + [9.221679, 45.465553], + [9.226176, 45.465553], + [9.226176, 45.461057], + [9.221679, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.465553], + [9.221679, 45.47005], + [9.226176, 45.47005], + [9.226176, 45.465553], + [9.221679, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.47005], + [9.221679, 45.474547], + [9.226176, 45.474547], + [9.226176, 45.47005], + [9.221679, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.474547], + [9.221679, 45.479043], + [9.226176, 45.479043], + [9.226176, 45.474547], + [9.221679, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.479043], + [9.221679, 45.48354], + [9.226176, 45.48354], + [9.226176, 45.479043], + [9.221679, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.48354], + [9.221679, 45.488036], + [9.226176, 45.488036], + [9.226176, 45.48354], + [9.221679, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.488036], + [9.221679, 45.492533], + [9.226176, 45.492533], + [9.226176, 45.488036], + [9.221679, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.492533], + [9.221679, 45.49703], + [9.226176, 45.49703], + [9.226176, 45.492533], + [9.221679, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.49703], + [9.221679, 45.501526], + [9.226176, 45.501526], + [9.226176, 45.49703], + [9.221679, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.501526], + [9.221679, 45.506023], + [9.226176, 45.506023], + [9.226176, 45.501526], + [9.221679, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.506023], + [9.221679, 45.510519], + [9.226176, 45.510519], + [9.226176, 45.506023], + [9.221679, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.510519], + [9.221679, 45.515016], + [9.226176, 45.515016], + [9.226176, 45.510519], + [9.221679, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.515016], + [9.221679, 45.519513], + [9.226176, 45.519513], + [9.226176, 45.515016], + [9.221679, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.519513], + [9.221679, 45.524009], + [9.226176, 45.524009], + [9.226176, 45.519513], + [9.221679, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.524009], + [9.221679, 45.528506], + [9.226176, 45.528506], + [9.226176, 45.524009], + [9.221679, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.528506], + [9.221679, 45.533002], + [9.226176, 45.533002], + [9.226176, 45.528506], + [9.221679, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.533002], + [9.221679, 45.537499], + [9.226176, 45.537499], + [9.226176, 45.533002], + [9.221679, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.537499], + [9.221679, 45.541996], + [9.226176, 45.541996], + [9.226176, 45.537499], + [9.221679, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.541996], + [9.221679, 45.546492], + [9.226176, 45.546492], + [9.226176, 45.541996], + [9.221679, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.546492], + [9.221679, 45.550989], + [9.226176, 45.550989], + [9.226176, 45.546492], + [9.221679, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.550989], + [9.221679, 45.555485], + [9.226176, 45.555485], + [9.226176, 45.550989], + [9.221679, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.555485], + [9.221679, 45.559982], + [9.226176, 45.559982], + [9.226176, 45.555485], + [9.221679, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.559982], + [9.221679, 45.564479], + [9.226176, 45.564479], + [9.226176, 45.559982], + [9.221679, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.564479], + [9.221679, 45.568975], + [9.226176, 45.568975], + [9.226176, 45.564479], + [9.221679, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.568975], + [9.221679, 45.573472], + [9.226176, 45.573472], + [9.226176, 45.568975], + [9.221679, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.573472], + [9.221679, 45.577968], + [9.226176, 45.577968], + [9.226176, 45.573472], + [9.221679, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.577968], + [9.221679, 45.582465], + [9.226176, 45.582465], + [9.226176, 45.577968], + [9.221679, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.582465], + [9.221679, 45.586962], + [9.226176, 45.586962], + [9.226176, 45.582465], + [9.221679, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.586962], + [9.221679, 45.591458], + [9.226176, 45.591458], + [9.226176, 45.586962], + [9.221679, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.591458], + [9.221679, 45.595955], + [9.226176, 45.595955], + [9.226176, 45.591458], + [9.221679, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.595955], + [9.221679, 45.600451], + [9.226176, 45.600451], + [9.226176, 45.595955], + [9.221679, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.600451], + [9.221679, 45.604948], + [9.226176, 45.604948], + [9.226176, 45.600451], + [9.221679, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.604948], + [9.221679, 45.609445], + [9.226176, 45.609445], + [9.226176, 45.604948], + [9.221679, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.609445], + [9.221679, 45.613941], + [9.226176, 45.613941], + [9.226176, 45.609445], + [9.221679, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.613941], + [9.221679, 45.618438], + [9.226176, 45.618438], + [9.226176, 45.613941], + [9.221679, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.618438], + [9.221679, 45.622934], + [9.226176, 45.622934], + [9.226176, 45.618438], + [9.221679, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.622934], + [9.221679, 45.627431], + [9.226176, 45.627431], + [9.226176, 45.622934], + [9.221679, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.627431], + [9.221679, 45.631928], + [9.226176, 45.631928], + [9.226176, 45.627431], + [9.221679, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.631928], + [9.221679, 45.636424], + [9.226176, 45.636424], + [9.226176, 45.631928], + [9.221679, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.339648], + [9.226176, 45.344145], + [9.230672, 45.344145], + [9.230672, 45.339648], + [9.226176, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.344145], + [9.226176, 45.348642], + [9.230672, 45.348642], + [9.230672, 45.344145], + [9.226176, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.348642], + [9.226176, 45.353138], + [9.230672, 45.353138], + [9.230672, 45.348642], + [9.226176, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.353138], + [9.226176, 45.357635], + [9.230672, 45.357635], + [9.230672, 45.353138], + [9.226176, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.357635], + [9.226176, 45.362131], + [9.230672, 45.362131], + [9.230672, 45.357635], + [9.226176, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.362131], + [9.226176, 45.366628], + [9.230672, 45.366628], + [9.230672, 45.362131], + [9.226176, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.366628], + [9.226176, 45.371125], + [9.230672, 45.371125], + [9.230672, 45.366628], + [9.226176, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.371125], + [9.226176, 45.375621], + [9.230672, 45.375621], + [9.230672, 45.371125], + [9.226176, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.375621], + [9.226176, 45.380118], + [9.230672, 45.380118], + [9.230672, 45.375621], + [9.226176, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.380118], + [9.226176, 45.384614], + [9.230672, 45.384614], + [9.230672, 45.380118], + [9.226176, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.384614], + [9.226176, 45.389111], + [9.230672, 45.389111], + [9.230672, 45.384614], + [9.226176, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.389111], + [9.226176, 45.393608], + [9.230672, 45.393608], + [9.230672, 45.389111], + [9.226176, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.393608], + [9.226176, 45.398104], + [9.230672, 45.398104], + [9.230672, 45.393608], + [9.226176, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.398104], + [9.226176, 45.402601], + [9.230672, 45.402601], + [9.230672, 45.398104], + [9.226176, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.402601], + [9.226176, 45.407097], + [9.230672, 45.407097], + [9.230672, 45.402601], + [9.226176, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.407097], + [9.226176, 45.411594], + [9.230672, 45.411594], + [9.230672, 45.407097], + [9.226176, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.411594], + [9.226176, 45.416091], + [9.230672, 45.416091], + [9.230672, 45.411594], + [9.226176, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.416091], + [9.226176, 45.420587], + [9.230672, 45.420587], + [9.230672, 45.416091], + [9.226176, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.420587], + [9.226176, 45.425084], + [9.230672, 45.425084], + [9.230672, 45.420587], + [9.226176, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.425084], + [9.226176, 45.42958], + [9.230672, 45.42958], + [9.230672, 45.425084], + [9.226176, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.42958], + [9.226176, 45.434077], + [9.230672, 45.434077], + [9.230672, 45.42958], + [9.226176, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.434077], + [9.226176, 45.438574], + [9.230672, 45.438574], + [9.230672, 45.434077], + [9.226176, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.438574], + [9.226176, 45.44307], + [9.230672, 45.44307], + [9.230672, 45.438574], + [9.226176, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.44307], + [9.226176, 45.447567], + [9.230672, 45.447567], + [9.230672, 45.44307], + [9.226176, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.447567], + [9.226176, 45.452063], + [9.230672, 45.452063], + [9.230672, 45.447567], + [9.226176, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.452063], + [9.226176, 45.45656], + [9.230672, 45.45656], + [9.230672, 45.452063], + [9.226176, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.45656], + [9.226176, 45.461057], + [9.230672, 45.461057], + [9.230672, 45.45656], + [9.226176, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.461057], + [9.226176, 45.465553], + [9.230672, 45.465553], + [9.230672, 45.461057], + [9.226176, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.465553], + [9.226176, 45.47005], + [9.230672, 45.47005], + [9.230672, 45.465553], + [9.226176, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.47005], + [9.226176, 45.474547], + [9.230672, 45.474547], + [9.230672, 45.47005], + [9.226176, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.474547], + [9.226176, 45.479043], + [9.230672, 45.479043], + [9.230672, 45.474547], + [9.226176, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.479043], + [9.226176, 45.48354], + [9.230672, 45.48354], + [9.230672, 45.479043], + [9.226176, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.48354], + [9.226176, 45.488036], + [9.230672, 45.488036], + [9.230672, 45.48354], + [9.226176, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.488036], + [9.226176, 45.492533], + [9.230672, 45.492533], + [9.230672, 45.488036], + [9.226176, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.492533], + [9.226176, 45.49703], + [9.230672, 45.49703], + [9.230672, 45.492533], + [9.226176, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.49703], + [9.226176, 45.501526], + [9.230672, 45.501526], + [9.230672, 45.49703], + [9.226176, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.501526], + [9.226176, 45.506023], + [9.230672, 45.506023], + [9.230672, 45.501526], + [9.226176, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.506023], + [9.226176, 45.510519], + [9.230672, 45.510519], + [9.230672, 45.506023], + [9.226176, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.510519], + [9.226176, 45.515016], + [9.230672, 45.515016], + [9.230672, 45.510519], + [9.226176, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.515016], + [9.226176, 45.519513], + [9.230672, 45.519513], + [9.230672, 45.515016], + [9.226176, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.519513], + [9.226176, 45.524009], + [9.230672, 45.524009], + [9.230672, 45.519513], + [9.226176, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.524009], + [9.226176, 45.528506], + [9.230672, 45.528506], + [9.230672, 45.524009], + [9.226176, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.528506], + [9.226176, 45.533002], + [9.230672, 45.533002], + [9.230672, 45.528506], + [9.226176, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.533002], + [9.226176, 45.537499], + [9.230672, 45.537499], + [9.230672, 45.533002], + [9.226176, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.537499], + [9.226176, 45.541996], + [9.230672, 45.541996], + [9.230672, 45.537499], + [9.226176, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.541996], + [9.226176, 45.546492], + [9.230672, 45.546492], + [9.230672, 45.541996], + [9.226176, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.546492], + [9.226176, 45.550989], + [9.230672, 45.550989], + [9.230672, 45.546492], + [9.226176, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.550989], + [9.226176, 45.555485], + [9.230672, 45.555485], + [9.230672, 45.550989], + [9.226176, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.555485], + [9.226176, 45.559982], + [9.230672, 45.559982], + [9.230672, 45.555485], + [9.226176, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.559982], + [9.226176, 45.564479], + [9.230672, 45.564479], + [9.230672, 45.559982], + [9.226176, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.564479], + [9.226176, 45.568975], + [9.230672, 45.568975], + [9.230672, 45.564479], + [9.226176, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.568975], + [9.226176, 45.573472], + [9.230672, 45.573472], + [9.230672, 45.568975], + [9.226176, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.573472], + [9.226176, 45.577968], + [9.230672, 45.577968], + [9.230672, 45.573472], + [9.226176, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.577968], + [9.226176, 45.582465], + [9.230672, 45.582465], + [9.230672, 45.577968], + [9.226176, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.582465], + [9.226176, 45.586962], + [9.230672, 45.586962], + [9.230672, 45.582465], + [9.226176, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.586962], + [9.226176, 45.591458], + [9.230672, 45.591458], + [9.230672, 45.586962], + [9.226176, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.591458], + [9.226176, 45.595955], + [9.230672, 45.595955], + [9.230672, 45.591458], + [9.226176, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.595955], + [9.226176, 45.600451], + [9.230672, 45.600451], + [9.230672, 45.595955], + [9.226176, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.600451], + [9.226176, 45.604948], + [9.230672, 45.604948], + [9.230672, 45.600451], + [9.226176, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.604948], + [9.226176, 45.609445], + [9.230672, 45.609445], + [9.230672, 45.604948], + [9.226176, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.609445], + [9.226176, 45.613941], + [9.230672, 45.613941], + [9.230672, 45.609445], + [9.226176, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.613941], + [9.226176, 45.618438], + [9.230672, 45.618438], + [9.230672, 45.613941], + [9.226176, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.618438], + [9.226176, 45.622934], + [9.230672, 45.622934], + [9.230672, 45.618438], + [9.226176, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.622934], + [9.226176, 45.627431], + [9.230672, 45.627431], + [9.230672, 45.622934], + [9.226176, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.627431], + [9.226176, 45.631928], + [9.230672, 45.631928], + [9.230672, 45.627431], + [9.226176, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.631928], + [9.226176, 45.636424], + [9.230672, 45.636424], + [9.230672, 45.631928], + [9.226176, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.339648], + [9.230672, 45.344145], + [9.235169, 45.344145], + [9.235169, 45.339648], + [9.230672, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.344145], + [9.230672, 45.348642], + [9.235169, 45.348642], + [9.235169, 45.344145], + [9.230672, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.348642], + [9.230672, 45.353138], + [9.235169, 45.353138], + [9.235169, 45.348642], + [9.230672, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.353138], + [9.230672, 45.357635], + [9.235169, 45.357635], + [9.235169, 45.353138], + [9.230672, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.357635], + [9.230672, 45.362131], + [9.235169, 45.362131], + [9.235169, 45.357635], + [9.230672, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.362131], + [9.230672, 45.366628], + [9.235169, 45.366628], + [9.235169, 45.362131], + [9.230672, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.366628], + [9.230672, 45.371125], + [9.235169, 45.371125], + [9.235169, 45.366628], + [9.230672, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.371125], + [9.230672, 45.375621], + [9.235169, 45.375621], + [9.235169, 45.371125], + [9.230672, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.375621], + [9.230672, 45.380118], + [9.235169, 45.380118], + [9.235169, 45.375621], + [9.230672, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.380118], + [9.230672, 45.384614], + [9.235169, 45.384614], + [9.235169, 45.380118], + [9.230672, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.384614], + [9.230672, 45.389111], + [9.235169, 45.389111], + [9.235169, 45.384614], + [9.230672, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.389111], + [9.230672, 45.393608], + [9.235169, 45.393608], + [9.235169, 45.389111], + [9.230672, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.393608], + [9.230672, 45.398104], + [9.235169, 45.398104], + [9.235169, 45.393608], + [9.230672, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.398104], + [9.230672, 45.402601], + [9.235169, 45.402601], + [9.235169, 45.398104], + [9.230672, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.402601], + [9.230672, 45.407097], + [9.235169, 45.407097], + [9.235169, 45.402601], + [9.230672, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.407097], + [9.230672, 45.411594], + [9.235169, 45.411594], + [9.235169, 45.407097], + [9.230672, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.411594], + [9.230672, 45.416091], + [9.235169, 45.416091], + [9.235169, 45.411594], + [9.230672, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.416091], + [9.230672, 45.420587], + [9.235169, 45.420587], + [9.235169, 45.416091], + [9.230672, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.420587], + [9.230672, 45.425084], + [9.235169, 45.425084], + [9.235169, 45.420587], + [9.230672, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.425084], + [9.230672, 45.42958], + [9.235169, 45.42958], + [9.235169, 45.425084], + [9.230672, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.42958], + [9.230672, 45.434077], + [9.235169, 45.434077], + [9.235169, 45.42958], + [9.230672, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.434077], + [9.230672, 45.438574], + [9.235169, 45.438574], + [9.235169, 45.434077], + [9.230672, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.438574], + [9.230672, 45.44307], + [9.235169, 45.44307], + [9.235169, 45.438574], + [9.230672, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.44307], + [9.230672, 45.447567], + [9.235169, 45.447567], + [9.235169, 45.44307], + [9.230672, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.447567], + [9.230672, 45.452063], + [9.235169, 45.452063], + [9.235169, 45.447567], + [9.230672, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.452063], + [9.230672, 45.45656], + [9.235169, 45.45656], + [9.235169, 45.452063], + [9.230672, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.45656], + [9.230672, 45.461057], + [9.235169, 45.461057], + [9.235169, 45.45656], + [9.230672, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.461057], + [9.230672, 45.465553], + [9.235169, 45.465553], + [9.235169, 45.461057], + [9.230672, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.465553], + [9.230672, 45.47005], + [9.235169, 45.47005], + [9.235169, 45.465553], + [9.230672, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.47005], + [9.230672, 45.474547], + [9.235169, 45.474547], + [9.235169, 45.47005], + [9.230672, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.474547], + [9.230672, 45.479043], + [9.235169, 45.479043], + [9.235169, 45.474547], + [9.230672, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.479043], + [9.230672, 45.48354], + [9.235169, 45.48354], + [9.235169, 45.479043], + [9.230672, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.48354], + [9.230672, 45.488036], + [9.235169, 45.488036], + [9.235169, 45.48354], + [9.230672, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.488036], + [9.230672, 45.492533], + [9.235169, 45.492533], + [9.235169, 45.488036], + [9.230672, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.492533], + [9.230672, 45.49703], + [9.235169, 45.49703], + [9.235169, 45.492533], + [9.230672, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.49703], + [9.230672, 45.501526], + [9.235169, 45.501526], + [9.235169, 45.49703], + [9.230672, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.501526], + [9.230672, 45.506023], + [9.235169, 45.506023], + [9.235169, 45.501526], + [9.230672, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.506023], + [9.230672, 45.510519], + [9.235169, 45.510519], + [9.235169, 45.506023], + [9.230672, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.510519], + [9.230672, 45.515016], + [9.235169, 45.515016], + [9.235169, 45.510519], + [9.230672, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.515016], + [9.230672, 45.519513], + [9.235169, 45.519513], + [9.235169, 45.515016], + [9.230672, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.519513], + [9.230672, 45.524009], + [9.235169, 45.524009], + [9.235169, 45.519513], + [9.230672, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.524009], + [9.230672, 45.528506], + [9.235169, 45.528506], + [9.235169, 45.524009], + [9.230672, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.528506], + [9.230672, 45.533002], + [9.235169, 45.533002], + [9.235169, 45.528506], + [9.230672, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.533002], + [9.230672, 45.537499], + [9.235169, 45.537499], + [9.235169, 45.533002], + [9.230672, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.537499], + [9.230672, 45.541996], + [9.235169, 45.541996], + [9.235169, 45.537499], + [9.230672, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.541996], + [9.230672, 45.546492], + [9.235169, 45.546492], + [9.235169, 45.541996], + [9.230672, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.546492], + [9.230672, 45.550989], + [9.235169, 45.550989], + [9.235169, 45.546492], + [9.230672, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.550989], + [9.230672, 45.555485], + [9.235169, 45.555485], + [9.235169, 45.550989], + [9.230672, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.555485], + [9.230672, 45.559982], + [9.235169, 45.559982], + [9.235169, 45.555485], + [9.230672, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.559982], + [9.230672, 45.564479], + [9.235169, 45.564479], + [9.235169, 45.559982], + [9.230672, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.564479], + [9.230672, 45.568975], + [9.235169, 45.568975], + [9.235169, 45.564479], + [9.230672, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.568975], + [9.230672, 45.573472], + [9.235169, 45.573472], + [9.235169, 45.568975], + [9.230672, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.573472], + [9.230672, 45.577968], + [9.235169, 45.577968], + [9.235169, 45.573472], + [9.230672, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.577968], + [9.230672, 45.582465], + [9.235169, 45.582465], + [9.235169, 45.577968], + [9.230672, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.582465], + [9.230672, 45.586962], + [9.235169, 45.586962], + [9.235169, 45.582465], + [9.230672, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.586962], + [9.230672, 45.591458], + [9.235169, 45.591458], + [9.235169, 45.586962], + [9.230672, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.591458], + [9.230672, 45.595955], + [9.235169, 45.595955], + [9.235169, 45.591458], + [9.230672, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.595955], + [9.230672, 45.600451], + [9.235169, 45.600451], + [9.235169, 45.595955], + [9.230672, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.600451], + [9.230672, 45.604948], + [9.235169, 45.604948], + [9.235169, 45.600451], + [9.230672, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.604948], + [9.230672, 45.609445], + [9.235169, 45.609445], + [9.235169, 45.604948], + [9.230672, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.609445], + [9.230672, 45.613941], + [9.235169, 45.613941], + [9.235169, 45.609445], + [9.230672, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.613941], + [9.230672, 45.618438], + [9.235169, 45.618438], + [9.235169, 45.613941], + [9.230672, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.618438], + [9.230672, 45.622934], + [9.235169, 45.622934], + [9.235169, 45.618438], + [9.230672, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.622934], + [9.230672, 45.627431], + [9.235169, 45.627431], + [9.235169, 45.622934], + [9.230672, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.627431], + [9.230672, 45.631928], + [9.235169, 45.631928], + [9.235169, 45.627431], + [9.230672, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.631928], + [9.230672, 45.636424], + [9.235169, 45.636424], + [9.235169, 45.631928], + [9.230672, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.339648], + [9.235169, 45.344145], + [9.239665, 45.344145], + [9.239665, 45.339648], + [9.235169, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.344145], + [9.235169, 45.348642], + [9.239665, 45.348642], + [9.239665, 45.344145], + [9.235169, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.348642], + [9.235169, 45.353138], + [9.239665, 45.353138], + [9.239665, 45.348642], + [9.235169, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.353138], + [9.235169, 45.357635], + [9.239665, 45.357635], + [9.239665, 45.353138], + [9.235169, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.357635], + [9.235169, 45.362131], + [9.239665, 45.362131], + [9.239665, 45.357635], + [9.235169, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.362131], + [9.235169, 45.366628], + [9.239665, 45.366628], + [9.239665, 45.362131], + [9.235169, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.366628], + [9.235169, 45.371125], + [9.239665, 45.371125], + [9.239665, 45.366628], + [9.235169, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.371125], + [9.235169, 45.375621], + [9.239665, 45.375621], + [9.239665, 45.371125], + [9.235169, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.375621], + [9.235169, 45.380118], + [9.239665, 45.380118], + [9.239665, 45.375621], + [9.235169, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.380118], + [9.235169, 45.384614], + [9.239665, 45.384614], + [9.239665, 45.380118], + [9.235169, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.384614], + [9.235169, 45.389111], + [9.239665, 45.389111], + [9.239665, 45.384614], + [9.235169, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.389111], + [9.235169, 45.393608], + [9.239665, 45.393608], + [9.239665, 45.389111], + [9.235169, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.393608], + [9.235169, 45.398104], + [9.239665, 45.398104], + [9.239665, 45.393608], + [9.235169, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.398104], + [9.235169, 45.402601], + [9.239665, 45.402601], + [9.239665, 45.398104], + [9.235169, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.402601], + [9.235169, 45.407097], + [9.239665, 45.407097], + [9.239665, 45.402601], + [9.235169, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.407097], + [9.235169, 45.411594], + [9.239665, 45.411594], + [9.239665, 45.407097], + [9.235169, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.411594], + [9.235169, 45.416091], + [9.239665, 45.416091], + [9.239665, 45.411594], + [9.235169, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.416091], + [9.235169, 45.420587], + [9.239665, 45.420587], + [9.239665, 45.416091], + [9.235169, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.420587], + [9.235169, 45.425084], + [9.239665, 45.425084], + [9.239665, 45.420587], + [9.235169, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.425084], + [9.235169, 45.42958], + [9.239665, 45.42958], + [9.239665, 45.425084], + [9.235169, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.42958], + [9.235169, 45.434077], + [9.239665, 45.434077], + [9.239665, 45.42958], + [9.235169, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.434077], + [9.235169, 45.438574], + [9.239665, 45.438574], + [9.239665, 45.434077], + [9.235169, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.438574], + [9.235169, 45.44307], + [9.239665, 45.44307], + [9.239665, 45.438574], + [9.235169, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.44307], + [9.235169, 45.447567], + [9.239665, 45.447567], + [9.239665, 45.44307], + [9.235169, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.447567], + [9.235169, 45.452063], + [9.239665, 45.452063], + [9.239665, 45.447567], + [9.235169, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.452063], + [9.235169, 45.45656], + [9.239665, 45.45656], + [9.239665, 45.452063], + [9.235169, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.45656], + [9.235169, 45.461057], + [9.239665, 45.461057], + [9.239665, 45.45656], + [9.235169, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.461057], + [9.235169, 45.465553], + [9.239665, 45.465553], + [9.239665, 45.461057], + [9.235169, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.465553], + [9.235169, 45.47005], + [9.239665, 45.47005], + [9.239665, 45.465553], + [9.235169, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.47005], + [9.235169, 45.474547], + [9.239665, 45.474547], + [9.239665, 45.47005], + [9.235169, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.474547], + [9.235169, 45.479043], + [9.239665, 45.479043], + [9.239665, 45.474547], + [9.235169, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.479043], + [9.235169, 45.48354], + [9.239665, 45.48354], + [9.239665, 45.479043], + [9.235169, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.48354], + [9.235169, 45.488036], + [9.239665, 45.488036], + [9.239665, 45.48354], + [9.235169, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.488036], + [9.235169, 45.492533], + [9.239665, 45.492533], + [9.239665, 45.488036], + [9.235169, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.492533], + [9.235169, 45.49703], + [9.239665, 45.49703], + [9.239665, 45.492533], + [9.235169, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.49703], + [9.235169, 45.501526], + [9.239665, 45.501526], + [9.239665, 45.49703], + [9.235169, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.501526], + [9.235169, 45.506023], + [9.239665, 45.506023], + [9.239665, 45.501526], + [9.235169, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.506023], + [9.235169, 45.510519], + [9.239665, 45.510519], + [9.239665, 45.506023], + [9.235169, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.510519], + [9.235169, 45.515016], + [9.239665, 45.515016], + [9.239665, 45.510519], + [9.235169, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.515016], + [9.235169, 45.519513], + [9.239665, 45.519513], + [9.239665, 45.515016], + [9.235169, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.519513], + [9.235169, 45.524009], + [9.239665, 45.524009], + [9.239665, 45.519513], + [9.235169, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.524009], + [9.235169, 45.528506], + [9.239665, 45.528506], + [9.239665, 45.524009], + [9.235169, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.528506], + [9.235169, 45.533002], + [9.239665, 45.533002], + [9.239665, 45.528506], + [9.235169, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.533002], + [9.235169, 45.537499], + [9.239665, 45.537499], + [9.239665, 45.533002], + [9.235169, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.537499], + [9.235169, 45.541996], + [9.239665, 45.541996], + [9.239665, 45.537499], + [9.235169, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.541996], + [9.235169, 45.546492], + [9.239665, 45.546492], + [9.239665, 45.541996], + [9.235169, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.546492], + [9.235169, 45.550989], + [9.239665, 45.550989], + [9.239665, 45.546492], + [9.235169, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.550989], + [9.235169, 45.555485], + [9.239665, 45.555485], + [9.239665, 45.550989], + [9.235169, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.555485], + [9.235169, 45.559982], + [9.239665, 45.559982], + [9.239665, 45.555485], + [9.235169, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.559982], + [9.235169, 45.564479], + [9.239665, 45.564479], + [9.239665, 45.559982], + [9.235169, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.564479], + [9.235169, 45.568975], + [9.239665, 45.568975], + [9.239665, 45.564479], + [9.235169, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.568975], + [9.235169, 45.573472], + [9.239665, 45.573472], + [9.239665, 45.568975], + [9.235169, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.573472], + [9.235169, 45.577968], + [9.239665, 45.577968], + [9.239665, 45.573472], + [9.235169, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.577968], + [9.235169, 45.582465], + [9.239665, 45.582465], + [9.239665, 45.577968], + [9.235169, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.582465], + [9.235169, 45.586962], + [9.239665, 45.586962], + [9.239665, 45.582465], + [9.235169, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.586962], + [9.235169, 45.591458], + [9.239665, 45.591458], + [9.239665, 45.586962], + [9.235169, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.591458], + [9.235169, 45.595955], + [9.239665, 45.595955], + [9.239665, 45.591458], + [9.235169, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.595955], + [9.235169, 45.600451], + [9.239665, 45.600451], + [9.239665, 45.595955], + [9.235169, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.600451], + [9.235169, 45.604948], + [9.239665, 45.604948], + [9.239665, 45.600451], + [9.235169, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.604948], + [9.235169, 45.609445], + [9.239665, 45.609445], + [9.239665, 45.604948], + [9.235169, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.609445], + [9.235169, 45.613941], + [9.239665, 45.613941], + [9.239665, 45.609445], + [9.235169, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.613941], + [9.235169, 45.618438], + [9.239665, 45.618438], + [9.239665, 45.613941], + [9.235169, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.618438], + [9.235169, 45.622934], + [9.239665, 45.622934], + [9.239665, 45.618438], + [9.235169, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.622934], + [9.235169, 45.627431], + [9.239665, 45.627431], + [9.239665, 45.622934], + [9.235169, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.627431], + [9.235169, 45.631928], + [9.239665, 45.631928], + [9.239665, 45.627431], + [9.235169, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.631928], + [9.235169, 45.636424], + [9.239665, 45.636424], + [9.239665, 45.631928], + [9.235169, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.339648], + [9.239665, 45.344145], + [9.244162, 45.344145], + [9.244162, 45.339648], + [9.239665, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.344145], + [9.239665, 45.348642], + [9.244162, 45.348642], + [9.244162, 45.344145], + [9.239665, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.348642], + [9.239665, 45.353138], + [9.244162, 45.353138], + [9.244162, 45.348642], + [9.239665, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.353138], + [9.239665, 45.357635], + [9.244162, 45.357635], + [9.244162, 45.353138], + [9.239665, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.357635], + [9.239665, 45.362131], + [9.244162, 45.362131], + [9.244162, 45.357635], + [9.239665, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.362131], + [9.239665, 45.366628], + [9.244162, 45.366628], + [9.244162, 45.362131], + [9.239665, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.366628], + [9.239665, 45.371125], + [9.244162, 45.371125], + [9.244162, 45.366628], + [9.239665, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.371125], + [9.239665, 45.375621], + [9.244162, 45.375621], + [9.244162, 45.371125], + [9.239665, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.375621], + [9.239665, 45.380118], + [9.244162, 45.380118], + [9.244162, 45.375621], + [9.239665, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.380118], + [9.239665, 45.384614], + [9.244162, 45.384614], + [9.244162, 45.380118], + [9.239665, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.384614], + [9.239665, 45.389111], + [9.244162, 45.389111], + [9.244162, 45.384614], + [9.239665, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.389111], + [9.239665, 45.393608], + [9.244162, 45.393608], + [9.244162, 45.389111], + [9.239665, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.393608], + [9.239665, 45.398104], + [9.244162, 45.398104], + [9.244162, 45.393608], + [9.239665, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.398104], + [9.239665, 45.402601], + [9.244162, 45.402601], + [9.244162, 45.398104], + [9.239665, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.402601], + [9.239665, 45.407097], + [9.244162, 45.407097], + [9.244162, 45.402601], + [9.239665, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.407097], + [9.239665, 45.411594], + [9.244162, 45.411594], + [9.244162, 45.407097], + [9.239665, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.411594], + [9.239665, 45.416091], + [9.244162, 45.416091], + [9.244162, 45.411594], + [9.239665, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.416091], + [9.239665, 45.420587], + [9.244162, 45.420587], + [9.244162, 45.416091], + [9.239665, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.420587], + [9.239665, 45.425084], + [9.244162, 45.425084], + [9.244162, 45.420587], + [9.239665, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.425084], + [9.239665, 45.42958], + [9.244162, 45.42958], + [9.244162, 45.425084], + [9.239665, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.42958], + [9.239665, 45.434077], + [9.244162, 45.434077], + [9.244162, 45.42958], + [9.239665, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.434077], + [9.239665, 45.438574], + [9.244162, 45.438574], + [9.244162, 45.434077], + [9.239665, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.438574], + [9.239665, 45.44307], + [9.244162, 45.44307], + [9.244162, 45.438574], + [9.239665, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.44307], + [9.239665, 45.447567], + [9.244162, 45.447567], + [9.244162, 45.44307], + [9.239665, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.447567], + [9.239665, 45.452063], + [9.244162, 45.452063], + [9.244162, 45.447567], + [9.239665, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.452063], + [9.239665, 45.45656], + [9.244162, 45.45656], + [9.244162, 45.452063], + [9.239665, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.45656], + [9.239665, 45.461057], + [9.244162, 45.461057], + [9.244162, 45.45656], + [9.239665, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.461057], + [9.239665, 45.465553], + [9.244162, 45.465553], + [9.244162, 45.461057], + [9.239665, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.465553], + [9.239665, 45.47005], + [9.244162, 45.47005], + [9.244162, 45.465553], + [9.239665, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.47005], + [9.239665, 45.474547], + [9.244162, 45.474547], + [9.244162, 45.47005], + [9.239665, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.474547], + [9.239665, 45.479043], + [9.244162, 45.479043], + [9.244162, 45.474547], + [9.239665, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.479043], + [9.239665, 45.48354], + [9.244162, 45.48354], + [9.244162, 45.479043], + [9.239665, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.48354], + [9.239665, 45.488036], + [9.244162, 45.488036], + [9.244162, 45.48354], + [9.239665, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.488036], + [9.239665, 45.492533], + [9.244162, 45.492533], + [9.244162, 45.488036], + [9.239665, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.492533], + [9.239665, 45.49703], + [9.244162, 45.49703], + [9.244162, 45.492533], + [9.239665, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.49703], + [9.239665, 45.501526], + [9.244162, 45.501526], + [9.244162, 45.49703], + [9.239665, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.501526], + [9.239665, 45.506023], + [9.244162, 45.506023], + [9.244162, 45.501526], + [9.239665, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.506023], + [9.239665, 45.510519], + [9.244162, 45.510519], + [9.244162, 45.506023], + [9.239665, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.510519], + [9.239665, 45.515016], + [9.244162, 45.515016], + [9.244162, 45.510519], + [9.239665, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.515016], + [9.239665, 45.519513], + [9.244162, 45.519513], + [9.244162, 45.515016], + [9.239665, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.519513], + [9.239665, 45.524009], + [9.244162, 45.524009], + [9.244162, 45.519513], + [9.239665, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.524009], + [9.239665, 45.528506], + [9.244162, 45.528506], + [9.244162, 45.524009], + [9.239665, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.528506], + [9.239665, 45.533002], + [9.244162, 45.533002], + [9.244162, 45.528506], + [9.239665, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.533002], + [9.239665, 45.537499], + [9.244162, 45.537499], + [9.244162, 45.533002], + [9.239665, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.537499], + [9.239665, 45.541996], + [9.244162, 45.541996], + [9.244162, 45.537499], + [9.239665, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.541996], + [9.239665, 45.546492], + [9.244162, 45.546492], + [9.244162, 45.541996], + [9.239665, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.546492], + [9.239665, 45.550989], + [9.244162, 45.550989], + [9.244162, 45.546492], + [9.239665, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.550989], + [9.239665, 45.555485], + [9.244162, 45.555485], + [9.244162, 45.550989], + [9.239665, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.555485], + [9.239665, 45.559982], + [9.244162, 45.559982], + [9.244162, 45.555485], + [9.239665, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.559982], + [9.239665, 45.564479], + [9.244162, 45.564479], + [9.244162, 45.559982], + [9.239665, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.564479], + [9.239665, 45.568975], + [9.244162, 45.568975], + [9.244162, 45.564479], + [9.239665, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.568975], + [9.239665, 45.573472], + [9.244162, 45.573472], + [9.244162, 45.568975], + [9.239665, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.573472], + [9.239665, 45.577968], + [9.244162, 45.577968], + [9.244162, 45.573472], + [9.239665, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.577968], + [9.239665, 45.582465], + [9.244162, 45.582465], + [9.244162, 45.577968], + [9.239665, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.582465], + [9.239665, 45.586962], + [9.244162, 45.586962], + [9.244162, 45.582465], + [9.239665, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.586962], + [9.239665, 45.591458], + [9.244162, 45.591458], + [9.244162, 45.586962], + [9.239665, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.591458], + [9.239665, 45.595955], + [9.244162, 45.595955], + [9.244162, 45.591458], + [9.239665, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.595955], + [9.239665, 45.600451], + [9.244162, 45.600451], + [9.244162, 45.595955], + [9.239665, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.600451], + [9.239665, 45.604948], + [9.244162, 45.604948], + [9.244162, 45.600451], + [9.239665, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.604948], + [9.239665, 45.609445], + [9.244162, 45.609445], + [9.244162, 45.604948], + [9.239665, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.609445], + [9.239665, 45.613941], + [9.244162, 45.613941], + [9.244162, 45.609445], + [9.239665, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.613941], + [9.239665, 45.618438], + [9.244162, 45.618438], + [9.244162, 45.613941], + [9.239665, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.618438], + [9.239665, 45.622934], + [9.244162, 45.622934], + [9.244162, 45.618438], + [9.239665, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.622934], + [9.239665, 45.627431], + [9.244162, 45.627431], + [9.244162, 45.622934], + [9.239665, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.627431], + [9.239665, 45.631928], + [9.244162, 45.631928], + [9.244162, 45.627431], + [9.239665, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.631928], + [9.239665, 45.636424], + [9.244162, 45.636424], + [9.244162, 45.631928], + [9.239665, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.339648], + [9.244162, 45.344145], + [9.248659, 45.344145], + [9.248659, 45.339648], + [9.244162, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.344145], + [9.244162, 45.348642], + [9.248659, 45.348642], + [9.248659, 45.344145], + [9.244162, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.348642], + [9.244162, 45.353138], + [9.248659, 45.353138], + [9.248659, 45.348642], + [9.244162, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.353138], + [9.244162, 45.357635], + [9.248659, 45.357635], + [9.248659, 45.353138], + [9.244162, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.357635], + [9.244162, 45.362131], + [9.248659, 45.362131], + [9.248659, 45.357635], + [9.244162, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.362131], + [9.244162, 45.366628], + [9.248659, 45.366628], + [9.248659, 45.362131], + [9.244162, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.366628], + [9.244162, 45.371125], + [9.248659, 45.371125], + [9.248659, 45.366628], + [9.244162, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.371125], + [9.244162, 45.375621], + [9.248659, 45.375621], + [9.248659, 45.371125], + [9.244162, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.375621], + [9.244162, 45.380118], + [9.248659, 45.380118], + [9.248659, 45.375621], + [9.244162, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.380118], + [9.244162, 45.384614], + [9.248659, 45.384614], + [9.248659, 45.380118], + [9.244162, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.384614], + [9.244162, 45.389111], + [9.248659, 45.389111], + [9.248659, 45.384614], + [9.244162, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.389111], + [9.244162, 45.393608], + [9.248659, 45.393608], + [9.248659, 45.389111], + [9.244162, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.393608], + [9.244162, 45.398104], + [9.248659, 45.398104], + [9.248659, 45.393608], + [9.244162, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.398104], + [9.244162, 45.402601], + [9.248659, 45.402601], + [9.248659, 45.398104], + [9.244162, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.402601], + [9.244162, 45.407097], + [9.248659, 45.407097], + [9.248659, 45.402601], + [9.244162, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.407097], + [9.244162, 45.411594], + [9.248659, 45.411594], + [9.248659, 45.407097], + [9.244162, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.411594], + [9.244162, 45.416091], + [9.248659, 45.416091], + [9.248659, 45.411594], + [9.244162, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.416091], + [9.244162, 45.420587], + [9.248659, 45.420587], + [9.248659, 45.416091], + [9.244162, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.420587], + [9.244162, 45.425084], + [9.248659, 45.425084], + [9.248659, 45.420587], + [9.244162, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.425084], + [9.244162, 45.42958], + [9.248659, 45.42958], + [9.248659, 45.425084], + [9.244162, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.42958], + [9.244162, 45.434077], + [9.248659, 45.434077], + [9.248659, 45.42958], + [9.244162, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.434077], + [9.244162, 45.438574], + [9.248659, 45.438574], + [9.248659, 45.434077], + [9.244162, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.438574], + [9.244162, 45.44307], + [9.248659, 45.44307], + [9.248659, 45.438574], + [9.244162, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.44307], + [9.244162, 45.447567], + [9.248659, 45.447567], + [9.248659, 45.44307], + [9.244162, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.447567], + [9.244162, 45.452063], + [9.248659, 45.452063], + [9.248659, 45.447567], + [9.244162, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.452063], + [9.244162, 45.45656], + [9.248659, 45.45656], + [9.248659, 45.452063], + [9.244162, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.45656], + [9.244162, 45.461057], + [9.248659, 45.461057], + [9.248659, 45.45656], + [9.244162, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.461057], + [9.244162, 45.465553], + [9.248659, 45.465553], + [9.248659, 45.461057], + [9.244162, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.465553], + [9.244162, 45.47005], + [9.248659, 45.47005], + [9.248659, 45.465553], + [9.244162, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.47005], + [9.244162, 45.474547], + [9.248659, 45.474547], + [9.248659, 45.47005], + [9.244162, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.474547], + [9.244162, 45.479043], + [9.248659, 45.479043], + [9.248659, 45.474547], + [9.244162, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.479043], + [9.244162, 45.48354], + [9.248659, 45.48354], + [9.248659, 45.479043], + [9.244162, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.48354], + [9.244162, 45.488036], + [9.248659, 45.488036], + [9.248659, 45.48354], + [9.244162, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.488036], + [9.244162, 45.492533], + [9.248659, 45.492533], + [9.248659, 45.488036], + [9.244162, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.492533], + [9.244162, 45.49703], + [9.248659, 45.49703], + [9.248659, 45.492533], + [9.244162, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.49703], + [9.244162, 45.501526], + [9.248659, 45.501526], + [9.248659, 45.49703], + [9.244162, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.501526], + [9.244162, 45.506023], + [9.248659, 45.506023], + [9.248659, 45.501526], + [9.244162, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.506023], + [9.244162, 45.510519], + [9.248659, 45.510519], + [9.248659, 45.506023], + [9.244162, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.510519], + [9.244162, 45.515016], + [9.248659, 45.515016], + [9.248659, 45.510519], + [9.244162, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.515016], + [9.244162, 45.519513], + [9.248659, 45.519513], + [9.248659, 45.515016], + [9.244162, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.519513], + [9.244162, 45.524009], + [9.248659, 45.524009], + [9.248659, 45.519513], + [9.244162, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.524009], + [9.244162, 45.528506], + [9.248659, 45.528506], + [9.248659, 45.524009], + [9.244162, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.528506], + [9.244162, 45.533002], + [9.248659, 45.533002], + [9.248659, 45.528506], + [9.244162, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.533002], + [9.244162, 45.537499], + [9.248659, 45.537499], + [9.248659, 45.533002], + [9.244162, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.537499], + [9.244162, 45.541996], + [9.248659, 45.541996], + [9.248659, 45.537499], + [9.244162, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.541996], + [9.244162, 45.546492], + [9.248659, 45.546492], + [9.248659, 45.541996], + [9.244162, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.546492], + [9.244162, 45.550989], + [9.248659, 45.550989], + [9.248659, 45.546492], + [9.244162, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.550989], + [9.244162, 45.555485], + [9.248659, 45.555485], + [9.248659, 45.550989], + [9.244162, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.555485], + [9.244162, 45.559982], + [9.248659, 45.559982], + [9.248659, 45.555485], + [9.244162, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.559982], + [9.244162, 45.564479], + [9.248659, 45.564479], + [9.248659, 45.559982], + [9.244162, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.564479], + [9.244162, 45.568975], + [9.248659, 45.568975], + [9.248659, 45.564479], + [9.244162, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.568975], + [9.244162, 45.573472], + [9.248659, 45.573472], + [9.248659, 45.568975], + [9.244162, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.573472], + [9.244162, 45.577968], + [9.248659, 45.577968], + [9.248659, 45.573472], + [9.244162, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.577968], + [9.244162, 45.582465], + [9.248659, 45.582465], + [9.248659, 45.577968], + [9.244162, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.582465], + [9.244162, 45.586962], + [9.248659, 45.586962], + [9.248659, 45.582465], + [9.244162, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.586962], + [9.244162, 45.591458], + [9.248659, 45.591458], + [9.248659, 45.586962], + [9.244162, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.591458], + [9.244162, 45.595955], + [9.248659, 45.595955], + [9.248659, 45.591458], + [9.244162, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.595955], + [9.244162, 45.600451], + [9.248659, 45.600451], + [9.248659, 45.595955], + [9.244162, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.600451], + [9.244162, 45.604948], + [9.248659, 45.604948], + [9.248659, 45.600451], + [9.244162, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.604948], + [9.244162, 45.609445], + [9.248659, 45.609445], + [9.248659, 45.604948], + [9.244162, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.609445], + [9.244162, 45.613941], + [9.248659, 45.613941], + [9.248659, 45.609445], + [9.244162, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.613941], + [9.244162, 45.618438], + [9.248659, 45.618438], + [9.248659, 45.613941], + [9.244162, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.618438], + [9.244162, 45.622934], + [9.248659, 45.622934], + [9.248659, 45.618438], + [9.244162, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.622934], + [9.244162, 45.627431], + [9.248659, 45.627431], + [9.248659, 45.622934], + [9.244162, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.627431], + [9.244162, 45.631928], + [9.248659, 45.631928], + [9.248659, 45.627431], + [9.244162, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.631928], + [9.244162, 45.636424], + [9.248659, 45.636424], + [9.248659, 45.631928], + [9.244162, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.339648], + [9.248659, 45.344145], + [9.253155, 45.344145], + [9.253155, 45.339648], + [9.248659, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.344145], + [9.248659, 45.348642], + [9.253155, 45.348642], + [9.253155, 45.344145], + [9.248659, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.348642], + [9.248659, 45.353138], + [9.253155, 45.353138], + [9.253155, 45.348642], + [9.248659, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.353138], + [9.248659, 45.357635], + [9.253155, 45.357635], + [9.253155, 45.353138], + [9.248659, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.357635], + [9.248659, 45.362131], + [9.253155, 45.362131], + [9.253155, 45.357635], + [9.248659, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.362131], + [9.248659, 45.366628], + [9.253155, 45.366628], + [9.253155, 45.362131], + [9.248659, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.366628], + [9.248659, 45.371125], + [9.253155, 45.371125], + [9.253155, 45.366628], + [9.248659, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.371125], + [9.248659, 45.375621], + [9.253155, 45.375621], + [9.253155, 45.371125], + [9.248659, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.375621], + [9.248659, 45.380118], + [9.253155, 45.380118], + [9.253155, 45.375621], + [9.248659, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.380118], + [9.248659, 45.384614], + [9.253155, 45.384614], + [9.253155, 45.380118], + [9.248659, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.384614], + [9.248659, 45.389111], + [9.253155, 45.389111], + [9.253155, 45.384614], + [9.248659, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.389111], + [9.248659, 45.393608], + [9.253155, 45.393608], + [9.253155, 45.389111], + [9.248659, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.393608], + [9.248659, 45.398104], + [9.253155, 45.398104], + [9.253155, 45.393608], + [9.248659, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.398104], + [9.248659, 45.402601], + [9.253155, 45.402601], + [9.253155, 45.398104], + [9.248659, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.402601], + [9.248659, 45.407097], + [9.253155, 45.407097], + [9.253155, 45.402601], + [9.248659, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.407097], + [9.248659, 45.411594], + [9.253155, 45.411594], + [9.253155, 45.407097], + [9.248659, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.411594], + [9.248659, 45.416091], + [9.253155, 45.416091], + [9.253155, 45.411594], + [9.248659, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.416091], + [9.248659, 45.420587], + [9.253155, 45.420587], + [9.253155, 45.416091], + [9.248659, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.420587], + [9.248659, 45.425084], + [9.253155, 45.425084], + [9.253155, 45.420587], + [9.248659, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.425084], + [9.248659, 45.42958], + [9.253155, 45.42958], + [9.253155, 45.425084], + [9.248659, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.42958], + [9.248659, 45.434077], + [9.253155, 45.434077], + [9.253155, 45.42958], + [9.248659, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.434077], + [9.248659, 45.438574], + [9.253155, 45.438574], + [9.253155, 45.434077], + [9.248659, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.438574], + [9.248659, 45.44307], + [9.253155, 45.44307], + [9.253155, 45.438574], + [9.248659, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.44307], + [9.248659, 45.447567], + [9.253155, 45.447567], + [9.253155, 45.44307], + [9.248659, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.447567], + [9.248659, 45.452063], + [9.253155, 45.452063], + [9.253155, 45.447567], + [9.248659, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.452063], + [9.248659, 45.45656], + [9.253155, 45.45656], + [9.253155, 45.452063], + [9.248659, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.45656], + [9.248659, 45.461057], + [9.253155, 45.461057], + [9.253155, 45.45656], + [9.248659, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.461057], + [9.248659, 45.465553], + [9.253155, 45.465553], + [9.253155, 45.461057], + [9.248659, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.465553], + [9.248659, 45.47005], + [9.253155, 45.47005], + [9.253155, 45.465553], + [9.248659, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.47005], + [9.248659, 45.474547], + [9.253155, 45.474547], + [9.253155, 45.47005], + [9.248659, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.474547], + [9.248659, 45.479043], + [9.253155, 45.479043], + [9.253155, 45.474547], + [9.248659, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.479043], + [9.248659, 45.48354], + [9.253155, 45.48354], + [9.253155, 45.479043], + [9.248659, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.48354], + [9.248659, 45.488036], + [9.253155, 45.488036], + [9.253155, 45.48354], + [9.248659, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.488036], + [9.248659, 45.492533], + [9.253155, 45.492533], + [9.253155, 45.488036], + [9.248659, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.492533], + [9.248659, 45.49703], + [9.253155, 45.49703], + [9.253155, 45.492533], + [9.248659, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.49703], + [9.248659, 45.501526], + [9.253155, 45.501526], + [9.253155, 45.49703], + [9.248659, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.501526], + [9.248659, 45.506023], + [9.253155, 45.506023], + [9.253155, 45.501526], + [9.248659, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.506023], + [9.248659, 45.510519], + [9.253155, 45.510519], + [9.253155, 45.506023], + [9.248659, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.510519], + [9.248659, 45.515016], + [9.253155, 45.515016], + [9.253155, 45.510519], + [9.248659, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.515016], + [9.248659, 45.519513], + [9.253155, 45.519513], + [9.253155, 45.515016], + [9.248659, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.519513], + [9.248659, 45.524009], + [9.253155, 45.524009], + [9.253155, 45.519513], + [9.248659, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.524009], + [9.248659, 45.528506], + [9.253155, 45.528506], + [9.253155, 45.524009], + [9.248659, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.528506], + [9.248659, 45.533002], + [9.253155, 45.533002], + [9.253155, 45.528506], + [9.248659, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.533002], + [9.248659, 45.537499], + [9.253155, 45.537499], + [9.253155, 45.533002], + [9.248659, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.537499], + [9.248659, 45.541996], + [9.253155, 45.541996], + [9.253155, 45.537499], + [9.248659, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.541996], + [9.248659, 45.546492], + [9.253155, 45.546492], + [9.253155, 45.541996], + [9.248659, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.546492], + [9.248659, 45.550989], + [9.253155, 45.550989], + [9.253155, 45.546492], + [9.248659, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.550989], + [9.248659, 45.555485], + [9.253155, 45.555485], + [9.253155, 45.550989], + [9.248659, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.555485], + [9.248659, 45.559982], + [9.253155, 45.559982], + [9.253155, 45.555485], + [9.248659, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.559982], + [9.248659, 45.564479], + [9.253155, 45.564479], + [9.253155, 45.559982], + [9.248659, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.564479], + [9.248659, 45.568975], + [9.253155, 45.568975], + [9.253155, 45.564479], + [9.248659, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.568975], + [9.248659, 45.573472], + [9.253155, 45.573472], + [9.253155, 45.568975], + [9.248659, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.573472], + [9.248659, 45.577968], + [9.253155, 45.577968], + [9.253155, 45.573472], + [9.248659, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.577968], + [9.248659, 45.582465], + [9.253155, 45.582465], + [9.253155, 45.577968], + [9.248659, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.582465], + [9.248659, 45.586962], + [9.253155, 45.586962], + [9.253155, 45.582465], + [9.248659, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.586962], + [9.248659, 45.591458], + [9.253155, 45.591458], + [9.253155, 45.586962], + [9.248659, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.591458], + [9.248659, 45.595955], + [9.253155, 45.595955], + [9.253155, 45.591458], + [9.248659, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.595955], + [9.248659, 45.600451], + [9.253155, 45.600451], + [9.253155, 45.595955], + [9.248659, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.600451], + [9.248659, 45.604948], + [9.253155, 45.604948], + [9.253155, 45.600451], + [9.248659, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.604948], + [9.248659, 45.609445], + [9.253155, 45.609445], + [9.253155, 45.604948], + [9.248659, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.609445], + [9.248659, 45.613941], + [9.253155, 45.613941], + [9.253155, 45.609445], + [9.248659, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.613941], + [9.248659, 45.618438], + [9.253155, 45.618438], + [9.253155, 45.613941], + [9.248659, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.618438], + [9.248659, 45.622934], + [9.253155, 45.622934], + [9.253155, 45.618438], + [9.248659, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.622934], + [9.248659, 45.627431], + [9.253155, 45.627431], + [9.253155, 45.622934], + [9.248659, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.627431], + [9.248659, 45.631928], + [9.253155, 45.631928], + [9.253155, 45.627431], + [9.248659, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.631928], + [9.248659, 45.636424], + [9.253155, 45.636424], + [9.253155, 45.631928], + [9.248659, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.339648], + [9.253155, 45.344145], + [9.257652, 45.344145], + [9.257652, 45.339648], + [9.253155, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.344145], + [9.253155, 45.348642], + [9.257652, 45.348642], + [9.257652, 45.344145], + [9.253155, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.348642], + [9.253155, 45.353138], + [9.257652, 45.353138], + [9.257652, 45.348642], + [9.253155, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.353138], + [9.253155, 45.357635], + [9.257652, 45.357635], + [9.257652, 45.353138], + [9.253155, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.357635], + [9.253155, 45.362131], + [9.257652, 45.362131], + [9.257652, 45.357635], + [9.253155, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.362131], + [9.253155, 45.366628], + [9.257652, 45.366628], + [9.257652, 45.362131], + [9.253155, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.366628], + [9.253155, 45.371125], + [9.257652, 45.371125], + [9.257652, 45.366628], + [9.253155, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.371125], + [9.253155, 45.375621], + [9.257652, 45.375621], + [9.257652, 45.371125], + [9.253155, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.375621], + [9.253155, 45.380118], + [9.257652, 45.380118], + [9.257652, 45.375621], + [9.253155, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.380118], + [9.253155, 45.384614], + [9.257652, 45.384614], + [9.257652, 45.380118], + [9.253155, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.384614], + [9.253155, 45.389111], + [9.257652, 45.389111], + [9.257652, 45.384614], + [9.253155, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.389111], + [9.253155, 45.393608], + [9.257652, 45.393608], + [9.257652, 45.389111], + [9.253155, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.393608], + [9.253155, 45.398104], + [9.257652, 45.398104], + [9.257652, 45.393608], + [9.253155, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.398104], + [9.253155, 45.402601], + [9.257652, 45.402601], + [9.257652, 45.398104], + [9.253155, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.402601], + [9.253155, 45.407097], + [9.257652, 45.407097], + [9.257652, 45.402601], + [9.253155, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.407097], + [9.253155, 45.411594], + [9.257652, 45.411594], + [9.257652, 45.407097], + [9.253155, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.411594], + [9.253155, 45.416091], + [9.257652, 45.416091], + [9.257652, 45.411594], + [9.253155, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.416091], + [9.253155, 45.420587], + [9.257652, 45.420587], + [9.257652, 45.416091], + [9.253155, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.420587], + [9.253155, 45.425084], + [9.257652, 45.425084], + [9.257652, 45.420587], + [9.253155, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.425084], + [9.253155, 45.42958], + [9.257652, 45.42958], + [9.257652, 45.425084], + [9.253155, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.42958], + [9.253155, 45.434077], + [9.257652, 45.434077], + [9.257652, 45.42958], + [9.253155, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.434077], + [9.253155, 45.438574], + [9.257652, 45.438574], + [9.257652, 45.434077], + [9.253155, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.438574], + [9.253155, 45.44307], + [9.257652, 45.44307], + [9.257652, 45.438574], + [9.253155, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.44307], + [9.253155, 45.447567], + [9.257652, 45.447567], + [9.257652, 45.44307], + [9.253155, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.447567], + [9.253155, 45.452063], + [9.257652, 45.452063], + [9.257652, 45.447567], + [9.253155, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.452063], + [9.253155, 45.45656], + [9.257652, 45.45656], + [9.257652, 45.452063], + [9.253155, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.45656], + [9.253155, 45.461057], + [9.257652, 45.461057], + [9.257652, 45.45656], + [9.253155, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.461057], + [9.253155, 45.465553], + [9.257652, 45.465553], + [9.257652, 45.461057], + [9.253155, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.465553], + [9.253155, 45.47005], + [9.257652, 45.47005], + [9.257652, 45.465553], + [9.253155, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.47005], + [9.253155, 45.474547], + [9.257652, 45.474547], + [9.257652, 45.47005], + [9.253155, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.474547], + [9.253155, 45.479043], + [9.257652, 45.479043], + [9.257652, 45.474547], + [9.253155, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.479043], + [9.253155, 45.48354], + [9.257652, 45.48354], + [9.257652, 45.479043], + [9.253155, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.48354], + [9.253155, 45.488036], + [9.257652, 45.488036], + [9.257652, 45.48354], + [9.253155, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.488036], + [9.253155, 45.492533], + [9.257652, 45.492533], + [9.257652, 45.488036], + [9.253155, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.492533], + [9.253155, 45.49703], + [9.257652, 45.49703], + [9.257652, 45.492533], + [9.253155, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.49703], + [9.253155, 45.501526], + [9.257652, 45.501526], + [9.257652, 45.49703], + [9.253155, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.501526], + [9.253155, 45.506023], + [9.257652, 45.506023], + [9.257652, 45.501526], + [9.253155, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.506023], + [9.253155, 45.510519], + [9.257652, 45.510519], + [9.257652, 45.506023], + [9.253155, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.510519], + [9.253155, 45.515016], + [9.257652, 45.515016], + [9.257652, 45.510519], + [9.253155, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.515016], + [9.253155, 45.519513], + [9.257652, 45.519513], + [9.257652, 45.515016], + [9.253155, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.519513], + [9.253155, 45.524009], + [9.257652, 45.524009], + [9.257652, 45.519513], + [9.253155, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.524009], + [9.253155, 45.528506], + [9.257652, 45.528506], + [9.257652, 45.524009], + [9.253155, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.528506], + [9.253155, 45.533002], + [9.257652, 45.533002], + [9.257652, 45.528506], + [9.253155, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.533002], + [9.253155, 45.537499], + [9.257652, 45.537499], + [9.257652, 45.533002], + [9.253155, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.537499], + [9.253155, 45.541996], + [9.257652, 45.541996], + [9.257652, 45.537499], + [9.253155, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.541996], + [9.253155, 45.546492], + [9.257652, 45.546492], + [9.257652, 45.541996], + [9.253155, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.546492], + [9.253155, 45.550989], + [9.257652, 45.550989], + [9.257652, 45.546492], + [9.253155, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.550989], + [9.253155, 45.555485], + [9.257652, 45.555485], + [9.257652, 45.550989], + [9.253155, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.555485], + [9.253155, 45.559982], + [9.257652, 45.559982], + [9.257652, 45.555485], + [9.253155, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.559982], + [9.253155, 45.564479], + [9.257652, 45.564479], + [9.257652, 45.559982], + [9.253155, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.564479], + [9.253155, 45.568975], + [9.257652, 45.568975], + [9.257652, 45.564479], + [9.253155, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.568975], + [9.253155, 45.573472], + [9.257652, 45.573472], + [9.257652, 45.568975], + [9.253155, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.573472], + [9.253155, 45.577968], + [9.257652, 45.577968], + [9.257652, 45.573472], + [9.253155, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.577968], + [9.253155, 45.582465], + [9.257652, 45.582465], + [9.257652, 45.577968], + [9.253155, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.582465], + [9.253155, 45.586962], + [9.257652, 45.586962], + [9.257652, 45.582465], + [9.253155, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.586962], + [9.253155, 45.591458], + [9.257652, 45.591458], + [9.257652, 45.586962], + [9.253155, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.591458], + [9.253155, 45.595955], + [9.257652, 45.595955], + [9.257652, 45.591458], + [9.253155, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.595955], + [9.253155, 45.600451], + [9.257652, 45.600451], + [9.257652, 45.595955], + [9.253155, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.600451], + [9.253155, 45.604948], + [9.257652, 45.604948], + [9.257652, 45.600451], + [9.253155, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.604948], + [9.253155, 45.609445], + [9.257652, 45.609445], + [9.257652, 45.604948], + [9.253155, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.609445], + [9.253155, 45.613941], + [9.257652, 45.613941], + [9.257652, 45.609445], + [9.253155, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.613941], + [9.253155, 45.618438], + [9.257652, 45.618438], + [9.257652, 45.613941], + [9.253155, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.618438], + [9.253155, 45.622934], + [9.257652, 45.622934], + [9.257652, 45.618438], + [9.253155, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.622934], + [9.253155, 45.627431], + [9.257652, 45.627431], + [9.257652, 45.622934], + [9.253155, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.627431], + [9.253155, 45.631928], + [9.257652, 45.631928], + [9.257652, 45.627431], + [9.253155, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.631928], + [9.253155, 45.636424], + [9.257652, 45.636424], + [9.257652, 45.631928], + [9.253155, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.339648], + [9.257652, 45.344145], + [9.262148, 45.344145], + [9.262148, 45.339648], + [9.257652, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.344145], + [9.257652, 45.348642], + [9.262148, 45.348642], + [9.262148, 45.344145], + [9.257652, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.348642], + [9.257652, 45.353138], + [9.262148, 45.353138], + [9.262148, 45.348642], + [9.257652, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.353138], + [9.257652, 45.357635], + [9.262148, 45.357635], + [9.262148, 45.353138], + [9.257652, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.357635], + [9.257652, 45.362131], + [9.262148, 45.362131], + [9.262148, 45.357635], + [9.257652, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.362131], + [9.257652, 45.366628], + [9.262148, 45.366628], + [9.262148, 45.362131], + [9.257652, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.366628], + [9.257652, 45.371125], + [9.262148, 45.371125], + [9.262148, 45.366628], + [9.257652, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.371125], + [9.257652, 45.375621], + [9.262148, 45.375621], + [9.262148, 45.371125], + [9.257652, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.375621], + [9.257652, 45.380118], + [9.262148, 45.380118], + [9.262148, 45.375621], + [9.257652, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.380118], + [9.257652, 45.384614], + [9.262148, 45.384614], + [9.262148, 45.380118], + [9.257652, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.384614], + [9.257652, 45.389111], + [9.262148, 45.389111], + [9.262148, 45.384614], + [9.257652, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.389111], + [9.257652, 45.393608], + [9.262148, 45.393608], + [9.262148, 45.389111], + [9.257652, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.393608], + [9.257652, 45.398104], + [9.262148, 45.398104], + [9.262148, 45.393608], + [9.257652, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.398104], + [9.257652, 45.402601], + [9.262148, 45.402601], + [9.262148, 45.398104], + [9.257652, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.402601], + [9.257652, 45.407097], + [9.262148, 45.407097], + [9.262148, 45.402601], + [9.257652, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.407097], + [9.257652, 45.411594], + [9.262148, 45.411594], + [9.262148, 45.407097], + [9.257652, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.411594], + [9.257652, 45.416091], + [9.262148, 45.416091], + [9.262148, 45.411594], + [9.257652, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.416091], + [9.257652, 45.420587], + [9.262148, 45.420587], + [9.262148, 45.416091], + [9.257652, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.420587], + [9.257652, 45.425084], + [9.262148, 45.425084], + [9.262148, 45.420587], + [9.257652, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.425084], + [9.257652, 45.42958], + [9.262148, 45.42958], + [9.262148, 45.425084], + [9.257652, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.42958], + [9.257652, 45.434077], + [9.262148, 45.434077], + [9.262148, 45.42958], + [9.257652, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.434077], + [9.257652, 45.438574], + [9.262148, 45.438574], + [9.262148, 45.434077], + [9.257652, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.438574], + [9.257652, 45.44307], + [9.262148, 45.44307], + [9.262148, 45.438574], + [9.257652, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.44307], + [9.257652, 45.447567], + [9.262148, 45.447567], + [9.262148, 45.44307], + [9.257652, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.447567], + [9.257652, 45.452063], + [9.262148, 45.452063], + [9.262148, 45.447567], + [9.257652, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.452063], + [9.257652, 45.45656], + [9.262148, 45.45656], + [9.262148, 45.452063], + [9.257652, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.45656], + [9.257652, 45.461057], + [9.262148, 45.461057], + [9.262148, 45.45656], + [9.257652, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.461057], + [9.257652, 45.465553], + [9.262148, 45.465553], + [9.262148, 45.461057], + [9.257652, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.465553], + [9.257652, 45.47005], + [9.262148, 45.47005], + [9.262148, 45.465553], + [9.257652, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.47005], + [9.257652, 45.474547], + [9.262148, 45.474547], + [9.262148, 45.47005], + [9.257652, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.474547], + [9.257652, 45.479043], + [9.262148, 45.479043], + [9.262148, 45.474547], + [9.257652, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.479043], + [9.257652, 45.48354], + [9.262148, 45.48354], + [9.262148, 45.479043], + [9.257652, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.48354], + [9.257652, 45.488036], + [9.262148, 45.488036], + [9.262148, 45.48354], + [9.257652, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.488036], + [9.257652, 45.492533], + [9.262148, 45.492533], + [9.262148, 45.488036], + [9.257652, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.492533], + [9.257652, 45.49703], + [9.262148, 45.49703], + [9.262148, 45.492533], + [9.257652, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.49703], + [9.257652, 45.501526], + [9.262148, 45.501526], + [9.262148, 45.49703], + [9.257652, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.501526], + [9.257652, 45.506023], + [9.262148, 45.506023], + [9.262148, 45.501526], + [9.257652, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.506023], + [9.257652, 45.510519], + [9.262148, 45.510519], + [9.262148, 45.506023], + [9.257652, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.510519], + [9.257652, 45.515016], + [9.262148, 45.515016], + [9.262148, 45.510519], + [9.257652, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.515016], + [9.257652, 45.519513], + [9.262148, 45.519513], + [9.262148, 45.515016], + [9.257652, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.519513], + [9.257652, 45.524009], + [9.262148, 45.524009], + [9.262148, 45.519513], + [9.257652, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.524009], + [9.257652, 45.528506], + [9.262148, 45.528506], + [9.262148, 45.524009], + [9.257652, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.528506], + [9.257652, 45.533002], + [9.262148, 45.533002], + [9.262148, 45.528506], + [9.257652, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.533002], + [9.257652, 45.537499], + [9.262148, 45.537499], + [9.262148, 45.533002], + [9.257652, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.537499], + [9.257652, 45.541996], + [9.262148, 45.541996], + [9.262148, 45.537499], + [9.257652, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.541996], + [9.257652, 45.546492], + [9.262148, 45.546492], + [9.262148, 45.541996], + [9.257652, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.546492], + [9.257652, 45.550989], + [9.262148, 45.550989], + [9.262148, 45.546492], + [9.257652, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.550989], + [9.257652, 45.555485], + [9.262148, 45.555485], + [9.262148, 45.550989], + [9.257652, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.555485], + [9.257652, 45.559982], + [9.262148, 45.559982], + [9.262148, 45.555485], + [9.257652, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.559982], + [9.257652, 45.564479], + [9.262148, 45.564479], + [9.262148, 45.559982], + [9.257652, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.564479], + [9.257652, 45.568975], + [9.262148, 45.568975], + [9.262148, 45.564479], + [9.257652, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.568975], + [9.257652, 45.573472], + [9.262148, 45.573472], + [9.262148, 45.568975], + [9.257652, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.573472], + [9.257652, 45.577968], + [9.262148, 45.577968], + [9.262148, 45.573472], + [9.257652, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.577968], + [9.257652, 45.582465], + [9.262148, 45.582465], + [9.262148, 45.577968], + [9.257652, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.582465], + [9.257652, 45.586962], + [9.262148, 45.586962], + [9.262148, 45.582465], + [9.257652, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.586962], + [9.257652, 45.591458], + [9.262148, 45.591458], + [9.262148, 45.586962], + [9.257652, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.591458], + [9.257652, 45.595955], + [9.262148, 45.595955], + [9.262148, 45.591458], + [9.257652, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.595955], + [9.257652, 45.600451], + [9.262148, 45.600451], + [9.262148, 45.595955], + [9.257652, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.600451], + [9.257652, 45.604948], + [9.262148, 45.604948], + [9.262148, 45.600451], + [9.257652, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.604948], + [9.257652, 45.609445], + [9.262148, 45.609445], + [9.262148, 45.604948], + [9.257652, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.609445], + [9.257652, 45.613941], + [9.262148, 45.613941], + [9.262148, 45.609445], + [9.257652, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.613941], + [9.257652, 45.618438], + [9.262148, 45.618438], + [9.262148, 45.613941], + [9.257652, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.618438], + [9.257652, 45.622934], + [9.262148, 45.622934], + [9.262148, 45.618438], + [9.257652, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.622934], + [9.257652, 45.627431], + [9.262148, 45.627431], + [9.262148, 45.622934], + [9.257652, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.627431], + [9.257652, 45.631928], + [9.262148, 45.631928], + [9.262148, 45.627431], + [9.257652, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.631928], + [9.257652, 45.636424], + [9.262148, 45.636424], + [9.262148, 45.631928], + [9.257652, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.339648], + [9.262148, 45.344145], + [9.266645, 45.344145], + [9.266645, 45.339648], + [9.262148, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.344145], + [9.262148, 45.348642], + [9.266645, 45.348642], + [9.266645, 45.344145], + [9.262148, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.348642], + [9.262148, 45.353138], + [9.266645, 45.353138], + [9.266645, 45.348642], + [9.262148, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.353138], + [9.262148, 45.357635], + [9.266645, 45.357635], + [9.266645, 45.353138], + [9.262148, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.357635], + [9.262148, 45.362131], + [9.266645, 45.362131], + [9.266645, 45.357635], + [9.262148, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.362131], + [9.262148, 45.366628], + [9.266645, 45.366628], + [9.266645, 45.362131], + [9.262148, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.366628], + [9.262148, 45.371125], + [9.266645, 45.371125], + [9.266645, 45.366628], + [9.262148, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.371125], + [9.262148, 45.375621], + [9.266645, 45.375621], + [9.266645, 45.371125], + [9.262148, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.375621], + [9.262148, 45.380118], + [9.266645, 45.380118], + [9.266645, 45.375621], + [9.262148, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.380118], + [9.262148, 45.384614], + [9.266645, 45.384614], + [9.266645, 45.380118], + [9.262148, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.384614], + [9.262148, 45.389111], + [9.266645, 45.389111], + [9.266645, 45.384614], + [9.262148, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.389111], + [9.262148, 45.393608], + [9.266645, 45.393608], + [9.266645, 45.389111], + [9.262148, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.393608], + [9.262148, 45.398104], + [9.266645, 45.398104], + [9.266645, 45.393608], + [9.262148, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.398104], + [9.262148, 45.402601], + [9.266645, 45.402601], + [9.266645, 45.398104], + [9.262148, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.402601], + [9.262148, 45.407097], + [9.266645, 45.407097], + [9.266645, 45.402601], + [9.262148, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.407097], + [9.262148, 45.411594], + [9.266645, 45.411594], + [9.266645, 45.407097], + [9.262148, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.411594], + [9.262148, 45.416091], + [9.266645, 45.416091], + [9.266645, 45.411594], + [9.262148, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.416091], + [9.262148, 45.420587], + [9.266645, 45.420587], + [9.266645, 45.416091], + [9.262148, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.420587], + [9.262148, 45.425084], + [9.266645, 45.425084], + [9.266645, 45.420587], + [9.262148, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.425084], + [9.262148, 45.42958], + [9.266645, 45.42958], + [9.266645, 45.425084], + [9.262148, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.42958], + [9.262148, 45.434077], + [9.266645, 45.434077], + [9.266645, 45.42958], + [9.262148, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.434077], + [9.262148, 45.438574], + [9.266645, 45.438574], + [9.266645, 45.434077], + [9.262148, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.438574], + [9.262148, 45.44307], + [9.266645, 45.44307], + [9.266645, 45.438574], + [9.262148, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.44307], + [9.262148, 45.447567], + [9.266645, 45.447567], + [9.266645, 45.44307], + [9.262148, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.447567], + [9.262148, 45.452063], + [9.266645, 45.452063], + [9.266645, 45.447567], + [9.262148, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.452063], + [9.262148, 45.45656], + [9.266645, 45.45656], + [9.266645, 45.452063], + [9.262148, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.45656], + [9.262148, 45.461057], + [9.266645, 45.461057], + [9.266645, 45.45656], + [9.262148, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.461057], + [9.262148, 45.465553], + [9.266645, 45.465553], + [9.266645, 45.461057], + [9.262148, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.465553], + [9.262148, 45.47005], + [9.266645, 45.47005], + [9.266645, 45.465553], + [9.262148, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.47005], + [9.262148, 45.474547], + [9.266645, 45.474547], + [9.266645, 45.47005], + [9.262148, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.474547], + [9.262148, 45.479043], + [9.266645, 45.479043], + [9.266645, 45.474547], + [9.262148, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.479043], + [9.262148, 45.48354], + [9.266645, 45.48354], + [9.266645, 45.479043], + [9.262148, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.48354], + [9.262148, 45.488036], + [9.266645, 45.488036], + [9.266645, 45.48354], + [9.262148, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.488036], + [9.262148, 45.492533], + [9.266645, 45.492533], + [9.266645, 45.488036], + [9.262148, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.492533], + [9.262148, 45.49703], + [9.266645, 45.49703], + [9.266645, 45.492533], + [9.262148, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.49703], + [9.262148, 45.501526], + [9.266645, 45.501526], + [9.266645, 45.49703], + [9.262148, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.501526], + [9.262148, 45.506023], + [9.266645, 45.506023], + [9.266645, 45.501526], + [9.262148, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.506023], + [9.262148, 45.510519], + [9.266645, 45.510519], + [9.266645, 45.506023], + [9.262148, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.510519], + [9.262148, 45.515016], + [9.266645, 45.515016], + [9.266645, 45.510519], + [9.262148, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.515016], + [9.262148, 45.519513], + [9.266645, 45.519513], + [9.266645, 45.515016], + [9.262148, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.519513], + [9.262148, 45.524009], + [9.266645, 45.524009], + [9.266645, 45.519513], + [9.262148, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.524009], + [9.262148, 45.528506], + [9.266645, 45.528506], + [9.266645, 45.524009], + [9.262148, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.528506], + [9.262148, 45.533002], + [9.266645, 45.533002], + [9.266645, 45.528506], + [9.262148, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.533002], + [9.262148, 45.537499], + [9.266645, 45.537499], + [9.266645, 45.533002], + [9.262148, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.537499], + [9.262148, 45.541996], + [9.266645, 45.541996], + [9.266645, 45.537499], + [9.262148, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.541996], + [9.262148, 45.546492], + [9.266645, 45.546492], + [9.266645, 45.541996], + [9.262148, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.546492], + [9.262148, 45.550989], + [9.266645, 45.550989], + [9.266645, 45.546492], + [9.262148, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.550989], + [9.262148, 45.555485], + [9.266645, 45.555485], + [9.266645, 45.550989], + [9.262148, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.555485], + [9.262148, 45.559982], + [9.266645, 45.559982], + [9.266645, 45.555485], + [9.262148, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.559982], + [9.262148, 45.564479], + [9.266645, 45.564479], + [9.266645, 45.559982], + [9.262148, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.564479], + [9.262148, 45.568975], + [9.266645, 45.568975], + [9.266645, 45.564479], + [9.262148, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.568975], + [9.262148, 45.573472], + [9.266645, 45.573472], + [9.266645, 45.568975], + [9.262148, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.573472], + [9.262148, 45.577968], + [9.266645, 45.577968], + [9.266645, 45.573472], + [9.262148, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.577968], + [9.262148, 45.582465], + [9.266645, 45.582465], + [9.266645, 45.577968], + [9.262148, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.582465], + [9.262148, 45.586962], + [9.266645, 45.586962], + [9.266645, 45.582465], + [9.262148, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.586962], + [9.262148, 45.591458], + [9.266645, 45.591458], + [9.266645, 45.586962], + [9.262148, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.591458], + [9.262148, 45.595955], + [9.266645, 45.595955], + [9.266645, 45.591458], + [9.262148, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.595955], + [9.262148, 45.600451], + [9.266645, 45.600451], + [9.266645, 45.595955], + [9.262148, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.600451], + [9.262148, 45.604948], + [9.266645, 45.604948], + [9.266645, 45.600451], + [9.262148, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.604948], + [9.262148, 45.609445], + [9.266645, 45.609445], + [9.266645, 45.604948], + [9.262148, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.609445], + [9.262148, 45.613941], + [9.266645, 45.613941], + [9.266645, 45.609445], + [9.262148, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.613941], + [9.262148, 45.618438], + [9.266645, 45.618438], + [9.266645, 45.613941], + [9.262148, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.618438], + [9.262148, 45.622934], + [9.266645, 45.622934], + [9.266645, 45.618438], + [9.262148, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.622934], + [9.262148, 45.627431], + [9.266645, 45.627431], + [9.266645, 45.622934], + [9.262148, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.627431], + [9.262148, 45.631928], + [9.266645, 45.631928], + [9.266645, 45.627431], + [9.262148, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.631928], + [9.262148, 45.636424], + [9.266645, 45.636424], + [9.266645, 45.631928], + [9.262148, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.339648], + [9.266645, 45.344145], + [9.271142, 45.344145], + [9.271142, 45.339648], + [9.266645, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.344145], + [9.266645, 45.348642], + [9.271142, 45.348642], + [9.271142, 45.344145], + [9.266645, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.348642], + [9.266645, 45.353138], + [9.271142, 45.353138], + [9.271142, 45.348642], + [9.266645, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.353138], + [9.266645, 45.357635], + [9.271142, 45.357635], + [9.271142, 45.353138], + [9.266645, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.357635], + [9.266645, 45.362131], + [9.271142, 45.362131], + [9.271142, 45.357635], + [9.266645, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.362131], + [9.266645, 45.366628], + [9.271142, 45.366628], + [9.271142, 45.362131], + [9.266645, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.366628], + [9.266645, 45.371125], + [9.271142, 45.371125], + [9.271142, 45.366628], + [9.266645, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.371125], + [9.266645, 45.375621], + [9.271142, 45.375621], + [9.271142, 45.371125], + [9.266645, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.375621], + [9.266645, 45.380118], + [9.271142, 45.380118], + [9.271142, 45.375621], + [9.266645, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.380118], + [9.266645, 45.384614], + [9.271142, 45.384614], + [9.271142, 45.380118], + [9.266645, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.384614], + [9.266645, 45.389111], + [9.271142, 45.389111], + [9.271142, 45.384614], + [9.266645, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.389111], + [9.266645, 45.393608], + [9.271142, 45.393608], + [9.271142, 45.389111], + [9.266645, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.393608], + [9.266645, 45.398104], + [9.271142, 45.398104], + [9.271142, 45.393608], + [9.266645, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.398104], + [9.266645, 45.402601], + [9.271142, 45.402601], + [9.271142, 45.398104], + [9.266645, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.402601], + [9.266645, 45.407097], + [9.271142, 45.407097], + [9.271142, 45.402601], + [9.266645, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.407097], + [9.266645, 45.411594], + [9.271142, 45.411594], + [9.271142, 45.407097], + [9.266645, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.411594], + [9.266645, 45.416091], + [9.271142, 45.416091], + [9.271142, 45.411594], + [9.266645, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.416091], + [9.266645, 45.420587], + [9.271142, 45.420587], + [9.271142, 45.416091], + [9.266645, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.420587], + [9.266645, 45.425084], + [9.271142, 45.425084], + [9.271142, 45.420587], + [9.266645, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.425084], + [9.266645, 45.42958], + [9.271142, 45.42958], + [9.271142, 45.425084], + [9.266645, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.42958], + [9.266645, 45.434077], + [9.271142, 45.434077], + [9.271142, 45.42958], + [9.266645, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.434077], + [9.266645, 45.438574], + [9.271142, 45.438574], + [9.271142, 45.434077], + [9.266645, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.438574], + [9.266645, 45.44307], + [9.271142, 45.44307], + [9.271142, 45.438574], + [9.266645, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.44307], + [9.266645, 45.447567], + [9.271142, 45.447567], + [9.271142, 45.44307], + [9.266645, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.447567], + [9.266645, 45.452063], + [9.271142, 45.452063], + [9.271142, 45.447567], + [9.266645, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.452063], + [9.266645, 45.45656], + [9.271142, 45.45656], + [9.271142, 45.452063], + [9.266645, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.45656], + [9.266645, 45.461057], + [9.271142, 45.461057], + [9.271142, 45.45656], + [9.266645, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.461057], + [9.266645, 45.465553], + [9.271142, 45.465553], + [9.271142, 45.461057], + [9.266645, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.465553], + [9.266645, 45.47005], + [9.271142, 45.47005], + [9.271142, 45.465553], + [9.266645, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.47005], + [9.266645, 45.474547], + [9.271142, 45.474547], + [9.271142, 45.47005], + [9.266645, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.474547], + [9.266645, 45.479043], + [9.271142, 45.479043], + [9.271142, 45.474547], + [9.266645, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.479043], + [9.266645, 45.48354], + [9.271142, 45.48354], + [9.271142, 45.479043], + [9.266645, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.48354], + [9.266645, 45.488036], + [9.271142, 45.488036], + [9.271142, 45.48354], + [9.266645, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.488036], + [9.266645, 45.492533], + [9.271142, 45.492533], + [9.271142, 45.488036], + [9.266645, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.492533], + [9.266645, 45.49703], + [9.271142, 45.49703], + [9.271142, 45.492533], + [9.266645, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.49703], + [9.266645, 45.501526], + [9.271142, 45.501526], + [9.271142, 45.49703], + [9.266645, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.501526], + [9.266645, 45.506023], + [9.271142, 45.506023], + [9.271142, 45.501526], + [9.266645, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.506023], + [9.266645, 45.510519], + [9.271142, 45.510519], + [9.271142, 45.506023], + [9.266645, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.510519], + [9.266645, 45.515016], + [9.271142, 45.515016], + [9.271142, 45.510519], + [9.266645, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.515016], + [9.266645, 45.519513], + [9.271142, 45.519513], + [9.271142, 45.515016], + [9.266645, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.519513], + [9.266645, 45.524009], + [9.271142, 45.524009], + [9.271142, 45.519513], + [9.266645, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.524009], + [9.266645, 45.528506], + [9.271142, 45.528506], + [9.271142, 45.524009], + [9.266645, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.528506], + [9.266645, 45.533002], + [9.271142, 45.533002], + [9.271142, 45.528506], + [9.266645, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.533002], + [9.266645, 45.537499], + [9.271142, 45.537499], + [9.271142, 45.533002], + [9.266645, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.537499], + [9.266645, 45.541996], + [9.271142, 45.541996], + [9.271142, 45.537499], + [9.266645, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.541996], + [9.266645, 45.546492], + [9.271142, 45.546492], + [9.271142, 45.541996], + [9.266645, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.546492], + [9.266645, 45.550989], + [9.271142, 45.550989], + [9.271142, 45.546492], + [9.266645, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.550989], + [9.266645, 45.555485], + [9.271142, 45.555485], + [9.271142, 45.550989], + [9.266645, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.555485], + [9.266645, 45.559982], + [9.271142, 45.559982], + [9.271142, 45.555485], + [9.266645, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.559982], + [9.266645, 45.564479], + [9.271142, 45.564479], + [9.271142, 45.559982], + [9.266645, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.564479], + [9.266645, 45.568975], + [9.271142, 45.568975], + [9.271142, 45.564479], + [9.266645, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.568975], + [9.266645, 45.573472], + [9.271142, 45.573472], + [9.271142, 45.568975], + [9.266645, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.573472], + [9.266645, 45.577968], + [9.271142, 45.577968], + [9.271142, 45.573472], + [9.266645, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.577968], + [9.266645, 45.582465], + [9.271142, 45.582465], + [9.271142, 45.577968], + [9.266645, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.582465], + [9.266645, 45.586962], + [9.271142, 45.586962], + [9.271142, 45.582465], + [9.266645, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.586962], + [9.266645, 45.591458], + [9.271142, 45.591458], + [9.271142, 45.586962], + [9.266645, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.591458], + [9.266645, 45.595955], + [9.271142, 45.595955], + [9.271142, 45.591458], + [9.266645, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.595955], + [9.266645, 45.600451], + [9.271142, 45.600451], + [9.271142, 45.595955], + [9.266645, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.600451], + [9.266645, 45.604948], + [9.271142, 45.604948], + [9.271142, 45.600451], + [9.266645, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.604948], + [9.266645, 45.609445], + [9.271142, 45.609445], + [9.271142, 45.604948], + [9.266645, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.609445], + [9.266645, 45.613941], + [9.271142, 45.613941], + [9.271142, 45.609445], + [9.266645, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.613941], + [9.266645, 45.618438], + [9.271142, 45.618438], + [9.271142, 45.613941], + [9.266645, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.618438], + [9.266645, 45.622934], + [9.271142, 45.622934], + [9.271142, 45.618438], + [9.266645, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.622934], + [9.266645, 45.627431], + [9.271142, 45.627431], + [9.271142, 45.622934], + [9.266645, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.627431], + [9.266645, 45.631928], + [9.271142, 45.631928], + [9.271142, 45.627431], + [9.266645, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.631928], + [9.266645, 45.636424], + [9.271142, 45.636424], + [9.271142, 45.631928], + [9.266645, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.339648], + [9.271142, 45.344145], + [9.275638, 45.344145], + [9.275638, 45.339648], + [9.271142, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.344145], + [9.271142, 45.348642], + [9.275638, 45.348642], + [9.275638, 45.344145], + [9.271142, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.348642], + [9.271142, 45.353138], + [9.275638, 45.353138], + [9.275638, 45.348642], + [9.271142, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.353138], + [9.271142, 45.357635], + [9.275638, 45.357635], + [9.275638, 45.353138], + [9.271142, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.357635], + [9.271142, 45.362131], + [9.275638, 45.362131], + [9.275638, 45.357635], + [9.271142, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.362131], + [9.271142, 45.366628], + [9.275638, 45.366628], + [9.275638, 45.362131], + [9.271142, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.366628], + [9.271142, 45.371125], + [9.275638, 45.371125], + [9.275638, 45.366628], + [9.271142, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.371125], + [9.271142, 45.375621], + [9.275638, 45.375621], + [9.275638, 45.371125], + [9.271142, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.375621], + [9.271142, 45.380118], + [9.275638, 45.380118], + [9.275638, 45.375621], + [9.271142, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.380118], + [9.271142, 45.384614], + [9.275638, 45.384614], + [9.275638, 45.380118], + [9.271142, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.384614], + [9.271142, 45.389111], + [9.275638, 45.389111], + [9.275638, 45.384614], + [9.271142, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.389111], + [9.271142, 45.393608], + [9.275638, 45.393608], + [9.275638, 45.389111], + [9.271142, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.393608], + [9.271142, 45.398104], + [9.275638, 45.398104], + [9.275638, 45.393608], + [9.271142, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.398104], + [9.271142, 45.402601], + [9.275638, 45.402601], + [9.275638, 45.398104], + [9.271142, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.402601], + [9.271142, 45.407097], + [9.275638, 45.407097], + [9.275638, 45.402601], + [9.271142, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.407097], + [9.271142, 45.411594], + [9.275638, 45.411594], + [9.275638, 45.407097], + [9.271142, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.411594], + [9.271142, 45.416091], + [9.275638, 45.416091], + [9.275638, 45.411594], + [9.271142, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.416091], + [9.271142, 45.420587], + [9.275638, 45.420587], + [9.275638, 45.416091], + [9.271142, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.420587], + [9.271142, 45.425084], + [9.275638, 45.425084], + [9.275638, 45.420587], + [9.271142, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.425084], + [9.271142, 45.42958], + [9.275638, 45.42958], + [9.275638, 45.425084], + [9.271142, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.42958], + [9.271142, 45.434077], + [9.275638, 45.434077], + [9.275638, 45.42958], + [9.271142, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.434077], + [9.271142, 45.438574], + [9.275638, 45.438574], + [9.275638, 45.434077], + [9.271142, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.438574], + [9.271142, 45.44307], + [9.275638, 45.44307], + [9.275638, 45.438574], + [9.271142, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.44307], + [9.271142, 45.447567], + [9.275638, 45.447567], + [9.275638, 45.44307], + [9.271142, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.447567], + [9.271142, 45.452063], + [9.275638, 45.452063], + [9.275638, 45.447567], + [9.271142, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.452063], + [9.271142, 45.45656], + [9.275638, 45.45656], + [9.275638, 45.452063], + [9.271142, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.45656], + [9.271142, 45.461057], + [9.275638, 45.461057], + [9.275638, 45.45656], + [9.271142, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.461057], + [9.271142, 45.465553], + [9.275638, 45.465553], + [9.275638, 45.461057], + [9.271142, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.465553], + [9.271142, 45.47005], + [9.275638, 45.47005], + [9.275638, 45.465553], + [9.271142, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.47005], + [9.271142, 45.474547], + [9.275638, 45.474547], + [9.275638, 45.47005], + [9.271142, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.474547], + [9.271142, 45.479043], + [9.275638, 45.479043], + [9.275638, 45.474547], + [9.271142, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.479043], + [9.271142, 45.48354], + [9.275638, 45.48354], + [9.275638, 45.479043], + [9.271142, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.48354], + [9.271142, 45.488036], + [9.275638, 45.488036], + [9.275638, 45.48354], + [9.271142, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.488036], + [9.271142, 45.492533], + [9.275638, 45.492533], + [9.275638, 45.488036], + [9.271142, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.492533], + [9.271142, 45.49703], + [9.275638, 45.49703], + [9.275638, 45.492533], + [9.271142, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.49703], + [9.271142, 45.501526], + [9.275638, 45.501526], + [9.275638, 45.49703], + [9.271142, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.501526], + [9.271142, 45.506023], + [9.275638, 45.506023], + [9.275638, 45.501526], + [9.271142, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.506023], + [9.271142, 45.510519], + [9.275638, 45.510519], + [9.275638, 45.506023], + [9.271142, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.510519], + [9.271142, 45.515016], + [9.275638, 45.515016], + [9.275638, 45.510519], + [9.271142, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.515016], + [9.271142, 45.519513], + [9.275638, 45.519513], + [9.275638, 45.515016], + [9.271142, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.519513], + [9.271142, 45.524009], + [9.275638, 45.524009], + [9.275638, 45.519513], + [9.271142, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.524009], + [9.271142, 45.528506], + [9.275638, 45.528506], + [9.275638, 45.524009], + [9.271142, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.528506], + [9.271142, 45.533002], + [9.275638, 45.533002], + [9.275638, 45.528506], + [9.271142, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.533002], + [9.271142, 45.537499], + [9.275638, 45.537499], + [9.275638, 45.533002], + [9.271142, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.537499], + [9.271142, 45.541996], + [9.275638, 45.541996], + [9.275638, 45.537499], + [9.271142, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.541996], + [9.271142, 45.546492], + [9.275638, 45.546492], + [9.275638, 45.541996], + [9.271142, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.546492], + [9.271142, 45.550989], + [9.275638, 45.550989], + [9.275638, 45.546492], + [9.271142, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.550989], + [9.271142, 45.555485], + [9.275638, 45.555485], + [9.275638, 45.550989], + [9.271142, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.555485], + [9.271142, 45.559982], + [9.275638, 45.559982], + [9.275638, 45.555485], + [9.271142, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.559982], + [9.271142, 45.564479], + [9.275638, 45.564479], + [9.275638, 45.559982], + [9.271142, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.564479], + [9.271142, 45.568975], + [9.275638, 45.568975], + [9.275638, 45.564479], + [9.271142, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.568975], + [9.271142, 45.573472], + [9.275638, 45.573472], + [9.275638, 45.568975], + [9.271142, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.573472], + [9.271142, 45.577968], + [9.275638, 45.577968], + [9.275638, 45.573472], + [9.271142, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.577968], + [9.271142, 45.582465], + [9.275638, 45.582465], + [9.275638, 45.577968], + [9.271142, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.582465], + [9.271142, 45.586962], + [9.275638, 45.586962], + [9.275638, 45.582465], + [9.271142, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.586962], + [9.271142, 45.591458], + [9.275638, 45.591458], + [9.275638, 45.586962], + [9.271142, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.591458], + [9.271142, 45.595955], + [9.275638, 45.595955], + [9.275638, 45.591458], + [9.271142, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.595955], + [9.271142, 45.600451], + [9.275638, 45.600451], + [9.275638, 45.595955], + [9.271142, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.600451], + [9.271142, 45.604948], + [9.275638, 45.604948], + [9.275638, 45.600451], + [9.271142, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.604948], + [9.271142, 45.609445], + [9.275638, 45.609445], + [9.275638, 45.604948], + [9.271142, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.609445], + [9.271142, 45.613941], + [9.275638, 45.613941], + [9.275638, 45.609445], + [9.271142, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.613941], + [9.271142, 45.618438], + [9.275638, 45.618438], + [9.275638, 45.613941], + [9.271142, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.618438], + [9.271142, 45.622934], + [9.275638, 45.622934], + [9.275638, 45.618438], + [9.271142, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.622934], + [9.271142, 45.627431], + [9.275638, 45.627431], + [9.275638, 45.622934], + [9.271142, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.627431], + [9.271142, 45.631928], + [9.275638, 45.631928], + [9.275638, 45.627431], + [9.271142, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.631928], + [9.271142, 45.636424], + [9.275638, 45.636424], + [9.275638, 45.631928], + [9.271142, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.339648], + [9.275638, 45.344145], + [9.280135, 45.344145], + [9.280135, 45.339648], + [9.275638, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.344145], + [9.275638, 45.348642], + [9.280135, 45.348642], + [9.280135, 45.344145], + [9.275638, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.348642], + [9.275638, 45.353138], + [9.280135, 45.353138], + [9.280135, 45.348642], + [9.275638, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.353138], + [9.275638, 45.357635], + [9.280135, 45.357635], + [9.280135, 45.353138], + [9.275638, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.357635], + [9.275638, 45.362131], + [9.280135, 45.362131], + [9.280135, 45.357635], + [9.275638, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.362131], + [9.275638, 45.366628], + [9.280135, 45.366628], + [9.280135, 45.362131], + [9.275638, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.366628], + [9.275638, 45.371125], + [9.280135, 45.371125], + [9.280135, 45.366628], + [9.275638, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.371125], + [9.275638, 45.375621], + [9.280135, 45.375621], + [9.280135, 45.371125], + [9.275638, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.375621], + [9.275638, 45.380118], + [9.280135, 45.380118], + [9.280135, 45.375621], + [9.275638, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.380118], + [9.275638, 45.384614], + [9.280135, 45.384614], + [9.280135, 45.380118], + [9.275638, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.384614], + [9.275638, 45.389111], + [9.280135, 45.389111], + [9.280135, 45.384614], + [9.275638, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.389111], + [9.275638, 45.393608], + [9.280135, 45.393608], + [9.280135, 45.389111], + [9.275638, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.393608], + [9.275638, 45.398104], + [9.280135, 45.398104], + [9.280135, 45.393608], + [9.275638, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.398104], + [9.275638, 45.402601], + [9.280135, 45.402601], + [9.280135, 45.398104], + [9.275638, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.402601], + [9.275638, 45.407097], + [9.280135, 45.407097], + [9.280135, 45.402601], + [9.275638, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.407097], + [9.275638, 45.411594], + [9.280135, 45.411594], + [9.280135, 45.407097], + [9.275638, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.411594], + [9.275638, 45.416091], + [9.280135, 45.416091], + [9.280135, 45.411594], + [9.275638, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.416091], + [9.275638, 45.420587], + [9.280135, 45.420587], + [9.280135, 45.416091], + [9.275638, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.420587], + [9.275638, 45.425084], + [9.280135, 45.425084], + [9.280135, 45.420587], + [9.275638, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.425084], + [9.275638, 45.42958], + [9.280135, 45.42958], + [9.280135, 45.425084], + [9.275638, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.42958], + [9.275638, 45.434077], + [9.280135, 45.434077], + [9.280135, 45.42958], + [9.275638, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.434077], + [9.275638, 45.438574], + [9.280135, 45.438574], + [9.280135, 45.434077], + [9.275638, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.438574], + [9.275638, 45.44307], + [9.280135, 45.44307], + [9.280135, 45.438574], + [9.275638, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.44307], + [9.275638, 45.447567], + [9.280135, 45.447567], + [9.280135, 45.44307], + [9.275638, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.447567], + [9.275638, 45.452063], + [9.280135, 45.452063], + [9.280135, 45.447567], + [9.275638, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.452063], + [9.275638, 45.45656], + [9.280135, 45.45656], + [9.280135, 45.452063], + [9.275638, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.45656], + [9.275638, 45.461057], + [9.280135, 45.461057], + [9.280135, 45.45656], + [9.275638, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.461057], + [9.275638, 45.465553], + [9.280135, 45.465553], + [9.280135, 45.461057], + [9.275638, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.465553], + [9.275638, 45.47005], + [9.280135, 45.47005], + [9.280135, 45.465553], + [9.275638, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.47005], + [9.275638, 45.474547], + [9.280135, 45.474547], + [9.280135, 45.47005], + [9.275638, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.474547], + [9.275638, 45.479043], + [9.280135, 45.479043], + [9.280135, 45.474547], + [9.275638, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.479043], + [9.275638, 45.48354], + [9.280135, 45.48354], + [9.280135, 45.479043], + [9.275638, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.48354], + [9.275638, 45.488036], + [9.280135, 45.488036], + [9.280135, 45.48354], + [9.275638, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.488036], + [9.275638, 45.492533], + [9.280135, 45.492533], + [9.280135, 45.488036], + [9.275638, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.492533], + [9.275638, 45.49703], + [9.280135, 45.49703], + [9.280135, 45.492533], + [9.275638, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.49703], + [9.275638, 45.501526], + [9.280135, 45.501526], + [9.280135, 45.49703], + [9.275638, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.501526], + [9.275638, 45.506023], + [9.280135, 45.506023], + [9.280135, 45.501526], + [9.275638, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.506023], + [9.275638, 45.510519], + [9.280135, 45.510519], + [9.280135, 45.506023], + [9.275638, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.510519], + [9.275638, 45.515016], + [9.280135, 45.515016], + [9.280135, 45.510519], + [9.275638, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.515016], + [9.275638, 45.519513], + [9.280135, 45.519513], + [9.280135, 45.515016], + [9.275638, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.519513], + [9.275638, 45.524009], + [9.280135, 45.524009], + [9.280135, 45.519513], + [9.275638, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.524009], + [9.275638, 45.528506], + [9.280135, 45.528506], + [9.280135, 45.524009], + [9.275638, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.528506], + [9.275638, 45.533002], + [9.280135, 45.533002], + [9.280135, 45.528506], + [9.275638, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.533002], + [9.275638, 45.537499], + [9.280135, 45.537499], + [9.280135, 45.533002], + [9.275638, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.537499], + [9.275638, 45.541996], + [9.280135, 45.541996], + [9.280135, 45.537499], + [9.275638, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.541996], + [9.275638, 45.546492], + [9.280135, 45.546492], + [9.280135, 45.541996], + [9.275638, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.546492], + [9.275638, 45.550989], + [9.280135, 45.550989], + [9.280135, 45.546492], + [9.275638, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.550989], + [9.275638, 45.555485], + [9.280135, 45.555485], + [9.280135, 45.550989], + [9.275638, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.555485], + [9.275638, 45.559982], + [9.280135, 45.559982], + [9.280135, 45.555485], + [9.275638, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.559982], + [9.275638, 45.564479], + [9.280135, 45.564479], + [9.280135, 45.559982], + [9.275638, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.564479], + [9.275638, 45.568975], + [9.280135, 45.568975], + [9.280135, 45.564479], + [9.275638, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.568975], + [9.275638, 45.573472], + [9.280135, 45.573472], + [9.280135, 45.568975], + [9.275638, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.573472], + [9.275638, 45.577968], + [9.280135, 45.577968], + [9.280135, 45.573472], + [9.275638, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.577968], + [9.275638, 45.582465], + [9.280135, 45.582465], + [9.280135, 45.577968], + [9.275638, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.582465], + [9.275638, 45.586962], + [9.280135, 45.586962], + [9.280135, 45.582465], + [9.275638, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.586962], + [9.275638, 45.591458], + [9.280135, 45.591458], + [9.280135, 45.586962], + [9.275638, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.591458], + [9.275638, 45.595955], + [9.280135, 45.595955], + [9.280135, 45.591458], + [9.275638, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.595955], + [9.275638, 45.600451], + [9.280135, 45.600451], + [9.280135, 45.595955], + [9.275638, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.600451], + [9.275638, 45.604948], + [9.280135, 45.604948], + [9.280135, 45.600451], + [9.275638, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.604948], + [9.275638, 45.609445], + [9.280135, 45.609445], + [9.280135, 45.604948], + [9.275638, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.609445], + [9.275638, 45.613941], + [9.280135, 45.613941], + [9.280135, 45.609445], + [9.275638, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.613941], + [9.275638, 45.618438], + [9.280135, 45.618438], + [9.280135, 45.613941], + [9.275638, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.618438], + [9.275638, 45.622934], + [9.280135, 45.622934], + [9.280135, 45.618438], + [9.275638, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.622934], + [9.275638, 45.627431], + [9.280135, 45.627431], + [9.280135, 45.622934], + [9.275638, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.627431], + [9.275638, 45.631928], + [9.280135, 45.631928], + [9.280135, 45.627431], + [9.275638, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.631928], + [9.275638, 45.636424], + [9.280135, 45.636424], + [9.280135, 45.631928], + [9.275638, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.339648], + [9.280135, 45.344145], + [9.284631, 45.344145], + [9.284631, 45.339648], + [9.280135, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.344145], + [9.280135, 45.348642], + [9.284631, 45.348642], + [9.284631, 45.344145], + [9.280135, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.348642], + [9.280135, 45.353138], + [9.284631, 45.353138], + [9.284631, 45.348642], + [9.280135, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.353138], + [9.280135, 45.357635], + [9.284631, 45.357635], + [9.284631, 45.353138], + [9.280135, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.357635], + [9.280135, 45.362131], + [9.284631, 45.362131], + [9.284631, 45.357635], + [9.280135, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.362131], + [9.280135, 45.366628], + [9.284631, 45.366628], + [9.284631, 45.362131], + [9.280135, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.366628], + [9.280135, 45.371125], + [9.284631, 45.371125], + [9.284631, 45.366628], + [9.280135, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.371125], + [9.280135, 45.375621], + [9.284631, 45.375621], + [9.284631, 45.371125], + [9.280135, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.375621], + [9.280135, 45.380118], + [9.284631, 45.380118], + [9.284631, 45.375621], + [9.280135, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.380118], + [9.280135, 45.384614], + [9.284631, 45.384614], + [9.284631, 45.380118], + [9.280135, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.384614], + [9.280135, 45.389111], + [9.284631, 45.389111], + [9.284631, 45.384614], + [9.280135, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.389111], + [9.280135, 45.393608], + [9.284631, 45.393608], + [9.284631, 45.389111], + [9.280135, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.393608], + [9.280135, 45.398104], + [9.284631, 45.398104], + [9.284631, 45.393608], + [9.280135, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.398104], + [9.280135, 45.402601], + [9.284631, 45.402601], + [9.284631, 45.398104], + [9.280135, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.402601], + [9.280135, 45.407097], + [9.284631, 45.407097], + [9.284631, 45.402601], + [9.280135, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.407097], + [9.280135, 45.411594], + [9.284631, 45.411594], + [9.284631, 45.407097], + [9.280135, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.411594], + [9.280135, 45.416091], + [9.284631, 45.416091], + [9.284631, 45.411594], + [9.280135, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.416091], + [9.280135, 45.420587], + [9.284631, 45.420587], + [9.284631, 45.416091], + [9.280135, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.420587], + [9.280135, 45.425084], + [9.284631, 45.425084], + [9.284631, 45.420587], + [9.280135, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.425084], + [9.280135, 45.42958], + [9.284631, 45.42958], + [9.284631, 45.425084], + [9.280135, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.42958], + [9.280135, 45.434077], + [9.284631, 45.434077], + [9.284631, 45.42958], + [9.280135, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.434077], + [9.280135, 45.438574], + [9.284631, 45.438574], + [9.284631, 45.434077], + [9.280135, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.438574], + [9.280135, 45.44307], + [9.284631, 45.44307], + [9.284631, 45.438574], + [9.280135, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.44307], + [9.280135, 45.447567], + [9.284631, 45.447567], + [9.284631, 45.44307], + [9.280135, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.447567], + [9.280135, 45.452063], + [9.284631, 45.452063], + [9.284631, 45.447567], + [9.280135, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.452063], + [9.280135, 45.45656], + [9.284631, 45.45656], + [9.284631, 45.452063], + [9.280135, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.45656], + [9.280135, 45.461057], + [9.284631, 45.461057], + [9.284631, 45.45656], + [9.280135, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.461057], + [9.280135, 45.465553], + [9.284631, 45.465553], + [9.284631, 45.461057], + [9.280135, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.465553], + [9.280135, 45.47005], + [9.284631, 45.47005], + [9.284631, 45.465553], + [9.280135, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.47005], + [9.280135, 45.474547], + [9.284631, 45.474547], + [9.284631, 45.47005], + [9.280135, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.474547], + [9.280135, 45.479043], + [9.284631, 45.479043], + [9.284631, 45.474547], + [9.280135, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.479043], + [9.280135, 45.48354], + [9.284631, 45.48354], + [9.284631, 45.479043], + [9.280135, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.48354], + [9.280135, 45.488036], + [9.284631, 45.488036], + [9.284631, 45.48354], + [9.280135, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.488036], + [9.280135, 45.492533], + [9.284631, 45.492533], + [9.284631, 45.488036], + [9.280135, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.492533], + [9.280135, 45.49703], + [9.284631, 45.49703], + [9.284631, 45.492533], + [9.280135, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.49703], + [9.280135, 45.501526], + [9.284631, 45.501526], + [9.284631, 45.49703], + [9.280135, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.501526], + [9.280135, 45.506023], + [9.284631, 45.506023], + [9.284631, 45.501526], + [9.280135, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.506023], + [9.280135, 45.510519], + [9.284631, 45.510519], + [9.284631, 45.506023], + [9.280135, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.510519], + [9.280135, 45.515016], + [9.284631, 45.515016], + [9.284631, 45.510519], + [9.280135, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.515016], + [9.280135, 45.519513], + [9.284631, 45.519513], + [9.284631, 45.515016], + [9.280135, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.519513], + [9.280135, 45.524009], + [9.284631, 45.524009], + [9.284631, 45.519513], + [9.280135, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.524009], + [9.280135, 45.528506], + [9.284631, 45.528506], + [9.284631, 45.524009], + [9.280135, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.528506], + [9.280135, 45.533002], + [9.284631, 45.533002], + [9.284631, 45.528506], + [9.280135, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.533002], + [9.280135, 45.537499], + [9.284631, 45.537499], + [9.284631, 45.533002], + [9.280135, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.537499], + [9.280135, 45.541996], + [9.284631, 45.541996], + [9.284631, 45.537499], + [9.280135, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.541996], + [9.280135, 45.546492], + [9.284631, 45.546492], + [9.284631, 45.541996], + [9.280135, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.546492], + [9.280135, 45.550989], + [9.284631, 45.550989], + [9.284631, 45.546492], + [9.280135, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.550989], + [9.280135, 45.555485], + [9.284631, 45.555485], + [9.284631, 45.550989], + [9.280135, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.555485], + [9.280135, 45.559982], + [9.284631, 45.559982], + [9.284631, 45.555485], + [9.280135, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.559982], + [9.280135, 45.564479], + [9.284631, 45.564479], + [9.284631, 45.559982], + [9.280135, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.564479], + [9.280135, 45.568975], + [9.284631, 45.568975], + [9.284631, 45.564479], + [9.280135, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.568975], + [9.280135, 45.573472], + [9.284631, 45.573472], + [9.284631, 45.568975], + [9.280135, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.573472], + [9.280135, 45.577968], + [9.284631, 45.577968], + [9.284631, 45.573472], + [9.280135, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.577968], + [9.280135, 45.582465], + [9.284631, 45.582465], + [9.284631, 45.577968], + [9.280135, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.582465], + [9.280135, 45.586962], + [9.284631, 45.586962], + [9.284631, 45.582465], + [9.280135, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.586962], + [9.280135, 45.591458], + [9.284631, 45.591458], + [9.284631, 45.586962], + [9.280135, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.591458], + [9.280135, 45.595955], + [9.284631, 45.595955], + [9.284631, 45.591458], + [9.280135, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.595955], + [9.280135, 45.600451], + [9.284631, 45.600451], + [9.284631, 45.595955], + [9.280135, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.600451], + [9.280135, 45.604948], + [9.284631, 45.604948], + [9.284631, 45.600451], + [9.280135, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.604948], + [9.280135, 45.609445], + [9.284631, 45.609445], + [9.284631, 45.604948], + [9.280135, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.609445], + [9.280135, 45.613941], + [9.284631, 45.613941], + [9.284631, 45.609445], + [9.280135, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.613941], + [9.280135, 45.618438], + [9.284631, 45.618438], + [9.284631, 45.613941], + [9.280135, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.618438], + [9.280135, 45.622934], + [9.284631, 45.622934], + [9.284631, 45.618438], + [9.280135, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.622934], + [9.280135, 45.627431], + [9.284631, 45.627431], + [9.284631, 45.622934], + [9.280135, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.627431], + [9.280135, 45.631928], + [9.284631, 45.631928], + [9.284631, 45.627431], + [9.280135, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.631928], + [9.280135, 45.636424], + [9.284631, 45.636424], + [9.284631, 45.631928], + [9.280135, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.339648], + [9.284631, 45.344145], + [9.289128, 45.344145], + [9.289128, 45.339648], + [9.284631, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.344145], + [9.284631, 45.348642], + [9.289128, 45.348642], + [9.289128, 45.344145], + [9.284631, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.348642], + [9.284631, 45.353138], + [9.289128, 45.353138], + [9.289128, 45.348642], + [9.284631, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.353138], + [9.284631, 45.357635], + [9.289128, 45.357635], + [9.289128, 45.353138], + [9.284631, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.357635], + [9.284631, 45.362131], + [9.289128, 45.362131], + [9.289128, 45.357635], + [9.284631, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.362131], + [9.284631, 45.366628], + [9.289128, 45.366628], + [9.289128, 45.362131], + [9.284631, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.366628], + [9.284631, 45.371125], + [9.289128, 45.371125], + [9.289128, 45.366628], + [9.284631, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.371125], + [9.284631, 45.375621], + [9.289128, 45.375621], + [9.289128, 45.371125], + [9.284631, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.375621], + [9.284631, 45.380118], + [9.289128, 45.380118], + [9.289128, 45.375621], + [9.284631, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.380118], + [9.284631, 45.384614], + [9.289128, 45.384614], + [9.289128, 45.380118], + [9.284631, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.384614], + [9.284631, 45.389111], + [9.289128, 45.389111], + [9.289128, 45.384614], + [9.284631, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.389111], + [9.284631, 45.393608], + [9.289128, 45.393608], + [9.289128, 45.389111], + [9.284631, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.393608], + [9.284631, 45.398104], + [9.289128, 45.398104], + [9.289128, 45.393608], + [9.284631, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.398104], + [9.284631, 45.402601], + [9.289128, 45.402601], + [9.289128, 45.398104], + [9.284631, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.402601], + [9.284631, 45.407097], + [9.289128, 45.407097], + [9.289128, 45.402601], + [9.284631, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.407097], + [9.284631, 45.411594], + [9.289128, 45.411594], + [9.289128, 45.407097], + [9.284631, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.411594], + [9.284631, 45.416091], + [9.289128, 45.416091], + [9.289128, 45.411594], + [9.284631, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.416091], + [9.284631, 45.420587], + [9.289128, 45.420587], + [9.289128, 45.416091], + [9.284631, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.420587], + [9.284631, 45.425084], + [9.289128, 45.425084], + [9.289128, 45.420587], + [9.284631, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.425084], + [9.284631, 45.42958], + [9.289128, 45.42958], + [9.289128, 45.425084], + [9.284631, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.42958], + [9.284631, 45.434077], + [9.289128, 45.434077], + [9.289128, 45.42958], + [9.284631, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.434077], + [9.284631, 45.438574], + [9.289128, 45.438574], + [9.289128, 45.434077], + [9.284631, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.438574], + [9.284631, 45.44307], + [9.289128, 45.44307], + [9.289128, 45.438574], + [9.284631, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.44307], + [9.284631, 45.447567], + [9.289128, 45.447567], + [9.289128, 45.44307], + [9.284631, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.447567], + [9.284631, 45.452063], + [9.289128, 45.452063], + [9.289128, 45.447567], + [9.284631, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.452063], + [9.284631, 45.45656], + [9.289128, 45.45656], + [9.289128, 45.452063], + [9.284631, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.45656], + [9.284631, 45.461057], + [9.289128, 45.461057], + [9.289128, 45.45656], + [9.284631, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.461057], + [9.284631, 45.465553], + [9.289128, 45.465553], + [9.289128, 45.461057], + [9.284631, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.465553], + [9.284631, 45.47005], + [9.289128, 45.47005], + [9.289128, 45.465553], + [9.284631, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.47005], + [9.284631, 45.474547], + [9.289128, 45.474547], + [9.289128, 45.47005], + [9.284631, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.474547], + [9.284631, 45.479043], + [9.289128, 45.479043], + [9.289128, 45.474547], + [9.284631, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.479043], + [9.284631, 45.48354], + [9.289128, 45.48354], + [9.289128, 45.479043], + [9.284631, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.48354], + [9.284631, 45.488036], + [9.289128, 45.488036], + [9.289128, 45.48354], + [9.284631, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.488036], + [9.284631, 45.492533], + [9.289128, 45.492533], + [9.289128, 45.488036], + [9.284631, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.492533], + [9.284631, 45.49703], + [9.289128, 45.49703], + [9.289128, 45.492533], + [9.284631, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.49703], + [9.284631, 45.501526], + [9.289128, 45.501526], + [9.289128, 45.49703], + [9.284631, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.501526], + [9.284631, 45.506023], + [9.289128, 45.506023], + [9.289128, 45.501526], + [9.284631, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.506023], + [9.284631, 45.510519], + [9.289128, 45.510519], + [9.289128, 45.506023], + [9.284631, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.510519], + [9.284631, 45.515016], + [9.289128, 45.515016], + [9.289128, 45.510519], + [9.284631, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.515016], + [9.284631, 45.519513], + [9.289128, 45.519513], + [9.289128, 45.515016], + [9.284631, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.519513], + [9.284631, 45.524009], + [9.289128, 45.524009], + [9.289128, 45.519513], + [9.284631, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.524009], + [9.284631, 45.528506], + [9.289128, 45.528506], + [9.289128, 45.524009], + [9.284631, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.528506], + [9.284631, 45.533002], + [9.289128, 45.533002], + [9.289128, 45.528506], + [9.284631, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.533002], + [9.284631, 45.537499], + [9.289128, 45.537499], + [9.289128, 45.533002], + [9.284631, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.537499], + [9.284631, 45.541996], + [9.289128, 45.541996], + [9.289128, 45.537499], + [9.284631, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.541996], + [9.284631, 45.546492], + [9.289128, 45.546492], + [9.289128, 45.541996], + [9.284631, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.546492], + [9.284631, 45.550989], + [9.289128, 45.550989], + [9.289128, 45.546492], + [9.284631, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.550989], + [9.284631, 45.555485], + [9.289128, 45.555485], + [9.289128, 45.550989], + [9.284631, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.555485], + [9.284631, 45.559982], + [9.289128, 45.559982], + [9.289128, 45.555485], + [9.284631, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.559982], + [9.284631, 45.564479], + [9.289128, 45.564479], + [9.289128, 45.559982], + [9.284631, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.564479], + [9.284631, 45.568975], + [9.289128, 45.568975], + [9.289128, 45.564479], + [9.284631, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.568975], + [9.284631, 45.573472], + [9.289128, 45.573472], + [9.289128, 45.568975], + [9.284631, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.573472], + [9.284631, 45.577968], + [9.289128, 45.577968], + [9.289128, 45.573472], + [9.284631, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.577968], + [9.284631, 45.582465], + [9.289128, 45.582465], + [9.289128, 45.577968], + [9.284631, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.582465], + [9.284631, 45.586962], + [9.289128, 45.586962], + [9.289128, 45.582465], + [9.284631, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.586962], + [9.284631, 45.591458], + [9.289128, 45.591458], + [9.289128, 45.586962], + [9.284631, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.591458], + [9.284631, 45.595955], + [9.289128, 45.595955], + [9.289128, 45.591458], + [9.284631, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.595955], + [9.284631, 45.600451], + [9.289128, 45.600451], + [9.289128, 45.595955], + [9.284631, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.600451], + [9.284631, 45.604948], + [9.289128, 45.604948], + [9.289128, 45.600451], + [9.284631, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.604948], + [9.284631, 45.609445], + [9.289128, 45.609445], + [9.289128, 45.604948], + [9.284631, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.609445], + [9.284631, 45.613941], + [9.289128, 45.613941], + [9.289128, 45.609445], + [9.284631, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.613941], + [9.284631, 45.618438], + [9.289128, 45.618438], + [9.289128, 45.613941], + [9.284631, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.618438], + [9.284631, 45.622934], + [9.289128, 45.622934], + [9.289128, 45.618438], + [9.284631, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.622934], + [9.284631, 45.627431], + [9.289128, 45.627431], + [9.289128, 45.622934], + [9.284631, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.627431], + [9.284631, 45.631928], + [9.289128, 45.631928], + [9.289128, 45.627431], + [9.284631, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.631928], + [9.284631, 45.636424], + [9.289128, 45.636424], + [9.289128, 45.631928], + [9.284631, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.339648], + [9.289128, 45.344145], + [9.293625, 45.344145], + [9.293625, 45.339648], + [9.289128, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.344145], + [9.289128, 45.348642], + [9.293625, 45.348642], + [9.293625, 45.344145], + [9.289128, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.348642], + [9.289128, 45.353138], + [9.293625, 45.353138], + [9.293625, 45.348642], + [9.289128, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.353138], + [9.289128, 45.357635], + [9.293625, 45.357635], + [9.293625, 45.353138], + [9.289128, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.357635], + [9.289128, 45.362131], + [9.293625, 45.362131], + [9.293625, 45.357635], + [9.289128, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.362131], + [9.289128, 45.366628], + [9.293625, 45.366628], + [9.293625, 45.362131], + [9.289128, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.366628], + [9.289128, 45.371125], + [9.293625, 45.371125], + [9.293625, 45.366628], + [9.289128, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.371125], + [9.289128, 45.375621], + [9.293625, 45.375621], + [9.293625, 45.371125], + [9.289128, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.375621], + [9.289128, 45.380118], + [9.293625, 45.380118], + [9.293625, 45.375621], + [9.289128, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.380118], + [9.289128, 45.384614], + [9.293625, 45.384614], + [9.293625, 45.380118], + [9.289128, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.384614], + [9.289128, 45.389111], + [9.293625, 45.389111], + [9.293625, 45.384614], + [9.289128, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.389111], + [9.289128, 45.393608], + [9.293625, 45.393608], + [9.293625, 45.389111], + [9.289128, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.393608], + [9.289128, 45.398104], + [9.293625, 45.398104], + [9.293625, 45.393608], + [9.289128, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.398104], + [9.289128, 45.402601], + [9.293625, 45.402601], + [9.293625, 45.398104], + [9.289128, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.402601], + [9.289128, 45.407097], + [9.293625, 45.407097], + [9.293625, 45.402601], + [9.289128, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.407097], + [9.289128, 45.411594], + [9.293625, 45.411594], + [9.293625, 45.407097], + [9.289128, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.411594], + [9.289128, 45.416091], + [9.293625, 45.416091], + [9.293625, 45.411594], + [9.289128, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.416091], + [9.289128, 45.420587], + [9.293625, 45.420587], + [9.293625, 45.416091], + [9.289128, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.420587], + [9.289128, 45.425084], + [9.293625, 45.425084], + [9.293625, 45.420587], + [9.289128, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.425084], + [9.289128, 45.42958], + [9.293625, 45.42958], + [9.293625, 45.425084], + [9.289128, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.42958], + [9.289128, 45.434077], + [9.293625, 45.434077], + [9.293625, 45.42958], + [9.289128, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.434077], + [9.289128, 45.438574], + [9.293625, 45.438574], + [9.293625, 45.434077], + [9.289128, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.438574], + [9.289128, 45.44307], + [9.293625, 45.44307], + [9.293625, 45.438574], + [9.289128, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.44307], + [9.289128, 45.447567], + [9.293625, 45.447567], + [9.293625, 45.44307], + [9.289128, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.447567], + [9.289128, 45.452063], + [9.293625, 45.452063], + [9.293625, 45.447567], + [9.289128, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.452063], + [9.289128, 45.45656], + [9.293625, 45.45656], + [9.293625, 45.452063], + [9.289128, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.45656], + [9.289128, 45.461057], + [9.293625, 45.461057], + [9.293625, 45.45656], + [9.289128, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.461057], + [9.289128, 45.465553], + [9.293625, 45.465553], + [9.293625, 45.461057], + [9.289128, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.465553], + [9.289128, 45.47005], + [9.293625, 45.47005], + [9.293625, 45.465553], + [9.289128, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.47005], + [9.289128, 45.474547], + [9.293625, 45.474547], + [9.293625, 45.47005], + [9.289128, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.474547], + [9.289128, 45.479043], + [9.293625, 45.479043], + [9.293625, 45.474547], + [9.289128, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.479043], + [9.289128, 45.48354], + [9.293625, 45.48354], + [9.293625, 45.479043], + [9.289128, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.48354], + [9.289128, 45.488036], + [9.293625, 45.488036], + [9.293625, 45.48354], + [9.289128, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.488036], + [9.289128, 45.492533], + [9.293625, 45.492533], + [9.293625, 45.488036], + [9.289128, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.492533], + [9.289128, 45.49703], + [9.293625, 45.49703], + [9.293625, 45.492533], + [9.289128, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.49703], + [9.289128, 45.501526], + [9.293625, 45.501526], + [9.293625, 45.49703], + [9.289128, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.501526], + [9.289128, 45.506023], + [9.293625, 45.506023], + [9.293625, 45.501526], + [9.289128, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.506023], + [9.289128, 45.510519], + [9.293625, 45.510519], + [9.293625, 45.506023], + [9.289128, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.510519], + [9.289128, 45.515016], + [9.293625, 45.515016], + [9.293625, 45.510519], + [9.289128, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.515016], + [9.289128, 45.519513], + [9.293625, 45.519513], + [9.293625, 45.515016], + [9.289128, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.519513], + [9.289128, 45.524009], + [9.293625, 45.524009], + [9.293625, 45.519513], + [9.289128, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.524009], + [9.289128, 45.528506], + [9.293625, 45.528506], + [9.293625, 45.524009], + [9.289128, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.528506], + [9.289128, 45.533002], + [9.293625, 45.533002], + [9.293625, 45.528506], + [9.289128, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.533002], + [9.289128, 45.537499], + [9.293625, 45.537499], + [9.293625, 45.533002], + [9.289128, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.537499], + [9.289128, 45.541996], + [9.293625, 45.541996], + [9.293625, 45.537499], + [9.289128, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.541996], + [9.289128, 45.546492], + [9.293625, 45.546492], + [9.293625, 45.541996], + [9.289128, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.546492], + [9.289128, 45.550989], + [9.293625, 45.550989], + [9.293625, 45.546492], + [9.289128, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.550989], + [9.289128, 45.555485], + [9.293625, 45.555485], + [9.293625, 45.550989], + [9.289128, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.555485], + [9.289128, 45.559982], + [9.293625, 45.559982], + [9.293625, 45.555485], + [9.289128, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.559982], + [9.289128, 45.564479], + [9.293625, 45.564479], + [9.293625, 45.559982], + [9.289128, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.564479], + [9.289128, 45.568975], + [9.293625, 45.568975], + [9.293625, 45.564479], + [9.289128, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.568975], + [9.289128, 45.573472], + [9.293625, 45.573472], + [9.293625, 45.568975], + [9.289128, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.573472], + [9.289128, 45.577968], + [9.293625, 45.577968], + [9.293625, 45.573472], + [9.289128, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.577968], + [9.289128, 45.582465], + [9.293625, 45.582465], + [9.293625, 45.577968], + [9.289128, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.582465], + [9.289128, 45.586962], + [9.293625, 45.586962], + [9.293625, 45.582465], + [9.289128, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.586962], + [9.289128, 45.591458], + [9.293625, 45.591458], + [9.293625, 45.586962], + [9.289128, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.591458], + [9.289128, 45.595955], + [9.293625, 45.595955], + [9.293625, 45.591458], + [9.289128, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.595955], + [9.289128, 45.600451], + [9.293625, 45.600451], + [9.293625, 45.595955], + [9.289128, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.600451], + [9.289128, 45.604948], + [9.293625, 45.604948], + [9.293625, 45.600451], + [9.289128, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.604948], + [9.289128, 45.609445], + [9.293625, 45.609445], + [9.293625, 45.604948], + [9.289128, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.609445], + [9.289128, 45.613941], + [9.293625, 45.613941], + [9.293625, 45.609445], + [9.289128, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.613941], + [9.289128, 45.618438], + [9.293625, 45.618438], + [9.293625, 45.613941], + [9.289128, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.618438], + [9.289128, 45.622934], + [9.293625, 45.622934], + [9.293625, 45.618438], + [9.289128, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.622934], + [9.289128, 45.627431], + [9.293625, 45.627431], + [9.293625, 45.622934], + [9.289128, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.627431], + [9.289128, 45.631928], + [9.293625, 45.631928], + [9.293625, 45.627431], + [9.289128, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.631928], + [9.289128, 45.636424], + [9.293625, 45.636424], + [9.293625, 45.631928], + [9.289128, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.339648], + [9.293625, 45.344145], + [9.298121, 45.344145], + [9.298121, 45.339648], + [9.293625, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.344145], + [9.293625, 45.348642], + [9.298121, 45.348642], + [9.298121, 45.344145], + [9.293625, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.348642], + [9.293625, 45.353138], + [9.298121, 45.353138], + [9.298121, 45.348642], + [9.293625, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.353138], + [9.293625, 45.357635], + [9.298121, 45.357635], + [9.298121, 45.353138], + [9.293625, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.357635], + [9.293625, 45.362131], + [9.298121, 45.362131], + [9.298121, 45.357635], + [9.293625, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.362131], + [9.293625, 45.366628], + [9.298121, 45.366628], + [9.298121, 45.362131], + [9.293625, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.366628], + [9.293625, 45.371125], + [9.298121, 45.371125], + [9.298121, 45.366628], + [9.293625, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.371125], + [9.293625, 45.375621], + [9.298121, 45.375621], + [9.298121, 45.371125], + [9.293625, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.375621], + [9.293625, 45.380118], + [9.298121, 45.380118], + [9.298121, 45.375621], + [9.293625, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.380118], + [9.293625, 45.384614], + [9.298121, 45.384614], + [9.298121, 45.380118], + [9.293625, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.384614], + [9.293625, 45.389111], + [9.298121, 45.389111], + [9.298121, 45.384614], + [9.293625, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.389111], + [9.293625, 45.393608], + [9.298121, 45.393608], + [9.298121, 45.389111], + [9.293625, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.393608], + [9.293625, 45.398104], + [9.298121, 45.398104], + [9.298121, 45.393608], + [9.293625, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.398104], + [9.293625, 45.402601], + [9.298121, 45.402601], + [9.298121, 45.398104], + [9.293625, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.402601], + [9.293625, 45.407097], + [9.298121, 45.407097], + [9.298121, 45.402601], + [9.293625, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.407097], + [9.293625, 45.411594], + [9.298121, 45.411594], + [9.298121, 45.407097], + [9.293625, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.411594], + [9.293625, 45.416091], + [9.298121, 45.416091], + [9.298121, 45.411594], + [9.293625, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.416091], + [9.293625, 45.420587], + [9.298121, 45.420587], + [9.298121, 45.416091], + [9.293625, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.420587], + [9.293625, 45.425084], + [9.298121, 45.425084], + [9.298121, 45.420587], + [9.293625, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.425084], + [9.293625, 45.42958], + [9.298121, 45.42958], + [9.298121, 45.425084], + [9.293625, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.42958], + [9.293625, 45.434077], + [9.298121, 45.434077], + [9.298121, 45.42958], + [9.293625, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.434077], + [9.293625, 45.438574], + [9.298121, 45.438574], + [9.298121, 45.434077], + [9.293625, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.438574], + [9.293625, 45.44307], + [9.298121, 45.44307], + [9.298121, 45.438574], + [9.293625, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.44307], + [9.293625, 45.447567], + [9.298121, 45.447567], + [9.298121, 45.44307], + [9.293625, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.447567], + [9.293625, 45.452063], + [9.298121, 45.452063], + [9.298121, 45.447567], + [9.293625, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.452063], + [9.293625, 45.45656], + [9.298121, 45.45656], + [9.298121, 45.452063], + [9.293625, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.45656], + [9.293625, 45.461057], + [9.298121, 45.461057], + [9.298121, 45.45656], + [9.293625, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.461057], + [9.293625, 45.465553], + [9.298121, 45.465553], + [9.298121, 45.461057], + [9.293625, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.465553], + [9.293625, 45.47005], + [9.298121, 45.47005], + [9.298121, 45.465553], + [9.293625, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.47005], + [9.293625, 45.474547], + [9.298121, 45.474547], + [9.298121, 45.47005], + [9.293625, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.474547], + [9.293625, 45.479043], + [9.298121, 45.479043], + [9.298121, 45.474547], + [9.293625, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.479043], + [9.293625, 45.48354], + [9.298121, 45.48354], + [9.298121, 45.479043], + [9.293625, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.48354], + [9.293625, 45.488036], + [9.298121, 45.488036], + [9.298121, 45.48354], + [9.293625, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.488036], + [9.293625, 45.492533], + [9.298121, 45.492533], + [9.298121, 45.488036], + [9.293625, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.492533], + [9.293625, 45.49703], + [9.298121, 45.49703], + [9.298121, 45.492533], + [9.293625, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.49703], + [9.293625, 45.501526], + [9.298121, 45.501526], + [9.298121, 45.49703], + [9.293625, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.501526], + [9.293625, 45.506023], + [9.298121, 45.506023], + [9.298121, 45.501526], + [9.293625, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.506023], + [9.293625, 45.510519], + [9.298121, 45.510519], + [9.298121, 45.506023], + [9.293625, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.510519], + [9.293625, 45.515016], + [9.298121, 45.515016], + [9.298121, 45.510519], + [9.293625, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.515016], + [9.293625, 45.519513], + [9.298121, 45.519513], + [9.298121, 45.515016], + [9.293625, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.519513], + [9.293625, 45.524009], + [9.298121, 45.524009], + [9.298121, 45.519513], + [9.293625, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.524009], + [9.293625, 45.528506], + [9.298121, 45.528506], + [9.298121, 45.524009], + [9.293625, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.528506], + [9.293625, 45.533002], + [9.298121, 45.533002], + [9.298121, 45.528506], + [9.293625, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.533002], + [9.293625, 45.537499], + [9.298121, 45.537499], + [9.298121, 45.533002], + [9.293625, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.537499], + [9.293625, 45.541996], + [9.298121, 45.541996], + [9.298121, 45.537499], + [9.293625, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.541996], + [9.293625, 45.546492], + [9.298121, 45.546492], + [9.298121, 45.541996], + [9.293625, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.546492], + [9.293625, 45.550989], + [9.298121, 45.550989], + [9.298121, 45.546492], + [9.293625, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.550989], + [9.293625, 45.555485], + [9.298121, 45.555485], + [9.298121, 45.550989], + [9.293625, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.555485], + [9.293625, 45.559982], + [9.298121, 45.559982], + [9.298121, 45.555485], + [9.293625, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.559982], + [9.293625, 45.564479], + [9.298121, 45.564479], + [9.298121, 45.559982], + [9.293625, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.564479], + [9.293625, 45.568975], + [9.298121, 45.568975], + [9.298121, 45.564479], + [9.293625, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.568975], + [9.293625, 45.573472], + [9.298121, 45.573472], + [9.298121, 45.568975], + [9.293625, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.573472], + [9.293625, 45.577968], + [9.298121, 45.577968], + [9.298121, 45.573472], + [9.293625, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.577968], + [9.293625, 45.582465], + [9.298121, 45.582465], + [9.298121, 45.577968], + [9.293625, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.582465], + [9.293625, 45.586962], + [9.298121, 45.586962], + [9.298121, 45.582465], + [9.293625, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.586962], + [9.293625, 45.591458], + [9.298121, 45.591458], + [9.298121, 45.586962], + [9.293625, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.591458], + [9.293625, 45.595955], + [9.298121, 45.595955], + [9.298121, 45.591458], + [9.293625, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.595955], + [9.293625, 45.600451], + [9.298121, 45.600451], + [9.298121, 45.595955], + [9.293625, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.600451], + [9.293625, 45.604948], + [9.298121, 45.604948], + [9.298121, 45.600451], + [9.293625, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.604948], + [9.293625, 45.609445], + [9.298121, 45.609445], + [9.298121, 45.604948], + [9.293625, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.609445], + [9.293625, 45.613941], + [9.298121, 45.613941], + [9.298121, 45.609445], + [9.293625, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.613941], + [9.293625, 45.618438], + [9.298121, 45.618438], + [9.298121, 45.613941], + [9.293625, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.618438], + [9.293625, 45.622934], + [9.298121, 45.622934], + [9.298121, 45.618438], + [9.293625, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.622934], + [9.293625, 45.627431], + [9.298121, 45.627431], + [9.298121, 45.622934], + [9.293625, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.627431], + [9.293625, 45.631928], + [9.298121, 45.631928], + [9.298121, 45.627431], + [9.293625, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.631928], + [9.293625, 45.636424], + [9.298121, 45.636424], + [9.298121, 45.631928], + [9.293625, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.339648], + [9.298121, 45.344145], + [9.302618, 45.344145], + [9.302618, 45.339648], + [9.298121, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.344145], + [9.298121, 45.348642], + [9.302618, 45.348642], + [9.302618, 45.344145], + [9.298121, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.348642], + [9.298121, 45.353138], + [9.302618, 45.353138], + [9.302618, 45.348642], + [9.298121, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.353138], + [9.298121, 45.357635], + [9.302618, 45.357635], + [9.302618, 45.353138], + [9.298121, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.357635], + [9.298121, 45.362131], + [9.302618, 45.362131], + [9.302618, 45.357635], + [9.298121, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.362131], + [9.298121, 45.366628], + [9.302618, 45.366628], + [9.302618, 45.362131], + [9.298121, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.366628], + [9.298121, 45.371125], + [9.302618, 45.371125], + [9.302618, 45.366628], + [9.298121, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.371125], + [9.298121, 45.375621], + [9.302618, 45.375621], + [9.302618, 45.371125], + [9.298121, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.375621], + [9.298121, 45.380118], + [9.302618, 45.380118], + [9.302618, 45.375621], + [9.298121, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.380118], + [9.298121, 45.384614], + [9.302618, 45.384614], + [9.302618, 45.380118], + [9.298121, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.384614], + [9.298121, 45.389111], + [9.302618, 45.389111], + [9.302618, 45.384614], + [9.298121, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.389111], + [9.298121, 45.393608], + [9.302618, 45.393608], + [9.302618, 45.389111], + [9.298121, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.393608], + [9.298121, 45.398104], + [9.302618, 45.398104], + [9.302618, 45.393608], + [9.298121, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.398104], + [9.298121, 45.402601], + [9.302618, 45.402601], + [9.302618, 45.398104], + [9.298121, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.402601], + [9.298121, 45.407097], + [9.302618, 45.407097], + [9.302618, 45.402601], + [9.298121, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.407097], + [9.298121, 45.411594], + [9.302618, 45.411594], + [9.302618, 45.407097], + [9.298121, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.411594], + [9.298121, 45.416091], + [9.302618, 45.416091], + [9.302618, 45.411594], + [9.298121, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.416091], + [9.298121, 45.420587], + [9.302618, 45.420587], + [9.302618, 45.416091], + [9.298121, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.420587], + [9.298121, 45.425084], + [9.302618, 45.425084], + [9.302618, 45.420587], + [9.298121, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.425084], + [9.298121, 45.42958], + [9.302618, 45.42958], + [9.302618, 45.425084], + [9.298121, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.42958], + [9.298121, 45.434077], + [9.302618, 45.434077], + [9.302618, 45.42958], + [9.298121, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.434077], + [9.298121, 45.438574], + [9.302618, 45.438574], + [9.302618, 45.434077], + [9.298121, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.438574], + [9.298121, 45.44307], + [9.302618, 45.44307], + [9.302618, 45.438574], + [9.298121, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.44307], + [9.298121, 45.447567], + [9.302618, 45.447567], + [9.302618, 45.44307], + [9.298121, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.447567], + [9.298121, 45.452063], + [9.302618, 45.452063], + [9.302618, 45.447567], + [9.298121, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.452063], + [9.298121, 45.45656], + [9.302618, 45.45656], + [9.302618, 45.452063], + [9.298121, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.45656], + [9.298121, 45.461057], + [9.302618, 45.461057], + [9.302618, 45.45656], + [9.298121, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.461057], + [9.298121, 45.465553], + [9.302618, 45.465553], + [9.302618, 45.461057], + [9.298121, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.465553], + [9.298121, 45.47005], + [9.302618, 45.47005], + [9.302618, 45.465553], + [9.298121, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.47005], + [9.298121, 45.474547], + [9.302618, 45.474547], + [9.302618, 45.47005], + [9.298121, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.474547], + [9.298121, 45.479043], + [9.302618, 45.479043], + [9.302618, 45.474547], + [9.298121, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.479043], + [9.298121, 45.48354], + [9.302618, 45.48354], + [9.302618, 45.479043], + [9.298121, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.48354], + [9.298121, 45.488036], + [9.302618, 45.488036], + [9.302618, 45.48354], + [9.298121, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.488036], + [9.298121, 45.492533], + [9.302618, 45.492533], + [9.302618, 45.488036], + [9.298121, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.492533], + [9.298121, 45.49703], + [9.302618, 45.49703], + [9.302618, 45.492533], + [9.298121, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.49703], + [9.298121, 45.501526], + [9.302618, 45.501526], + [9.302618, 45.49703], + [9.298121, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.501526], + [9.298121, 45.506023], + [9.302618, 45.506023], + [9.302618, 45.501526], + [9.298121, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.506023], + [9.298121, 45.510519], + [9.302618, 45.510519], + [9.302618, 45.506023], + [9.298121, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.510519], + [9.298121, 45.515016], + [9.302618, 45.515016], + [9.302618, 45.510519], + [9.298121, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.515016], + [9.298121, 45.519513], + [9.302618, 45.519513], + [9.302618, 45.515016], + [9.298121, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.519513], + [9.298121, 45.524009], + [9.302618, 45.524009], + [9.302618, 45.519513], + [9.298121, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.524009], + [9.298121, 45.528506], + [9.302618, 45.528506], + [9.302618, 45.524009], + [9.298121, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.528506], + [9.298121, 45.533002], + [9.302618, 45.533002], + [9.302618, 45.528506], + [9.298121, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.533002], + [9.298121, 45.537499], + [9.302618, 45.537499], + [9.302618, 45.533002], + [9.298121, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.537499], + [9.298121, 45.541996], + [9.302618, 45.541996], + [9.302618, 45.537499], + [9.298121, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.541996], + [9.298121, 45.546492], + [9.302618, 45.546492], + [9.302618, 45.541996], + [9.298121, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.546492], + [9.298121, 45.550989], + [9.302618, 45.550989], + [9.302618, 45.546492], + [9.298121, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.550989], + [9.298121, 45.555485], + [9.302618, 45.555485], + [9.302618, 45.550989], + [9.298121, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.555485], + [9.298121, 45.559982], + [9.302618, 45.559982], + [9.302618, 45.555485], + [9.298121, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.559982], + [9.298121, 45.564479], + [9.302618, 45.564479], + [9.302618, 45.559982], + [9.298121, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.564479], + [9.298121, 45.568975], + [9.302618, 45.568975], + [9.302618, 45.564479], + [9.298121, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.568975], + [9.298121, 45.573472], + [9.302618, 45.573472], + [9.302618, 45.568975], + [9.298121, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.573472], + [9.298121, 45.577968], + [9.302618, 45.577968], + [9.302618, 45.573472], + [9.298121, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.577968], + [9.298121, 45.582465], + [9.302618, 45.582465], + [9.302618, 45.577968], + [9.298121, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.582465], + [9.298121, 45.586962], + [9.302618, 45.586962], + [9.302618, 45.582465], + [9.298121, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.586962], + [9.298121, 45.591458], + [9.302618, 45.591458], + [9.302618, 45.586962], + [9.298121, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.591458], + [9.298121, 45.595955], + [9.302618, 45.595955], + [9.302618, 45.591458], + [9.298121, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.595955], + [9.298121, 45.600451], + [9.302618, 45.600451], + [9.302618, 45.595955], + [9.298121, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.600451], + [9.298121, 45.604948], + [9.302618, 45.604948], + [9.302618, 45.600451], + [9.298121, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.604948], + [9.298121, 45.609445], + [9.302618, 45.609445], + [9.302618, 45.604948], + [9.298121, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.609445], + [9.298121, 45.613941], + [9.302618, 45.613941], + [9.302618, 45.609445], + [9.298121, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.613941], + [9.298121, 45.618438], + [9.302618, 45.618438], + [9.302618, 45.613941], + [9.298121, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.618438], + [9.298121, 45.622934], + [9.302618, 45.622934], + [9.302618, 45.618438], + [9.298121, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.622934], + [9.298121, 45.627431], + [9.302618, 45.627431], + [9.302618, 45.622934], + [9.298121, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.627431], + [9.298121, 45.631928], + [9.302618, 45.631928], + [9.302618, 45.627431], + [9.298121, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.631928], + [9.298121, 45.636424], + [9.302618, 45.636424], + [9.302618, 45.631928], + [9.298121, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.339648], + [9.302618, 45.344145], + [9.307114, 45.344145], + [9.307114, 45.339648], + [9.302618, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.344145], + [9.302618, 45.348642], + [9.307114, 45.348642], + [9.307114, 45.344145], + [9.302618, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.348642], + [9.302618, 45.353138], + [9.307114, 45.353138], + [9.307114, 45.348642], + [9.302618, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.353138], + [9.302618, 45.357635], + [9.307114, 45.357635], + [9.307114, 45.353138], + [9.302618, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.357635], + [9.302618, 45.362131], + [9.307114, 45.362131], + [9.307114, 45.357635], + [9.302618, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.362131], + [9.302618, 45.366628], + [9.307114, 45.366628], + [9.307114, 45.362131], + [9.302618, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.366628], + [9.302618, 45.371125], + [9.307114, 45.371125], + [9.307114, 45.366628], + [9.302618, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.371125], + [9.302618, 45.375621], + [9.307114, 45.375621], + [9.307114, 45.371125], + [9.302618, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.375621], + [9.302618, 45.380118], + [9.307114, 45.380118], + [9.307114, 45.375621], + [9.302618, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.380118], + [9.302618, 45.384614], + [9.307114, 45.384614], + [9.307114, 45.380118], + [9.302618, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.384614], + [9.302618, 45.389111], + [9.307114, 45.389111], + [9.307114, 45.384614], + [9.302618, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.389111], + [9.302618, 45.393608], + [9.307114, 45.393608], + [9.307114, 45.389111], + [9.302618, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.393608], + [9.302618, 45.398104], + [9.307114, 45.398104], + [9.307114, 45.393608], + [9.302618, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.398104], + [9.302618, 45.402601], + [9.307114, 45.402601], + [9.307114, 45.398104], + [9.302618, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.402601], + [9.302618, 45.407097], + [9.307114, 45.407097], + [9.307114, 45.402601], + [9.302618, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.407097], + [9.302618, 45.411594], + [9.307114, 45.411594], + [9.307114, 45.407097], + [9.302618, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.411594], + [9.302618, 45.416091], + [9.307114, 45.416091], + [9.307114, 45.411594], + [9.302618, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.416091], + [9.302618, 45.420587], + [9.307114, 45.420587], + [9.307114, 45.416091], + [9.302618, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.420587], + [9.302618, 45.425084], + [9.307114, 45.425084], + [9.307114, 45.420587], + [9.302618, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.425084], + [9.302618, 45.42958], + [9.307114, 45.42958], + [9.307114, 45.425084], + [9.302618, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.42958], + [9.302618, 45.434077], + [9.307114, 45.434077], + [9.307114, 45.42958], + [9.302618, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.434077], + [9.302618, 45.438574], + [9.307114, 45.438574], + [9.307114, 45.434077], + [9.302618, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.438574], + [9.302618, 45.44307], + [9.307114, 45.44307], + [9.307114, 45.438574], + [9.302618, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.44307], + [9.302618, 45.447567], + [9.307114, 45.447567], + [9.307114, 45.44307], + [9.302618, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.447567], + [9.302618, 45.452063], + [9.307114, 45.452063], + [9.307114, 45.447567], + [9.302618, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.452063], + [9.302618, 45.45656], + [9.307114, 45.45656], + [9.307114, 45.452063], + [9.302618, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.45656], + [9.302618, 45.461057], + [9.307114, 45.461057], + [9.307114, 45.45656], + [9.302618, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.461057], + [9.302618, 45.465553], + [9.307114, 45.465553], + [9.307114, 45.461057], + [9.302618, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.465553], + [9.302618, 45.47005], + [9.307114, 45.47005], + [9.307114, 45.465553], + [9.302618, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.47005], + [9.302618, 45.474547], + [9.307114, 45.474547], + [9.307114, 45.47005], + [9.302618, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.474547], + [9.302618, 45.479043], + [9.307114, 45.479043], + [9.307114, 45.474547], + [9.302618, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.479043], + [9.302618, 45.48354], + [9.307114, 45.48354], + [9.307114, 45.479043], + [9.302618, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.48354], + [9.302618, 45.488036], + [9.307114, 45.488036], + [9.307114, 45.48354], + [9.302618, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.488036], + [9.302618, 45.492533], + [9.307114, 45.492533], + [9.307114, 45.488036], + [9.302618, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.492533], + [9.302618, 45.49703], + [9.307114, 45.49703], + [9.307114, 45.492533], + [9.302618, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.49703], + [9.302618, 45.501526], + [9.307114, 45.501526], + [9.307114, 45.49703], + [9.302618, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.501526], + [9.302618, 45.506023], + [9.307114, 45.506023], + [9.307114, 45.501526], + [9.302618, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.506023], + [9.302618, 45.510519], + [9.307114, 45.510519], + [9.307114, 45.506023], + [9.302618, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.510519], + [9.302618, 45.515016], + [9.307114, 45.515016], + [9.307114, 45.510519], + [9.302618, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.515016], + [9.302618, 45.519513], + [9.307114, 45.519513], + [9.307114, 45.515016], + [9.302618, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.519513], + [9.302618, 45.524009], + [9.307114, 45.524009], + [9.307114, 45.519513], + [9.302618, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.524009], + [9.302618, 45.528506], + [9.307114, 45.528506], + [9.307114, 45.524009], + [9.302618, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.528506], + [9.302618, 45.533002], + [9.307114, 45.533002], + [9.307114, 45.528506], + [9.302618, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.533002], + [9.302618, 45.537499], + [9.307114, 45.537499], + [9.307114, 45.533002], + [9.302618, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.537499], + [9.302618, 45.541996], + [9.307114, 45.541996], + [9.307114, 45.537499], + [9.302618, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.541996], + [9.302618, 45.546492], + [9.307114, 45.546492], + [9.307114, 45.541996], + [9.302618, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.546492], + [9.302618, 45.550989], + [9.307114, 45.550989], + [9.307114, 45.546492], + [9.302618, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.550989], + [9.302618, 45.555485], + [9.307114, 45.555485], + [9.307114, 45.550989], + [9.302618, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.555485], + [9.302618, 45.559982], + [9.307114, 45.559982], + [9.307114, 45.555485], + [9.302618, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.559982], + [9.302618, 45.564479], + [9.307114, 45.564479], + [9.307114, 45.559982], + [9.302618, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.564479], + [9.302618, 45.568975], + [9.307114, 45.568975], + [9.307114, 45.564479], + [9.302618, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.568975], + [9.302618, 45.573472], + [9.307114, 45.573472], + [9.307114, 45.568975], + [9.302618, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.573472], + [9.302618, 45.577968], + [9.307114, 45.577968], + [9.307114, 45.573472], + [9.302618, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.577968], + [9.302618, 45.582465], + [9.307114, 45.582465], + [9.307114, 45.577968], + [9.302618, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.582465], + [9.302618, 45.586962], + [9.307114, 45.586962], + [9.307114, 45.582465], + [9.302618, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.586962], + [9.302618, 45.591458], + [9.307114, 45.591458], + [9.307114, 45.586962], + [9.302618, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.591458], + [9.302618, 45.595955], + [9.307114, 45.595955], + [9.307114, 45.591458], + [9.302618, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.595955], + [9.302618, 45.600451], + [9.307114, 45.600451], + [9.307114, 45.595955], + [9.302618, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.600451], + [9.302618, 45.604948], + [9.307114, 45.604948], + [9.307114, 45.600451], + [9.302618, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.604948], + [9.302618, 45.609445], + [9.307114, 45.609445], + [9.307114, 45.604948], + [9.302618, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.609445], + [9.302618, 45.613941], + [9.307114, 45.613941], + [9.307114, 45.609445], + [9.302618, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.613941], + [9.302618, 45.618438], + [9.307114, 45.618438], + [9.307114, 45.613941], + [9.302618, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.618438], + [9.302618, 45.622934], + [9.307114, 45.622934], + [9.307114, 45.618438], + [9.302618, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.622934], + [9.302618, 45.627431], + [9.307114, 45.627431], + [9.307114, 45.622934], + [9.302618, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.627431], + [9.302618, 45.631928], + [9.307114, 45.631928], + [9.307114, 45.627431], + [9.302618, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.631928], + [9.302618, 45.636424], + [9.307114, 45.636424], + [9.307114, 45.631928], + [9.302618, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.339648], + [9.307114, 45.344145], + [9.311611, 45.344145], + [9.311611, 45.339648], + [9.307114, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.344145], + [9.307114, 45.348642], + [9.311611, 45.348642], + [9.311611, 45.344145], + [9.307114, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.348642], + [9.307114, 45.353138], + [9.311611, 45.353138], + [9.311611, 45.348642], + [9.307114, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.353138], + [9.307114, 45.357635], + [9.311611, 45.357635], + [9.311611, 45.353138], + [9.307114, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.357635], + [9.307114, 45.362131], + [9.311611, 45.362131], + [9.311611, 45.357635], + [9.307114, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.362131], + [9.307114, 45.366628], + [9.311611, 45.366628], + [9.311611, 45.362131], + [9.307114, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.366628], + [9.307114, 45.371125], + [9.311611, 45.371125], + [9.311611, 45.366628], + [9.307114, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.371125], + [9.307114, 45.375621], + [9.311611, 45.375621], + [9.311611, 45.371125], + [9.307114, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.375621], + [9.307114, 45.380118], + [9.311611, 45.380118], + [9.311611, 45.375621], + [9.307114, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.380118], + [9.307114, 45.384614], + [9.311611, 45.384614], + [9.311611, 45.380118], + [9.307114, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.384614], + [9.307114, 45.389111], + [9.311611, 45.389111], + [9.311611, 45.384614], + [9.307114, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.389111], + [9.307114, 45.393608], + [9.311611, 45.393608], + [9.311611, 45.389111], + [9.307114, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.393608], + [9.307114, 45.398104], + [9.311611, 45.398104], + [9.311611, 45.393608], + [9.307114, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.398104], + [9.307114, 45.402601], + [9.311611, 45.402601], + [9.311611, 45.398104], + [9.307114, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.402601], + [9.307114, 45.407097], + [9.311611, 45.407097], + [9.311611, 45.402601], + [9.307114, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.407097], + [9.307114, 45.411594], + [9.311611, 45.411594], + [9.311611, 45.407097], + [9.307114, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.411594], + [9.307114, 45.416091], + [9.311611, 45.416091], + [9.311611, 45.411594], + [9.307114, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.416091], + [9.307114, 45.420587], + [9.311611, 45.420587], + [9.311611, 45.416091], + [9.307114, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.420587], + [9.307114, 45.425084], + [9.311611, 45.425084], + [9.311611, 45.420587], + [9.307114, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.425084], + [9.307114, 45.42958], + [9.311611, 45.42958], + [9.311611, 45.425084], + [9.307114, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.42958], + [9.307114, 45.434077], + [9.311611, 45.434077], + [9.311611, 45.42958], + [9.307114, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.434077], + [9.307114, 45.438574], + [9.311611, 45.438574], + [9.311611, 45.434077], + [9.307114, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.438574], + [9.307114, 45.44307], + [9.311611, 45.44307], + [9.311611, 45.438574], + [9.307114, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.44307], + [9.307114, 45.447567], + [9.311611, 45.447567], + [9.311611, 45.44307], + [9.307114, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.447567], + [9.307114, 45.452063], + [9.311611, 45.452063], + [9.311611, 45.447567], + [9.307114, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.452063], + [9.307114, 45.45656], + [9.311611, 45.45656], + [9.311611, 45.452063], + [9.307114, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.45656], + [9.307114, 45.461057], + [9.311611, 45.461057], + [9.311611, 45.45656], + [9.307114, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.461057], + [9.307114, 45.465553], + [9.311611, 45.465553], + [9.311611, 45.461057], + [9.307114, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.465553], + [9.307114, 45.47005], + [9.311611, 45.47005], + [9.311611, 45.465553], + [9.307114, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.47005], + [9.307114, 45.474547], + [9.311611, 45.474547], + [9.311611, 45.47005], + [9.307114, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.474547], + [9.307114, 45.479043], + [9.311611, 45.479043], + [9.311611, 45.474547], + [9.307114, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.479043], + [9.307114, 45.48354], + [9.311611, 45.48354], + [9.311611, 45.479043], + [9.307114, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.48354], + [9.307114, 45.488036], + [9.311611, 45.488036], + [9.311611, 45.48354], + [9.307114, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.488036], + [9.307114, 45.492533], + [9.311611, 45.492533], + [9.311611, 45.488036], + [9.307114, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.492533], + [9.307114, 45.49703], + [9.311611, 45.49703], + [9.311611, 45.492533], + [9.307114, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.49703], + [9.307114, 45.501526], + [9.311611, 45.501526], + [9.311611, 45.49703], + [9.307114, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.501526], + [9.307114, 45.506023], + [9.311611, 45.506023], + [9.311611, 45.501526], + [9.307114, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.506023], + [9.307114, 45.510519], + [9.311611, 45.510519], + [9.311611, 45.506023], + [9.307114, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.510519], + [9.307114, 45.515016], + [9.311611, 45.515016], + [9.311611, 45.510519], + [9.307114, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.515016], + [9.307114, 45.519513], + [9.311611, 45.519513], + [9.311611, 45.515016], + [9.307114, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.519513], + [9.307114, 45.524009], + [9.311611, 45.524009], + [9.311611, 45.519513], + [9.307114, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.524009], + [9.307114, 45.528506], + [9.311611, 45.528506], + [9.311611, 45.524009], + [9.307114, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.528506], + [9.307114, 45.533002], + [9.311611, 45.533002], + [9.311611, 45.528506], + [9.307114, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.533002], + [9.307114, 45.537499], + [9.311611, 45.537499], + [9.311611, 45.533002], + [9.307114, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.537499], + [9.307114, 45.541996], + [9.311611, 45.541996], + [9.311611, 45.537499], + [9.307114, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.541996], + [9.307114, 45.546492], + [9.311611, 45.546492], + [9.311611, 45.541996], + [9.307114, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.546492], + [9.307114, 45.550989], + [9.311611, 45.550989], + [9.311611, 45.546492], + [9.307114, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.550989], + [9.307114, 45.555485], + [9.311611, 45.555485], + [9.311611, 45.550989], + [9.307114, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.555485], + [9.307114, 45.559982], + [9.311611, 45.559982], + [9.311611, 45.555485], + [9.307114, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.559982], + [9.307114, 45.564479], + [9.311611, 45.564479], + [9.311611, 45.559982], + [9.307114, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.564479], + [9.307114, 45.568975], + [9.311611, 45.568975], + [9.311611, 45.564479], + [9.307114, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.568975], + [9.307114, 45.573472], + [9.311611, 45.573472], + [9.311611, 45.568975], + [9.307114, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.573472], + [9.307114, 45.577968], + [9.311611, 45.577968], + [9.311611, 45.573472], + [9.307114, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.577968], + [9.307114, 45.582465], + [9.311611, 45.582465], + [9.311611, 45.577968], + [9.307114, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.582465], + [9.307114, 45.586962], + [9.311611, 45.586962], + [9.311611, 45.582465], + [9.307114, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.586962], + [9.307114, 45.591458], + [9.311611, 45.591458], + [9.311611, 45.586962], + [9.307114, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.591458], + [9.307114, 45.595955], + [9.311611, 45.595955], + [9.311611, 45.591458], + [9.307114, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.595955], + [9.307114, 45.600451], + [9.311611, 45.600451], + [9.311611, 45.595955], + [9.307114, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.600451], + [9.307114, 45.604948], + [9.311611, 45.604948], + [9.311611, 45.600451], + [9.307114, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.604948], + [9.307114, 45.609445], + [9.311611, 45.609445], + [9.311611, 45.604948], + [9.307114, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.609445], + [9.307114, 45.613941], + [9.311611, 45.613941], + [9.311611, 45.609445], + [9.307114, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.613941], + [9.307114, 45.618438], + [9.311611, 45.618438], + [9.311611, 45.613941], + [9.307114, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.618438], + [9.307114, 45.622934], + [9.311611, 45.622934], + [9.311611, 45.618438], + [9.307114, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.622934], + [9.307114, 45.627431], + [9.311611, 45.627431], + [9.311611, 45.622934], + [9.307114, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.627431], + [9.307114, 45.631928], + [9.311611, 45.631928], + [9.311611, 45.627431], + [9.307114, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.631928], + [9.307114, 45.636424], + [9.311611, 45.636424], + [9.311611, 45.631928], + [9.307114, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.339648], + [9.311611, 45.344145], + [9.316108, 45.344145], + [9.316108, 45.339648], + [9.311611, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.344145], + [9.311611, 45.348642], + [9.316108, 45.348642], + [9.316108, 45.344145], + [9.311611, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.348642], + [9.311611, 45.353138], + [9.316108, 45.353138], + [9.316108, 45.348642], + [9.311611, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.353138], + [9.311611, 45.357635], + [9.316108, 45.357635], + [9.316108, 45.353138], + [9.311611, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.357635], + [9.311611, 45.362131], + [9.316108, 45.362131], + [9.316108, 45.357635], + [9.311611, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.362131], + [9.311611, 45.366628], + [9.316108, 45.366628], + [9.316108, 45.362131], + [9.311611, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.366628], + [9.311611, 45.371125], + [9.316108, 45.371125], + [9.316108, 45.366628], + [9.311611, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.371125], + [9.311611, 45.375621], + [9.316108, 45.375621], + [9.316108, 45.371125], + [9.311611, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.375621], + [9.311611, 45.380118], + [9.316108, 45.380118], + [9.316108, 45.375621], + [9.311611, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.380118], + [9.311611, 45.384614], + [9.316108, 45.384614], + [9.316108, 45.380118], + [9.311611, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.384614], + [9.311611, 45.389111], + [9.316108, 45.389111], + [9.316108, 45.384614], + [9.311611, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.389111], + [9.311611, 45.393608], + [9.316108, 45.393608], + [9.316108, 45.389111], + [9.311611, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.393608], + [9.311611, 45.398104], + [9.316108, 45.398104], + [9.316108, 45.393608], + [9.311611, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.398104], + [9.311611, 45.402601], + [9.316108, 45.402601], + [9.316108, 45.398104], + [9.311611, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.402601], + [9.311611, 45.407097], + [9.316108, 45.407097], + [9.316108, 45.402601], + [9.311611, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.407097], + [9.311611, 45.411594], + [9.316108, 45.411594], + [9.316108, 45.407097], + [9.311611, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.411594], + [9.311611, 45.416091], + [9.316108, 45.416091], + [9.316108, 45.411594], + [9.311611, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.416091], + [9.311611, 45.420587], + [9.316108, 45.420587], + [9.316108, 45.416091], + [9.311611, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.420587], + [9.311611, 45.425084], + [9.316108, 45.425084], + [9.316108, 45.420587], + [9.311611, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.425084], + [9.311611, 45.42958], + [9.316108, 45.42958], + [9.316108, 45.425084], + [9.311611, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.42958], + [9.311611, 45.434077], + [9.316108, 45.434077], + [9.316108, 45.42958], + [9.311611, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.434077], + [9.311611, 45.438574], + [9.316108, 45.438574], + [9.316108, 45.434077], + [9.311611, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.438574], + [9.311611, 45.44307], + [9.316108, 45.44307], + [9.316108, 45.438574], + [9.311611, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.44307], + [9.311611, 45.447567], + [9.316108, 45.447567], + [9.316108, 45.44307], + [9.311611, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.447567], + [9.311611, 45.452063], + [9.316108, 45.452063], + [9.316108, 45.447567], + [9.311611, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.452063], + [9.311611, 45.45656], + [9.316108, 45.45656], + [9.316108, 45.452063], + [9.311611, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.45656], + [9.311611, 45.461057], + [9.316108, 45.461057], + [9.316108, 45.45656], + [9.311611, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.461057], + [9.311611, 45.465553], + [9.316108, 45.465553], + [9.316108, 45.461057], + [9.311611, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.465553], + [9.311611, 45.47005], + [9.316108, 45.47005], + [9.316108, 45.465553], + [9.311611, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.47005], + [9.311611, 45.474547], + [9.316108, 45.474547], + [9.316108, 45.47005], + [9.311611, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.474547], + [9.311611, 45.479043], + [9.316108, 45.479043], + [9.316108, 45.474547], + [9.311611, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.479043], + [9.311611, 45.48354], + [9.316108, 45.48354], + [9.316108, 45.479043], + [9.311611, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.48354], + [9.311611, 45.488036], + [9.316108, 45.488036], + [9.316108, 45.48354], + [9.311611, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.488036], + [9.311611, 45.492533], + [9.316108, 45.492533], + [9.316108, 45.488036], + [9.311611, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.492533], + [9.311611, 45.49703], + [9.316108, 45.49703], + [9.316108, 45.492533], + [9.311611, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.49703], + [9.311611, 45.501526], + [9.316108, 45.501526], + [9.316108, 45.49703], + [9.311611, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.501526], + [9.311611, 45.506023], + [9.316108, 45.506023], + [9.316108, 45.501526], + [9.311611, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.506023], + [9.311611, 45.510519], + [9.316108, 45.510519], + [9.316108, 45.506023], + [9.311611, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.510519], + [9.311611, 45.515016], + [9.316108, 45.515016], + [9.316108, 45.510519], + [9.311611, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.515016], + [9.311611, 45.519513], + [9.316108, 45.519513], + [9.316108, 45.515016], + [9.311611, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.519513], + [9.311611, 45.524009], + [9.316108, 45.524009], + [9.316108, 45.519513], + [9.311611, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.524009], + [9.311611, 45.528506], + [9.316108, 45.528506], + [9.316108, 45.524009], + [9.311611, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.528506], + [9.311611, 45.533002], + [9.316108, 45.533002], + [9.316108, 45.528506], + [9.311611, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.533002], + [9.311611, 45.537499], + [9.316108, 45.537499], + [9.316108, 45.533002], + [9.311611, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.537499], + [9.311611, 45.541996], + [9.316108, 45.541996], + [9.316108, 45.537499], + [9.311611, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.541996], + [9.311611, 45.546492], + [9.316108, 45.546492], + [9.316108, 45.541996], + [9.311611, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.546492], + [9.311611, 45.550989], + [9.316108, 45.550989], + [9.316108, 45.546492], + [9.311611, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.550989], + [9.311611, 45.555485], + [9.316108, 45.555485], + [9.316108, 45.550989], + [9.311611, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.555485], + [9.311611, 45.559982], + [9.316108, 45.559982], + [9.316108, 45.555485], + [9.311611, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.559982], + [9.311611, 45.564479], + [9.316108, 45.564479], + [9.316108, 45.559982], + [9.311611, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.564479], + [9.311611, 45.568975], + [9.316108, 45.568975], + [9.316108, 45.564479], + [9.311611, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.568975], + [9.311611, 45.573472], + [9.316108, 45.573472], + [9.316108, 45.568975], + [9.311611, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.573472], + [9.311611, 45.577968], + [9.316108, 45.577968], + [9.316108, 45.573472], + [9.311611, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.577968], + [9.311611, 45.582465], + [9.316108, 45.582465], + [9.316108, 45.577968], + [9.311611, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.582465], + [9.311611, 45.586962], + [9.316108, 45.586962], + [9.316108, 45.582465], + [9.311611, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.586962], + [9.311611, 45.591458], + [9.316108, 45.591458], + [9.316108, 45.586962], + [9.311611, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.591458], + [9.311611, 45.595955], + [9.316108, 45.595955], + [9.316108, 45.591458], + [9.311611, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.595955], + [9.311611, 45.600451], + [9.316108, 45.600451], + [9.316108, 45.595955], + [9.311611, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.600451], + [9.311611, 45.604948], + [9.316108, 45.604948], + [9.316108, 45.600451], + [9.311611, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.604948], + [9.311611, 45.609445], + [9.316108, 45.609445], + [9.316108, 45.604948], + [9.311611, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.609445], + [9.311611, 45.613941], + [9.316108, 45.613941], + [9.316108, 45.609445], + [9.311611, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.613941], + [9.311611, 45.618438], + [9.316108, 45.618438], + [9.316108, 45.613941], + [9.311611, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.618438], + [9.311611, 45.622934], + [9.316108, 45.622934], + [9.316108, 45.618438], + [9.311611, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.622934], + [9.311611, 45.627431], + [9.316108, 45.627431], + [9.316108, 45.622934], + [9.311611, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.627431], + [9.311611, 45.631928], + [9.316108, 45.631928], + [9.316108, 45.627431], + [9.311611, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.631928], + [9.311611, 45.636424], + [9.316108, 45.636424], + [9.316108, 45.631928], + [9.311611, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.339648], + [9.316108, 45.344145], + [9.320604, 45.344145], + [9.320604, 45.339648], + [9.316108, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.344145], + [9.316108, 45.348642], + [9.320604, 45.348642], + [9.320604, 45.344145], + [9.316108, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.348642], + [9.316108, 45.353138], + [9.320604, 45.353138], + [9.320604, 45.348642], + [9.316108, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.353138], + [9.316108, 45.357635], + [9.320604, 45.357635], + [9.320604, 45.353138], + [9.316108, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.357635], + [9.316108, 45.362131], + [9.320604, 45.362131], + [9.320604, 45.357635], + [9.316108, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.362131], + [9.316108, 45.366628], + [9.320604, 45.366628], + [9.320604, 45.362131], + [9.316108, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.366628], + [9.316108, 45.371125], + [9.320604, 45.371125], + [9.320604, 45.366628], + [9.316108, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.371125], + [9.316108, 45.375621], + [9.320604, 45.375621], + [9.320604, 45.371125], + [9.316108, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.375621], + [9.316108, 45.380118], + [9.320604, 45.380118], + [9.320604, 45.375621], + [9.316108, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.380118], + [9.316108, 45.384614], + [9.320604, 45.384614], + [9.320604, 45.380118], + [9.316108, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.384614], + [9.316108, 45.389111], + [9.320604, 45.389111], + [9.320604, 45.384614], + [9.316108, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.389111], + [9.316108, 45.393608], + [9.320604, 45.393608], + [9.320604, 45.389111], + [9.316108, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.393608], + [9.316108, 45.398104], + [9.320604, 45.398104], + [9.320604, 45.393608], + [9.316108, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.398104], + [9.316108, 45.402601], + [9.320604, 45.402601], + [9.320604, 45.398104], + [9.316108, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.402601], + [9.316108, 45.407097], + [9.320604, 45.407097], + [9.320604, 45.402601], + [9.316108, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.407097], + [9.316108, 45.411594], + [9.320604, 45.411594], + [9.320604, 45.407097], + [9.316108, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.411594], + [9.316108, 45.416091], + [9.320604, 45.416091], + [9.320604, 45.411594], + [9.316108, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.416091], + [9.316108, 45.420587], + [9.320604, 45.420587], + [9.320604, 45.416091], + [9.316108, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.420587], + [9.316108, 45.425084], + [9.320604, 45.425084], + [9.320604, 45.420587], + [9.316108, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.425084], + [9.316108, 45.42958], + [9.320604, 45.42958], + [9.320604, 45.425084], + [9.316108, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.42958], + [9.316108, 45.434077], + [9.320604, 45.434077], + [9.320604, 45.42958], + [9.316108, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.434077], + [9.316108, 45.438574], + [9.320604, 45.438574], + [9.320604, 45.434077], + [9.316108, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.438574], + [9.316108, 45.44307], + [9.320604, 45.44307], + [9.320604, 45.438574], + [9.316108, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.44307], + [9.316108, 45.447567], + [9.320604, 45.447567], + [9.320604, 45.44307], + [9.316108, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.447567], + [9.316108, 45.452063], + [9.320604, 45.452063], + [9.320604, 45.447567], + [9.316108, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.452063], + [9.316108, 45.45656], + [9.320604, 45.45656], + [9.320604, 45.452063], + [9.316108, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.45656], + [9.316108, 45.461057], + [9.320604, 45.461057], + [9.320604, 45.45656], + [9.316108, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.461057], + [9.316108, 45.465553], + [9.320604, 45.465553], + [9.320604, 45.461057], + [9.316108, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.465553], + [9.316108, 45.47005], + [9.320604, 45.47005], + [9.320604, 45.465553], + [9.316108, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.47005], + [9.316108, 45.474547], + [9.320604, 45.474547], + [9.320604, 45.47005], + [9.316108, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.474547], + [9.316108, 45.479043], + [9.320604, 45.479043], + [9.320604, 45.474547], + [9.316108, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.479043], + [9.316108, 45.48354], + [9.320604, 45.48354], + [9.320604, 45.479043], + [9.316108, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.48354], + [9.316108, 45.488036], + [9.320604, 45.488036], + [9.320604, 45.48354], + [9.316108, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.488036], + [9.316108, 45.492533], + [9.320604, 45.492533], + [9.320604, 45.488036], + [9.316108, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.492533], + [9.316108, 45.49703], + [9.320604, 45.49703], + [9.320604, 45.492533], + [9.316108, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.49703], + [9.316108, 45.501526], + [9.320604, 45.501526], + [9.320604, 45.49703], + [9.316108, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.501526], + [9.316108, 45.506023], + [9.320604, 45.506023], + [9.320604, 45.501526], + [9.316108, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.506023], + [9.316108, 45.510519], + [9.320604, 45.510519], + [9.320604, 45.506023], + [9.316108, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.510519], + [9.316108, 45.515016], + [9.320604, 45.515016], + [9.320604, 45.510519], + [9.316108, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.515016], + [9.316108, 45.519513], + [9.320604, 45.519513], + [9.320604, 45.515016], + [9.316108, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.519513], + [9.316108, 45.524009], + [9.320604, 45.524009], + [9.320604, 45.519513], + [9.316108, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.524009], + [9.316108, 45.528506], + [9.320604, 45.528506], + [9.320604, 45.524009], + [9.316108, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.528506], + [9.316108, 45.533002], + [9.320604, 45.533002], + [9.320604, 45.528506], + [9.316108, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.533002], + [9.316108, 45.537499], + [9.320604, 45.537499], + [9.320604, 45.533002], + [9.316108, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.537499], + [9.316108, 45.541996], + [9.320604, 45.541996], + [9.320604, 45.537499], + [9.316108, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.541996], + [9.316108, 45.546492], + [9.320604, 45.546492], + [9.320604, 45.541996], + [9.316108, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.546492], + [9.316108, 45.550989], + [9.320604, 45.550989], + [9.320604, 45.546492], + [9.316108, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.550989], + [9.316108, 45.555485], + [9.320604, 45.555485], + [9.320604, 45.550989], + [9.316108, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.555485], + [9.316108, 45.559982], + [9.320604, 45.559982], + [9.320604, 45.555485], + [9.316108, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.559982], + [9.316108, 45.564479], + [9.320604, 45.564479], + [9.320604, 45.559982], + [9.316108, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.564479], + [9.316108, 45.568975], + [9.320604, 45.568975], + [9.320604, 45.564479], + [9.316108, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.568975], + [9.316108, 45.573472], + [9.320604, 45.573472], + [9.320604, 45.568975], + [9.316108, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.573472], + [9.316108, 45.577968], + [9.320604, 45.577968], + [9.320604, 45.573472], + [9.316108, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.577968], + [9.316108, 45.582465], + [9.320604, 45.582465], + [9.320604, 45.577968], + [9.316108, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.582465], + [9.316108, 45.586962], + [9.320604, 45.586962], + [9.320604, 45.582465], + [9.316108, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.586962], + [9.316108, 45.591458], + [9.320604, 45.591458], + [9.320604, 45.586962], + [9.316108, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.591458], + [9.316108, 45.595955], + [9.320604, 45.595955], + [9.320604, 45.591458], + [9.316108, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.595955], + [9.316108, 45.600451], + [9.320604, 45.600451], + [9.320604, 45.595955], + [9.316108, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.600451], + [9.316108, 45.604948], + [9.320604, 45.604948], + [9.320604, 45.600451], + [9.316108, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.604948], + [9.316108, 45.609445], + [9.320604, 45.609445], + [9.320604, 45.604948], + [9.316108, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.609445], + [9.316108, 45.613941], + [9.320604, 45.613941], + [9.320604, 45.609445], + [9.316108, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.613941], + [9.316108, 45.618438], + [9.320604, 45.618438], + [9.320604, 45.613941], + [9.316108, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.618438], + [9.316108, 45.622934], + [9.320604, 45.622934], + [9.320604, 45.618438], + [9.316108, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.622934], + [9.316108, 45.627431], + [9.320604, 45.627431], + [9.320604, 45.622934], + [9.316108, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.627431], + [9.316108, 45.631928], + [9.320604, 45.631928], + [9.320604, 45.627431], + [9.316108, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.631928], + [9.316108, 45.636424], + [9.320604, 45.636424], + [9.320604, 45.631928], + [9.316108, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.339648], + [9.320604, 45.344145], + [9.325101, 45.344145], + [9.325101, 45.339648], + [9.320604, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.344145], + [9.320604, 45.348642], + [9.325101, 45.348642], + [9.325101, 45.344145], + [9.320604, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.348642], + [9.320604, 45.353138], + [9.325101, 45.353138], + [9.325101, 45.348642], + [9.320604, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.353138], + [9.320604, 45.357635], + [9.325101, 45.357635], + [9.325101, 45.353138], + [9.320604, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.357635], + [9.320604, 45.362131], + [9.325101, 45.362131], + [9.325101, 45.357635], + [9.320604, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.362131], + [9.320604, 45.366628], + [9.325101, 45.366628], + [9.325101, 45.362131], + [9.320604, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.366628], + [9.320604, 45.371125], + [9.325101, 45.371125], + [9.325101, 45.366628], + [9.320604, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.371125], + [9.320604, 45.375621], + [9.325101, 45.375621], + [9.325101, 45.371125], + [9.320604, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.375621], + [9.320604, 45.380118], + [9.325101, 45.380118], + [9.325101, 45.375621], + [9.320604, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.380118], + [9.320604, 45.384614], + [9.325101, 45.384614], + [9.325101, 45.380118], + [9.320604, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.384614], + [9.320604, 45.389111], + [9.325101, 45.389111], + [9.325101, 45.384614], + [9.320604, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.389111], + [9.320604, 45.393608], + [9.325101, 45.393608], + [9.325101, 45.389111], + [9.320604, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.393608], + [9.320604, 45.398104], + [9.325101, 45.398104], + [9.325101, 45.393608], + [9.320604, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.398104], + [9.320604, 45.402601], + [9.325101, 45.402601], + [9.325101, 45.398104], + [9.320604, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.402601], + [9.320604, 45.407097], + [9.325101, 45.407097], + [9.325101, 45.402601], + [9.320604, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.407097], + [9.320604, 45.411594], + [9.325101, 45.411594], + [9.325101, 45.407097], + [9.320604, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.411594], + [9.320604, 45.416091], + [9.325101, 45.416091], + [9.325101, 45.411594], + [9.320604, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.416091], + [9.320604, 45.420587], + [9.325101, 45.420587], + [9.325101, 45.416091], + [9.320604, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.420587], + [9.320604, 45.425084], + [9.325101, 45.425084], + [9.325101, 45.420587], + [9.320604, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.425084], + [9.320604, 45.42958], + [9.325101, 45.42958], + [9.325101, 45.425084], + [9.320604, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.42958], + [9.320604, 45.434077], + [9.325101, 45.434077], + [9.325101, 45.42958], + [9.320604, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.434077], + [9.320604, 45.438574], + [9.325101, 45.438574], + [9.325101, 45.434077], + [9.320604, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.438574], + [9.320604, 45.44307], + [9.325101, 45.44307], + [9.325101, 45.438574], + [9.320604, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.44307], + [9.320604, 45.447567], + [9.325101, 45.447567], + [9.325101, 45.44307], + [9.320604, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.447567], + [9.320604, 45.452063], + [9.325101, 45.452063], + [9.325101, 45.447567], + [9.320604, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.452063], + [9.320604, 45.45656], + [9.325101, 45.45656], + [9.325101, 45.452063], + [9.320604, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.45656], + [9.320604, 45.461057], + [9.325101, 45.461057], + [9.325101, 45.45656], + [9.320604, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.461057], + [9.320604, 45.465553], + [9.325101, 45.465553], + [9.325101, 45.461057], + [9.320604, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.465553], + [9.320604, 45.47005], + [9.325101, 45.47005], + [9.325101, 45.465553], + [9.320604, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.47005], + [9.320604, 45.474547], + [9.325101, 45.474547], + [9.325101, 45.47005], + [9.320604, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.474547], + [9.320604, 45.479043], + [9.325101, 45.479043], + [9.325101, 45.474547], + [9.320604, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.479043], + [9.320604, 45.48354], + [9.325101, 45.48354], + [9.325101, 45.479043], + [9.320604, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.48354], + [9.320604, 45.488036], + [9.325101, 45.488036], + [9.325101, 45.48354], + [9.320604, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.488036], + [9.320604, 45.492533], + [9.325101, 45.492533], + [9.325101, 45.488036], + [9.320604, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.492533], + [9.320604, 45.49703], + [9.325101, 45.49703], + [9.325101, 45.492533], + [9.320604, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.49703], + [9.320604, 45.501526], + [9.325101, 45.501526], + [9.325101, 45.49703], + [9.320604, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.501526], + [9.320604, 45.506023], + [9.325101, 45.506023], + [9.325101, 45.501526], + [9.320604, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.506023], + [9.320604, 45.510519], + [9.325101, 45.510519], + [9.325101, 45.506023], + [9.320604, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.510519], + [9.320604, 45.515016], + [9.325101, 45.515016], + [9.325101, 45.510519], + [9.320604, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.515016], + [9.320604, 45.519513], + [9.325101, 45.519513], + [9.325101, 45.515016], + [9.320604, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.519513], + [9.320604, 45.524009], + [9.325101, 45.524009], + [9.325101, 45.519513], + [9.320604, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.524009], + [9.320604, 45.528506], + [9.325101, 45.528506], + [9.325101, 45.524009], + [9.320604, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.528506], + [9.320604, 45.533002], + [9.325101, 45.533002], + [9.325101, 45.528506], + [9.320604, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.533002], + [9.320604, 45.537499], + [9.325101, 45.537499], + [9.325101, 45.533002], + [9.320604, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.537499], + [9.320604, 45.541996], + [9.325101, 45.541996], + [9.325101, 45.537499], + [9.320604, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.541996], + [9.320604, 45.546492], + [9.325101, 45.546492], + [9.325101, 45.541996], + [9.320604, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.546492], + [9.320604, 45.550989], + [9.325101, 45.550989], + [9.325101, 45.546492], + [9.320604, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.550989], + [9.320604, 45.555485], + [9.325101, 45.555485], + [9.325101, 45.550989], + [9.320604, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.555485], + [9.320604, 45.559982], + [9.325101, 45.559982], + [9.325101, 45.555485], + [9.320604, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.559982], + [9.320604, 45.564479], + [9.325101, 45.564479], + [9.325101, 45.559982], + [9.320604, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.564479], + [9.320604, 45.568975], + [9.325101, 45.568975], + [9.325101, 45.564479], + [9.320604, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.568975], + [9.320604, 45.573472], + [9.325101, 45.573472], + [9.325101, 45.568975], + [9.320604, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.573472], + [9.320604, 45.577968], + [9.325101, 45.577968], + [9.325101, 45.573472], + [9.320604, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.577968], + [9.320604, 45.582465], + [9.325101, 45.582465], + [9.325101, 45.577968], + [9.320604, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.582465], + [9.320604, 45.586962], + [9.325101, 45.586962], + [9.325101, 45.582465], + [9.320604, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.586962], + [9.320604, 45.591458], + [9.325101, 45.591458], + [9.325101, 45.586962], + [9.320604, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.591458], + [9.320604, 45.595955], + [9.325101, 45.595955], + [9.325101, 45.591458], + [9.320604, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.595955], + [9.320604, 45.600451], + [9.325101, 45.600451], + [9.325101, 45.595955], + [9.320604, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.600451], + [9.320604, 45.604948], + [9.325101, 45.604948], + [9.325101, 45.600451], + [9.320604, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.604948], + [9.320604, 45.609445], + [9.325101, 45.609445], + [9.325101, 45.604948], + [9.320604, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.609445], + [9.320604, 45.613941], + [9.325101, 45.613941], + [9.325101, 45.609445], + [9.320604, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.613941], + [9.320604, 45.618438], + [9.325101, 45.618438], + [9.325101, 45.613941], + [9.320604, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.618438], + [9.320604, 45.622934], + [9.325101, 45.622934], + [9.325101, 45.618438], + [9.320604, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.622934], + [9.320604, 45.627431], + [9.325101, 45.627431], + [9.325101, 45.622934], + [9.320604, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.627431], + [9.320604, 45.631928], + [9.325101, 45.631928], + [9.325101, 45.627431], + [9.320604, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.631928], + [9.320604, 45.636424], + [9.325101, 45.636424], + [9.325101, 45.631928], + [9.320604, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.339648], + [9.325101, 45.344145], + [9.329597, 45.344145], + [9.329597, 45.339648], + [9.325101, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.344145], + [9.325101, 45.348642], + [9.329597, 45.348642], + [9.329597, 45.344145], + [9.325101, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.348642], + [9.325101, 45.353138], + [9.329597, 45.353138], + [9.329597, 45.348642], + [9.325101, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.353138], + [9.325101, 45.357635], + [9.329597, 45.357635], + [9.329597, 45.353138], + [9.325101, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.357635], + [9.325101, 45.362131], + [9.329597, 45.362131], + [9.329597, 45.357635], + [9.325101, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.362131], + [9.325101, 45.366628], + [9.329597, 45.366628], + [9.329597, 45.362131], + [9.325101, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.366628], + [9.325101, 45.371125], + [9.329597, 45.371125], + [9.329597, 45.366628], + [9.325101, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.371125], + [9.325101, 45.375621], + [9.329597, 45.375621], + [9.329597, 45.371125], + [9.325101, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.375621], + [9.325101, 45.380118], + [9.329597, 45.380118], + [9.329597, 45.375621], + [9.325101, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.380118], + [9.325101, 45.384614], + [9.329597, 45.384614], + [9.329597, 45.380118], + [9.325101, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.384614], + [9.325101, 45.389111], + [9.329597, 45.389111], + [9.329597, 45.384614], + [9.325101, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.389111], + [9.325101, 45.393608], + [9.329597, 45.393608], + [9.329597, 45.389111], + [9.325101, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.393608], + [9.325101, 45.398104], + [9.329597, 45.398104], + [9.329597, 45.393608], + [9.325101, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.398104], + [9.325101, 45.402601], + [9.329597, 45.402601], + [9.329597, 45.398104], + [9.325101, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.402601], + [9.325101, 45.407097], + [9.329597, 45.407097], + [9.329597, 45.402601], + [9.325101, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.407097], + [9.325101, 45.411594], + [9.329597, 45.411594], + [9.329597, 45.407097], + [9.325101, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.411594], + [9.325101, 45.416091], + [9.329597, 45.416091], + [9.329597, 45.411594], + [9.325101, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.416091], + [9.325101, 45.420587], + [9.329597, 45.420587], + [9.329597, 45.416091], + [9.325101, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.420587], + [9.325101, 45.425084], + [9.329597, 45.425084], + [9.329597, 45.420587], + [9.325101, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.425084], + [9.325101, 45.42958], + [9.329597, 45.42958], + [9.329597, 45.425084], + [9.325101, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.42958], + [9.325101, 45.434077], + [9.329597, 45.434077], + [9.329597, 45.42958], + [9.325101, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.434077], + [9.325101, 45.438574], + [9.329597, 45.438574], + [9.329597, 45.434077], + [9.325101, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.438574], + [9.325101, 45.44307], + [9.329597, 45.44307], + [9.329597, 45.438574], + [9.325101, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.44307], + [9.325101, 45.447567], + [9.329597, 45.447567], + [9.329597, 45.44307], + [9.325101, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.447567], + [9.325101, 45.452063], + [9.329597, 45.452063], + [9.329597, 45.447567], + [9.325101, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.452063], + [9.325101, 45.45656], + [9.329597, 45.45656], + [9.329597, 45.452063], + [9.325101, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.45656], + [9.325101, 45.461057], + [9.329597, 45.461057], + [9.329597, 45.45656], + [9.325101, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.461057], + [9.325101, 45.465553], + [9.329597, 45.465553], + [9.329597, 45.461057], + [9.325101, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.465553], + [9.325101, 45.47005], + [9.329597, 45.47005], + [9.329597, 45.465553], + [9.325101, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.47005], + [9.325101, 45.474547], + [9.329597, 45.474547], + [9.329597, 45.47005], + [9.325101, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.474547], + [9.325101, 45.479043], + [9.329597, 45.479043], + [9.329597, 45.474547], + [9.325101, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.479043], + [9.325101, 45.48354], + [9.329597, 45.48354], + [9.329597, 45.479043], + [9.325101, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.48354], + [9.325101, 45.488036], + [9.329597, 45.488036], + [9.329597, 45.48354], + [9.325101, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.488036], + [9.325101, 45.492533], + [9.329597, 45.492533], + [9.329597, 45.488036], + [9.325101, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.492533], + [9.325101, 45.49703], + [9.329597, 45.49703], + [9.329597, 45.492533], + [9.325101, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.49703], + [9.325101, 45.501526], + [9.329597, 45.501526], + [9.329597, 45.49703], + [9.325101, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.501526], + [9.325101, 45.506023], + [9.329597, 45.506023], + [9.329597, 45.501526], + [9.325101, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.506023], + [9.325101, 45.510519], + [9.329597, 45.510519], + [9.329597, 45.506023], + [9.325101, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.510519], + [9.325101, 45.515016], + [9.329597, 45.515016], + [9.329597, 45.510519], + [9.325101, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.515016], + [9.325101, 45.519513], + [9.329597, 45.519513], + [9.329597, 45.515016], + [9.325101, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.519513], + [9.325101, 45.524009], + [9.329597, 45.524009], + [9.329597, 45.519513], + [9.325101, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.524009], + [9.325101, 45.528506], + [9.329597, 45.528506], + [9.329597, 45.524009], + [9.325101, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.528506], + [9.325101, 45.533002], + [9.329597, 45.533002], + [9.329597, 45.528506], + [9.325101, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.533002], + [9.325101, 45.537499], + [9.329597, 45.537499], + [9.329597, 45.533002], + [9.325101, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.537499], + [9.325101, 45.541996], + [9.329597, 45.541996], + [9.329597, 45.537499], + [9.325101, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.541996], + [9.325101, 45.546492], + [9.329597, 45.546492], + [9.329597, 45.541996], + [9.325101, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.546492], + [9.325101, 45.550989], + [9.329597, 45.550989], + [9.329597, 45.546492], + [9.325101, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.550989], + [9.325101, 45.555485], + [9.329597, 45.555485], + [9.329597, 45.550989], + [9.325101, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.555485], + [9.325101, 45.559982], + [9.329597, 45.559982], + [9.329597, 45.555485], + [9.325101, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.559982], + [9.325101, 45.564479], + [9.329597, 45.564479], + [9.329597, 45.559982], + [9.325101, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.564479], + [9.325101, 45.568975], + [9.329597, 45.568975], + [9.329597, 45.564479], + [9.325101, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.568975], + [9.325101, 45.573472], + [9.329597, 45.573472], + [9.329597, 45.568975], + [9.325101, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.573472], + [9.325101, 45.577968], + [9.329597, 45.577968], + [9.329597, 45.573472], + [9.325101, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.577968], + [9.325101, 45.582465], + [9.329597, 45.582465], + [9.329597, 45.577968], + [9.325101, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.582465], + [9.325101, 45.586962], + [9.329597, 45.586962], + [9.329597, 45.582465], + [9.325101, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.586962], + [9.325101, 45.591458], + [9.329597, 45.591458], + [9.329597, 45.586962], + [9.325101, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.591458], + [9.325101, 45.595955], + [9.329597, 45.595955], + [9.329597, 45.591458], + [9.325101, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.595955], + [9.325101, 45.600451], + [9.329597, 45.600451], + [9.329597, 45.595955], + [9.325101, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.600451], + [9.325101, 45.604948], + [9.329597, 45.604948], + [9.329597, 45.600451], + [9.325101, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.604948], + [9.325101, 45.609445], + [9.329597, 45.609445], + [9.329597, 45.604948], + [9.325101, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.609445], + [9.325101, 45.613941], + [9.329597, 45.613941], + [9.329597, 45.609445], + [9.325101, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.613941], + [9.325101, 45.618438], + [9.329597, 45.618438], + [9.329597, 45.613941], + [9.325101, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.618438], + [9.325101, 45.622934], + [9.329597, 45.622934], + [9.329597, 45.618438], + [9.325101, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.622934], + [9.325101, 45.627431], + [9.329597, 45.627431], + [9.329597, 45.622934], + [9.325101, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.627431], + [9.325101, 45.631928], + [9.329597, 45.631928], + [9.329597, 45.627431], + [9.325101, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.631928], + [9.325101, 45.636424], + [9.329597, 45.636424], + [9.329597, 45.631928], + [9.325101, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.339648], + [9.329597, 45.344145], + [9.334094, 45.344145], + [9.334094, 45.339648], + [9.329597, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.344145], + [9.329597, 45.348642], + [9.334094, 45.348642], + [9.334094, 45.344145], + [9.329597, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.348642], + [9.329597, 45.353138], + [9.334094, 45.353138], + [9.334094, 45.348642], + [9.329597, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.353138], + [9.329597, 45.357635], + [9.334094, 45.357635], + [9.334094, 45.353138], + [9.329597, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.357635], + [9.329597, 45.362131], + [9.334094, 45.362131], + [9.334094, 45.357635], + [9.329597, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.362131], + [9.329597, 45.366628], + [9.334094, 45.366628], + [9.334094, 45.362131], + [9.329597, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.366628], + [9.329597, 45.371125], + [9.334094, 45.371125], + [9.334094, 45.366628], + [9.329597, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.371125], + [9.329597, 45.375621], + [9.334094, 45.375621], + [9.334094, 45.371125], + [9.329597, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.375621], + [9.329597, 45.380118], + [9.334094, 45.380118], + [9.334094, 45.375621], + [9.329597, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.380118], + [9.329597, 45.384614], + [9.334094, 45.384614], + [9.334094, 45.380118], + [9.329597, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.384614], + [9.329597, 45.389111], + [9.334094, 45.389111], + [9.334094, 45.384614], + [9.329597, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.389111], + [9.329597, 45.393608], + [9.334094, 45.393608], + [9.334094, 45.389111], + [9.329597, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.393608], + [9.329597, 45.398104], + [9.334094, 45.398104], + [9.334094, 45.393608], + [9.329597, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.398104], + [9.329597, 45.402601], + [9.334094, 45.402601], + [9.334094, 45.398104], + [9.329597, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.402601], + [9.329597, 45.407097], + [9.334094, 45.407097], + [9.334094, 45.402601], + [9.329597, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.407097], + [9.329597, 45.411594], + [9.334094, 45.411594], + [9.334094, 45.407097], + [9.329597, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.411594], + [9.329597, 45.416091], + [9.334094, 45.416091], + [9.334094, 45.411594], + [9.329597, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.416091], + [9.329597, 45.420587], + [9.334094, 45.420587], + [9.334094, 45.416091], + [9.329597, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.420587], + [9.329597, 45.425084], + [9.334094, 45.425084], + [9.334094, 45.420587], + [9.329597, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.425084], + [9.329597, 45.42958], + [9.334094, 45.42958], + [9.334094, 45.425084], + [9.329597, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.42958], + [9.329597, 45.434077], + [9.334094, 45.434077], + [9.334094, 45.42958], + [9.329597, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.434077], + [9.329597, 45.438574], + [9.334094, 45.438574], + [9.334094, 45.434077], + [9.329597, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.438574], + [9.329597, 45.44307], + [9.334094, 45.44307], + [9.334094, 45.438574], + [9.329597, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.44307], + [9.329597, 45.447567], + [9.334094, 45.447567], + [9.334094, 45.44307], + [9.329597, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.447567], + [9.329597, 45.452063], + [9.334094, 45.452063], + [9.334094, 45.447567], + [9.329597, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.452063], + [9.329597, 45.45656], + [9.334094, 45.45656], + [9.334094, 45.452063], + [9.329597, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.45656], + [9.329597, 45.461057], + [9.334094, 45.461057], + [9.334094, 45.45656], + [9.329597, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.461057], + [9.329597, 45.465553], + [9.334094, 45.465553], + [9.334094, 45.461057], + [9.329597, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.465553], + [9.329597, 45.47005], + [9.334094, 45.47005], + [9.334094, 45.465553], + [9.329597, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.47005], + [9.329597, 45.474547], + [9.334094, 45.474547], + [9.334094, 45.47005], + [9.329597, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.474547], + [9.329597, 45.479043], + [9.334094, 45.479043], + [9.334094, 45.474547], + [9.329597, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.479043], + [9.329597, 45.48354], + [9.334094, 45.48354], + [9.334094, 45.479043], + [9.329597, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.48354], + [9.329597, 45.488036], + [9.334094, 45.488036], + [9.334094, 45.48354], + [9.329597, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.488036], + [9.329597, 45.492533], + [9.334094, 45.492533], + [9.334094, 45.488036], + [9.329597, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.492533], + [9.329597, 45.49703], + [9.334094, 45.49703], + [9.334094, 45.492533], + [9.329597, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.49703], + [9.329597, 45.501526], + [9.334094, 45.501526], + [9.334094, 45.49703], + [9.329597, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.501526], + [9.329597, 45.506023], + [9.334094, 45.506023], + [9.334094, 45.501526], + [9.329597, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.506023], + [9.329597, 45.510519], + [9.334094, 45.510519], + [9.334094, 45.506023], + [9.329597, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.510519], + [9.329597, 45.515016], + [9.334094, 45.515016], + [9.334094, 45.510519], + [9.329597, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.515016], + [9.329597, 45.519513], + [9.334094, 45.519513], + [9.334094, 45.515016], + [9.329597, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.519513], + [9.329597, 45.524009], + [9.334094, 45.524009], + [9.334094, 45.519513], + [9.329597, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.524009], + [9.329597, 45.528506], + [9.334094, 45.528506], + [9.334094, 45.524009], + [9.329597, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.528506], + [9.329597, 45.533002], + [9.334094, 45.533002], + [9.334094, 45.528506], + [9.329597, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.533002], + [9.329597, 45.537499], + [9.334094, 45.537499], + [9.334094, 45.533002], + [9.329597, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.537499], + [9.329597, 45.541996], + [9.334094, 45.541996], + [9.334094, 45.537499], + [9.329597, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.541996], + [9.329597, 45.546492], + [9.334094, 45.546492], + [9.334094, 45.541996], + [9.329597, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.546492], + [9.329597, 45.550989], + [9.334094, 45.550989], + [9.334094, 45.546492], + [9.329597, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.550989], + [9.329597, 45.555485], + [9.334094, 45.555485], + [9.334094, 45.550989], + [9.329597, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.555485], + [9.329597, 45.559982], + [9.334094, 45.559982], + [9.334094, 45.555485], + [9.329597, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.559982], + [9.329597, 45.564479], + [9.334094, 45.564479], + [9.334094, 45.559982], + [9.329597, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.564479], + [9.329597, 45.568975], + [9.334094, 45.568975], + [9.334094, 45.564479], + [9.329597, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.568975], + [9.329597, 45.573472], + [9.334094, 45.573472], + [9.334094, 45.568975], + [9.329597, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.573472], + [9.329597, 45.577968], + [9.334094, 45.577968], + [9.334094, 45.573472], + [9.329597, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.577968], + [9.329597, 45.582465], + [9.334094, 45.582465], + [9.334094, 45.577968], + [9.329597, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.582465], + [9.329597, 45.586962], + [9.334094, 45.586962], + [9.334094, 45.582465], + [9.329597, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.586962], + [9.329597, 45.591458], + [9.334094, 45.591458], + [9.334094, 45.586962], + [9.329597, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.591458], + [9.329597, 45.595955], + [9.334094, 45.595955], + [9.334094, 45.591458], + [9.329597, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.595955], + [9.329597, 45.600451], + [9.334094, 45.600451], + [9.334094, 45.595955], + [9.329597, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.600451], + [9.329597, 45.604948], + [9.334094, 45.604948], + [9.334094, 45.600451], + [9.329597, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.604948], + [9.329597, 45.609445], + [9.334094, 45.609445], + [9.334094, 45.604948], + [9.329597, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.609445], + [9.329597, 45.613941], + [9.334094, 45.613941], + [9.334094, 45.609445], + [9.329597, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.613941], + [9.329597, 45.618438], + [9.334094, 45.618438], + [9.334094, 45.613941], + [9.329597, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.618438], + [9.329597, 45.622934], + [9.334094, 45.622934], + [9.334094, 45.618438], + [9.329597, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.622934], + [9.329597, 45.627431], + [9.334094, 45.627431], + [9.334094, 45.622934], + [9.329597, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.627431], + [9.329597, 45.631928], + [9.334094, 45.631928], + [9.334094, 45.627431], + [9.329597, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.631928], + [9.329597, 45.636424], + [9.334094, 45.636424], + [9.334094, 45.631928], + [9.329597, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.339648], + [9.334094, 45.344145], + [9.338591, 45.344145], + [9.338591, 45.339648], + [9.334094, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.344145], + [9.334094, 45.348642], + [9.338591, 45.348642], + [9.338591, 45.344145], + [9.334094, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.348642], + [9.334094, 45.353138], + [9.338591, 45.353138], + [9.338591, 45.348642], + [9.334094, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.353138], + [9.334094, 45.357635], + [9.338591, 45.357635], + [9.338591, 45.353138], + [9.334094, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.357635], + [9.334094, 45.362131], + [9.338591, 45.362131], + [9.338591, 45.357635], + [9.334094, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.362131], + [9.334094, 45.366628], + [9.338591, 45.366628], + [9.338591, 45.362131], + [9.334094, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.366628], + [9.334094, 45.371125], + [9.338591, 45.371125], + [9.338591, 45.366628], + [9.334094, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.371125], + [9.334094, 45.375621], + [9.338591, 45.375621], + [9.338591, 45.371125], + [9.334094, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.375621], + [9.334094, 45.380118], + [9.338591, 45.380118], + [9.338591, 45.375621], + [9.334094, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.380118], + [9.334094, 45.384614], + [9.338591, 45.384614], + [9.338591, 45.380118], + [9.334094, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.384614], + [9.334094, 45.389111], + [9.338591, 45.389111], + [9.338591, 45.384614], + [9.334094, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.389111], + [9.334094, 45.393608], + [9.338591, 45.393608], + [9.338591, 45.389111], + [9.334094, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.393608], + [9.334094, 45.398104], + [9.338591, 45.398104], + [9.338591, 45.393608], + [9.334094, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.398104], + [9.334094, 45.402601], + [9.338591, 45.402601], + [9.338591, 45.398104], + [9.334094, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.402601], + [9.334094, 45.407097], + [9.338591, 45.407097], + [9.338591, 45.402601], + [9.334094, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.407097], + [9.334094, 45.411594], + [9.338591, 45.411594], + [9.338591, 45.407097], + [9.334094, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.411594], + [9.334094, 45.416091], + [9.338591, 45.416091], + [9.338591, 45.411594], + [9.334094, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.416091], + [9.334094, 45.420587], + [9.338591, 45.420587], + [9.338591, 45.416091], + [9.334094, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.420587], + [9.334094, 45.425084], + [9.338591, 45.425084], + [9.338591, 45.420587], + [9.334094, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.425084], + [9.334094, 45.42958], + [9.338591, 45.42958], + [9.338591, 45.425084], + [9.334094, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.42958], + [9.334094, 45.434077], + [9.338591, 45.434077], + [9.338591, 45.42958], + [9.334094, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.434077], + [9.334094, 45.438574], + [9.338591, 45.438574], + [9.338591, 45.434077], + [9.334094, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.438574], + [9.334094, 45.44307], + [9.338591, 45.44307], + [9.338591, 45.438574], + [9.334094, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.44307], + [9.334094, 45.447567], + [9.338591, 45.447567], + [9.338591, 45.44307], + [9.334094, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.447567], + [9.334094, 45.452063], + [9.338591, 45.452063], + [9.338591, 45.447567], + [9.334094, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.452063], + [9.334094, 45.45656], + [9.338591, 45.45656], + [9.338591, 45.452063], + [9.334094, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.45656], + [9.334094, 45.461057], + [9.338591, 45.461057], + [9.338591, 45.45656], + [9.334094, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.461057], + [9.334094, 45.465553], + [9.338591, 45.465553], + [9.338591, 45.461057], + [9.334094, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.465553], + [9.334094, 45.47005], + [9.338591, 45.47005], + [9.338591, 45.465553], + [9.334094, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.47005], + [9.334094, 45.474547], + [9.338591, 45.474547], + [9.338591, 45.47005], + [9.334094, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.474547], + [9.334094, 45.479043], + [9.338591, 45.479043], + [9.338591, 45.474547], + [9.334094, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.479043], + [9.334094, 45.48354], + [9.338591, 45.48354], + [9.338591, 45.479043], + [9.334094, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.48354], + [9.334094, 45.488036], + [9.338591, 45.488036], + [9.338591, 45.48354], + [9.334094, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.488036], + [9.334094, 45.492533], + [9.338591, 45.492533], + [9.338591, 45.488036], + [9.334094, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.492533], + [9.334094, 45.49703], + [9.338591, 45.49703], + [9.338591, 45.492533], + [9.334094, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.49703], + [9.334094, 45.501526], + [9.338591, 45.501526], + [9.338591, 45.49703], + [9.334094, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.501526], + [9.334094, 45.506023], + [9.338591, 45.506023], + [9.338591, 45.501526], + [9.334094, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.506023], + [9.334094, 45.510519], + [9.338591, 45.510519], + [9.338591, 45.506023], + [9.334094, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.510519], + [9.334094, 45.515016], + [9.338591, 45.515016], + [9.338591, 45.510519], + [9.334094, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.515016], + [9.334094, 45.519513], + [9.338591, 45.519513], + [9.338591, 45.515016], + [9.334094, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.519513], + [9.334094, 45.524009], + [9.338591, 45.524009], + [9.338591, 45.519513], + [9.334094, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.524009], + [9.334094, 45.528506], + [9.338591, 45.528506], + [9.338591, 45.524009], + [9.334094, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.528506], + [9.334094, 45.533002], + [9.338591, 45.533002], + [9.338591, 45.528506], + [9.334094, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.533002], + [9.334094, 45.537499], + [9.338591, 45.537499], + [9.338591, 45.533002], + [9.334094, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.537499], + [9.334094, 45.541996], + [9.338591, 45.541996], + [9.338591, 45.537499], + [9.334094, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.541996], + [9.334094, 45.546492], + [9.338591, 45.546492], + [9.338591, 45.541996], + [9.334094, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.546492], + [9.334094, 45.550989], + [9.338591, 45.550989], + [9.338591, 45.546492], + [9.334094, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.550989], + [9.334094, 45.555485], + [9.338591, 45.555485], + [9.338591, 45.550989], + [9.334094, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.555485], + [9.334094, 45.559982], + [9.338591, 45.559982], + [9.338591, 45.555485], + [9.334094, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.559982], + [9.334094, 45.564479], + [9.338591, 45.564479], + [9.338591, 45.559982], + [9.334094, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.564479], + [9.334094, 45.568975], + [9.338591, 45.568975], + [9.338591, 45.564479], + [9.334094, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.568975], + [9.334094, 45.573472], + [9.338591, 45.573472], + [9.338591, 45.568975], + [9.334094, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.573472], + [9.334094, 45.577968], + [9.338591, 45.577968], + [9.338591, 45.573472], + [9.334094, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.577968], + [9.334094, 45.582465], + [9.338591, 45.582465], + [9.338591, 45.577968], + [9.334094, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.582465], + [9.334094, 45.586962], + [9.338591, 45.586962], + [9.338591, 45.582465], + [9.334094, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.586962], + [9.334094, 45.591458], + [9.338591, 45.591458], + [9.338591, 45.586962], + [9.334094, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.591458], + [9.334094, 45.595955], + [9.338591, 45.595955], + [9.338591, 45.591458], + [9.334094, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.595955], + [9.334094, 45.600451], + [9.338591, 45.600451], + [9.338591, 45.595955], + [9.334094, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.600451], + [9.334094, 45.604948], + [9.338591, 45.604948], + [9.338591, 45.600451], + [9.334094, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.604948], + [9.334094, 45.609445], + [9.338591, 45.609445], + [9.338591, 45.604948], + [9.334094, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.609445], + [9.334094, 45.613941], + [9.338591, 45.613941], + [9.338591, 45.609445], + [9.334094, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.613941], + [9.334094, 45.618438], + [9.338591, 45.618438], + [9.338591, 45.613941], + [9.334094, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.618438], + [9.334094, 45.622934], + [9.338591, 45.622934], + [9.338591, 45.618438], + [9.334094, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.622934], + [9.334094, 45.627431], + [9.338591, 45.627431], + [9.338591, 45.622934], + [9.334094, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.627431], + [9.334094, 45.631928], + [9.338591, 45.631928], + [9.338591, 45.627431], + [9.334094, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.631928], + [9.334094, 45.636424], + [9.338591, 45.636424], + [9.338591, 45.631928], + [9.334094, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.339648], + [9.338591, 45.344145], + [9.343087, 45.344145], + [9.343087, 45.339648], + [9.338591, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.344145], + [9.338591, 45.348642], + [9.343087, 45.348642], + [9.343087, 45.344145], + [9.338591, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.348642], + [9.338591, 45.353138], + [9.343087, 45.353138], + [9.343087, 45.348642], + [9.338591, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.353138], + [9.338591, 45.357635], + [9.343087, 45.357635], + [9.343087, 45.353138], + [9.338591, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.357635], + [9.338591, 45.362131], + [9.343087, 45.362131], + [9.343087, 45.357635], + [9.338591, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.362131], + [9.338591, 45.366628], + [9.343087, 45.366628], + [9.343087, 45.362131], + [9.338591, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.366628], + [9.338591, 45.371125], + [9.343087, 45.371125], + [9.343087, 45.366628], + [9.338591, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.371125], + [9.338591, 45.375621], + [9.343087, 45.375621], + [9.343087, 45.371125], + [9.338591, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.375621], + [9.338591, 45.380118], + [9.343087, 45.380118], + [9.343087, 45.375621], + [9.338591, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.380118], + [9.338591, 45.384614], + [9.343087, 45.384614], + [9.343087, 45.380118], + [9.338591, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.384614], + [9.338591, 45.389111], + [9.343087, 45.389111], + [9.343087, 45.384614], + [9.338591, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.389111], + [9.338591, 45.393608], + [9.343087, 45.393608], + [9.343087, 45.389111], + [9.338591, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.393608], + [9.338591, 45.398104], + [9.343087, 45.398104], + [9.343087, 45.393608], + [9.338591, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.398104], + [9.338591, 45.402601], + [9.343087, 45.402601], + [9.343087, 45.398104], + [9.338591, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.402601], + [9.338591, 45.407097], + [9.343087, 45.407097], + [9.343087, 45.402601], + [9.338591, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.407097], + [9.338591, 45.411594], + [9.343087, 45.411594], + [9.343087, 45.407097], + [9.338591, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.411594], + [9.338591, 45.416091], + [9.343087, 45.416091], + [9.343087, 45.411594], + [9.338591, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.416091], + [9.338591, 45.420587], + [9.343087, 45.420587], + [9.343087, 45.416091], + [9.338591, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.420587], + [9.338591, 45.425084], + [9.343087, 45.425084], + [9.343087, 45.420587], + [9.338591, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.425084], + [9.338591, 45.42958], + [9.343087, 45.42958], + [9.343087, 45.425084], + [9.338591, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.42958], + [9.338591, 45.434077], + [9.343087, 45.434077], + [9.343087, 45.42958], + [9.338591, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.434077], + [9.338591, 45.438574], + [9.343087, 45.438574], + [9.343087, 45.434077], + [9.338591, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.438574], + [9.338591, 45.44307], + [9.343087, 45.44307], + [9.343087, 45.438574], + [9.338591, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.44307], + [9.338591, 45.447567], + [9.343087, 45.447567], + [9.343087, 45.44307], + [9.338591, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.447567], + [9.338591, 45.452063], + [9.343087, 45.452063], + [9.343087, 45.447567], + [9.338591, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.452063], + [9.338591, 45.45656], + [9.343087, 45.45656], + [9.343087, 45.452063], + [9.338591, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.45656], + [9.338591, 45.461057], + [9.343087, 45.461057], + [9.343087, 45.45656], + [9.338591, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.461057], + [9.338591, 45.465553], + [9.343087, 45.465553], + [9.343087, 45.461057], + [9.338591, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.465553], + [9.338591, 45.47005], + [9.343087, 45.47005], + [9.343087, 45.465553], + [9.338591, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.47005], + [9.338591, 45.474547], + [9.343087, 45.474547], + [9.343087, 45.47005], + [9.338591, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.474547], + [9.338591, 45.479043], + [9.343087, 45.479043], + [9.343087, 45.474547], + [9.338591, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.479043], + [9.338591, 45.48354], + [9.343087, 45.48354], + [9.343087, 45.479043], + [9.338591, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.48354], + [9.338591, 45.488036], + [9.343087, 45.488036], + [9.343087, 45.48354], + [9.338591, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.488036], + [9.338591, 45.492533], + [9.343087, 45.492533], + [9.343087, 45.488036], + [9.338591, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.492533], + [9.338591, 45.49703], + [9.343087, 45.49703], + [9.343087, 45.492533], + [9.338591, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.49703], + [9.338591, 45.501526], + [9.343087, 45.501526], + [9.343087, 45.49703], + [9.338591, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.501526], + [9.338591, 45.506023], + [9.343087, 45.506023], + [9.343087, 45.501526], + [9.338591, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.506023], + [9.338591, 45.510519], + [9.343087, 45.510519], + [9.343087, 45.506023], + [9.338591, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.510519], + [9.338591, 45.515016], + [9.343087, 45.515016], + [9.343087, 45.510519], + [9.338591, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.515016], + [9.338591, 45.519513], + [9.343087, 45.519513], + [9.343087, 45.515016], + [9.338591, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.519513], + [9.338591, 45.524009], + [9.343087, 45.524009], + [9.343087, 45.519513], + [9.338591, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.524009], + [9.338591, 45.528506], + [9.343087, 45.528506], + [9.343087, 45.524009], + [9.338591, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.528506], + [9.338591, 45.533002], + [9.343087, 45.533002], + [9.343087, 45.528506], + [9.338591, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.533002], + [9.338591, 45.537499], + [9.343087, 45.537499], + [9.343087, 45.533002], + [9.338591, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.537499], + [9.338591, 45.541996], + [9.343087, 45.541996], + [9.343087, 45.537499], + [9.338591, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.541996], + [9.338591, 45.546492], + [9.343087, 45.546492], + [9.343087, 45.541996], + [9.338591, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.546492], + [9.338591, 45.550989], + [9.343087, 45.550989], + [9.343087, 45.546492], + [9.338591, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.550989], + [9.338591, 45.555485], + [9.343087, 45.555485], + [9.343087, 45.550989], + [9.338591, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.555485], + [9.338591, 45.559982], + [9.343087, 45.559982], + [9.343087, 45.555485], + [9.338591, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.559982], + [9.338591, 45.564479], + [9.343087, 45.564479], + [9.343087, 45.559982], + [9.338591, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.564479], + [9.338591, 45.568975], + [9.343087, 45.568975], + [9.343087, 45.564479], + [9.338591, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.568975], + [9.338591, 45.573472], + [9.343087, 45.573472], + [9.343087, 45.568975], + [9.338591, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.573472], + [9.338591, 45.577968], + [9.343087, 45.577968], + [9.343087, 45.573472], + [9.338591, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.577968], + [9.338591, 45.582465], + [9.343087, 45.582465], + [9.343087, 45.577968], + [9.338591, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.582465], + [9.338591, 45.586962], + [9.343087, 45.586962], + [9.343087, 45.582465], + [9.338591, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.586962], + [9.338591, 45.591458], + [9.343087, 45.591458], + [9.343087, 45.586962], + [9.338591, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.591458], + [9.338591, 45.595955], + [9.343087, 45.595955], + [9.343087, 45.591458], + [9.338591, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.595955], + [9.338591, 45.600451], + [9.343087, 45.600451], + [9.343087, 45.595955], + [9.338591, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.600451], + [9.338591, 45.604948], + [9.343087, 45.604948], + [9.343087, 45.600451], + [9.338591, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.604948], + [9.338591, 45.609445], + [9.343087, 45.609445], + [9.343087, 45.604948], + [9.338591, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.609445], + [9.338591, 45.613941], + [9.343087, 45.613941], + [9.343087, 45.609445], + [9.338591, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.613941], + [9.338591, 45.618438], + [9.343087, 45.618438], + [9.343087, 45.613941], + [9.338591, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.618438], + [9.338591, 45.622934], + [9.343087, 45.622934], + [9.343087, 45.618438], + [9.338591, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.622934], + [9.338591, 45.627431], + [9.343087, 45.627431], + [9.343087, 45.622934], + [9.338591, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.627431], + [9.338591, 45.631928], + [9.343087, 45.631928], + [9.343087, 45.627431], + [9.338591, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.631928], + [9.338591, 45.636424], + [9.343087, 45.636424], + [9.343087, 45.631928], + [9.338591, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.339648], + [9.343087, 45.344145], + [9.347584, 45.344145], + [9.347584, 45.339648], + [9.343087, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.344145], + [9.343087, 45.348642], + [9.347584, 45.348642], + [9.347584, 45.344145], + [9.343087, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.348642], + [9.343087, 45.353138], + [9.347584, 45.353138], + [9.347584, 45.348642], + [9.343087, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.353138], + [9.343087, 45.357635], + [9.347584, 45.357635], + [9.347584, 45.353138], + [9.343087, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.357635], + [9.343087, 45.362131], + [9.347584, 45.362131], + [9.347584, 45.357635], + [9.343087, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.362131], + [9.343087, 45.366628], + [9.347584, 45.366628], + [9.347584, 45.362131], + [9.343087, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.366628], + [9.343087, 45.371125], + [9.347584, 45.371125], + [9.347584, 45.366628], + [9.343087, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.371125], + [9.343087, 45.375621], + [9.347584, 45.375621], + [9.347584, 45.371125], + [9.343087, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.375621], + [9.343087, 45.380118], + [9.347584, 45.380118], + [9.347584, 45.375621], + [9.343087, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.380118], + [9.343087, 45.384614], + [9.347584, 45.384614], + [9.347584, 45.380118], + [9.343087, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.384614], + [9.343087, 45.389111], + [9.347584, 45.389111], + [9.347584, 45.384614], + [9.343087, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.389111], + [9.343087, 45.393608], + [9.347584, 45.393608], + [9.347584, 45.389111], + [9.343087, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.393608], + [9.343087, 45.398104], + [9.347584, 45.398104], + [9.347584, 45.393608], + [9.343087, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.398104], + [9.343087, 45.402601], + [9.347584, 45.402601], + [9.347584, 45.398104], + [9.343087, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.402601], + [9.343087, 45.407097], + [9.347584, 45.407097], + [9.347584, 45.402601], + [9.343087, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.407097], + [9.343087, 45.411594], + [9.347584, 45.411594], + [9.347584, 45.407097], + [9.343087, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.411594], + [9.343087, 45.416091], + [9.347584, 45.416091], + [9.347584, 45.411594], + [9.343087, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.416091], + [9.343087, 45.420587], + [9.347584, 45.420587], + [9.347584, 45.416091], + [9.343087, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.420587], + [9.343087, 45.425084], + [9.347584, 45.425084], + [9.347584, 45.420587], + [9.343087, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.425084], + [9.343087, 45.42958], + [9.347584, 45.42958], + [9.347584, 45.425084], + [9.343087, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.42958], + [9.343087, 45.434077], + [9.347584, 45.434077], + [9.347584, 45.42958], + [9.343087, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.434077], + [9.343087, 45.438574], + [9.347584, 45.438574], + [9.347584, 45.434077], + [9.343087, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.438574], + [9.343087, 45.44307], + [9.347584, 45.44307], + [9.347584, 45.438574], + [9.343087, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.44307], + [9.343087, 45.447567], + [9.347584, 45.447567], + [9.347584, 45.44307], + [9.343087, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.447567], + [9.343087, 45.452063], + [9.347584, 45.452063], + [9.347584, 45.447567], + [9.343087, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.452063], + [9.343087, 45.45656], + [9.347584, 45.45656], + [9.347584, 45.452063], + [9.343087, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.45656], + [9.343087, 45.461057], + [9.347584, 45.461057], + [9.347584, 45.45656], + [9.343087, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.461057], + [9.343087, 45.465553], + [9.347584, 45.465553], + [9.347584, 45.461057], + [9.343087, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.465553], + [9.343087, 45.47005], + [9.347584, 45.47005], + [9.347584, 45.465553], + [9.343087, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.47005], + [9.343087, 45.474547], + [9.347584, 45.474547], + [9.347584, 45.47005], + [9.343087, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.474547], + [9.343087, 45.479043], + [9.347584, 45.479043], + [9.347584, 45.474547], + [9.343087, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.479043], + [9.343087, 45.48354], + [9.347584, 45.48354], + [9.347584, 45.479043], + [9.343087, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.48354], + [9.343087, 45.488036], + [9.347584, 45.488036], + [9.347584, 45.48354], + [9.343087, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.488036], + [9.343087, 45.492533], + [9.347584, 45.492533], + [9.347584, 45.488036], + [9.343087, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.492533], + [9.343087, 45.49703], + [9.347584, 45.49703], + [9.347584, 45.492533], + [9.343087, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.49703], + [9.343087, 45.501526], + [9.347584, 45.501526], + [9.347584, 45.49703], + [9.343087, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.501526], + [9.343087, 45.506023], + [9.347584, 45.506023], + [9.347584, 45.501526], + [9.343087, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.506023], + [9.343087, 45.510519], + [9.347584, 45.510519], + [9.347584, 45.506023], + [9.343087, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.510519], + [9.343087, 45.515016], + [9.347584, 45.515016], + [9.347584, 45.510519], + [9.343087, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.515016], + [9.343087, 45.519513], + [9.347584, 45.519513], + [9.347584, 45.515016], + [9.343087, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.519513], + [9.343087, 45.524009], + [9.347584, 45.524009], + [9.347584, 45.519513], + [9.343087, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.524009], + [9.343087, 45.528506], + [9.347584, 45.528506], + [9.347584, 45.524009], + [9.343087, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.528506], + [9.343087, 45.533002], + [9.347584, 45.533002], + [9.347584, 45.528506], + [9.343087, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.533002], + [9.343087, 45.537499], + [9.347584, 45.537499], + [9.347584, 45.533002], + [9.343087, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.537499], + [9.343087, 45.541996], + [9.347584, 45.541996], + [9.347584, 45.537499], + [9.343087, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.541996], + [9.343087, 45.546492], + [9.347584, 45.546492], + [9.347584, 45.541996], + [9.343087, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.546492], + [9.343087, 45.550989], + [9.347584, 45.550989], + [9.347584, 45.546492], + [9.343087, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.550989], + [9.343087, 45.555485], + [9.347584, 45.555485], + [9.347584, 45.550989], + [9.343087, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.555485], + [9.343087, 45.559982], + [9.347584, 45.559982], + [9.347584, 45.555485], + [9.343087, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.559982], + [9.343087, 45.564479], + [9.347584, 45.564479], + [9.347584, 45.559982], + [9.343087, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.564479], + [9.343087, 45.568975], + [9.347584, 45.568975], + [9.347584, 45.564479], + [9.343087, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.568975], + [9.343087, 45.573472], + [9.347584, 45.573472], + [9.347584, 45.568975], + [9.343087, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.573472], + [9.343087, 45.577968], + [9.347584, 45.577968], + [9.347584, 45.573472], + [9.343087, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.577968], + [9.343087, 45.582465], + [9.347584, 45.582465], + [9.347584, 45.577968], + [9.343087, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.582465], + [9.343087, 45.586962], + [9.347584, 45.586962], + [9.347584, 45.582465], + [9.343087, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.586962], + [9.343087, 45.591458], + [9.347584, 45.591458], + [9.347584, 45.586962], + [9.343087, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.591458], + [9.343087, 45.595955], + [9.347584, 45.595955], + [9.347584, 45.591458], + [9.343087, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.595955], + [9.343087, 45.600451], + [9.347584, 45.600451], + [9.347584, 45.595955], + [9.343087, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.600451], + [9.343087, 45.604948], + [9.347584, 45.604948], + [9.347584, 45.600451], + [9.343087, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.604948], + [9.343087, 45.609445], + [9.347584, 45.609445], + [9.347584, 45.604948], + [9.343087, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.609445], + [9.343087, 45.613941], + [9.347584, 45.613941], + [9.347584, 45.609445], + [9.343087, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.613941], + [9.343087, 45.618438], + [9.347584, 45.618438], + [9.347584, 45.613941], + [9.343087, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.618438], + [9.343087, 45.622934], + [9.347584, 45.622934], + [9.347584, 45.618438], + [9.343087, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.622934], + [9.343087, 45.627431], + [9.347584, 45.627431], + [9.347584, 45.622934], + [9.343087, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.627431], + [9.343087, 45.631928], + [9.347584, 45.631928], + [9.347584, 45.627431], + [9.343087, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.631928], + [9.343087, 45.636424], + [9.347584, 45.636424], + [9.347584, 45.631928], + [9.343087, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.339648], + [9.347584, 45.344145], + [9.35208, 45.344145], + [9.35208, 45.339648], + [9.347584, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.344145], + [9.347584, 45.348642], + [9.35208, 45.348642], + [9.35208, 45.344145], + [9.347584, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.348642], + [9.347584, 45.353138], + [9.35208, 45.353138], + [9.35208, 45.348642], + [9.347584, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.353138], + [9.347584, 45.357635], + [9.35208, 45.357635], + [9.35208, 45.353138], + [9.347584, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.357635], + [9.347584, 45.362131], + [9.35208, 45.362131], + [9.35208, 45.357635], + [9.347584, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.362131], + [9.347584, 45.366628], + [9.35208, 45.366628], + [9.35208, 45.362131], + [9.347584, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.366628], + [9.347584, 45.371125], + [9.35208, 45.371125], + [9.35208, 45.366628], + [9.347584, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.371125], + [9.347584, 45.375621], + [9.35208, 45.375621], + [9.35208, 45.371125], + [9.347584, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.375621], + [9.347584, 45.380118], + [9.35208, 45.380118], + [9.35208, 45.375621], + [9.347584, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.380118], + [9.347584, 45.384614], + [9.35208, 45.384614], + [9.35208, 45.380118], + [9.347584, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.384614], + [9.347584, 45.389111], + [9.35208, 45.389111], + [9.35208, 45.384614], + [9.347584, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.389111], + [9.347584, 45.393608], + [9.35208, 45.393608], + [9.35208, 45.389111], + [9.347584, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.393608], + [9.347584, 45.398104], + [9.35208, 45.398104], + [9.35208, 45.393608], + [9.347584, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.398104], + [9.347584, 45.402601], + [9.35208, 45.402601], + [9.35208, 45.398104], + [9.347584, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.402601], + [9.347584, 45.407097], + [9.35208, 45.407097], + [9.35208, 45.402601], + [9.347584, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.407097], + [9.347584, 45.411594], + [9.35208, 45.411594], + [9.35208, 45.407097], + [9.347584, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.411594], + [9.347584, 45.416091], + [9.35208, 45.416091], + [9.35208, 45.411594], + [9.347584, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.416091], + [9.347584, 45.420587], + [9.35208, 45.420587], + [9.35208, 45.416091], + [9.347584, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.420587], + [9.347584, 45.425084], + [9.35208, 45.425084], + [9.35208, 45.420587], + [9.347584, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.425084], + [9.347584, 45.42958], + [9.35208, 45.42958], + [9.35208, 45.425084], + [9.347584, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.42958], + [9.347584, 45.434077], + [9.35208, 45.434077], + [9.35208, 45.42958], + [9.347584, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.434077], + [9.347584, 45.438574], + [9.35208, 45.438574], + [9.35208, 45.434077], + [9.347584, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.438574], + [9.347584, 45.44307], + [9.35208, 45.44307], + [9.35208, 45.438574], + [9.347584, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.44307], + [9.347584, 45.447567], + [9.35208, 45.447567], + [9.35208, 45.44307], + [9.347584, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.447567], + [9.347584, 45.452063], + [9.35208, 45.452063], + [9.35208, 45.447567], + [9.347584, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.452063], + [9.347584, 45.45656], + [9.35208, 45.45656], + [9.35208, 45.452063], + [9.347584, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.45656], + [9.347584, 45.461057], + [9.35208, 45.461057], + [9.35208, 45.45656], + [9.347584, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.461057], + [9.347584, 45.465553], + [9.35208, 45.465553], + [9.35208, 45.461057], + [9.347584, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.465553], + [9.347584, 45.47005], + [9.35208, 45.47005], + [9.35208, 45.465553], + [9.347584, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.47005], + [9.347584, 45.474547], + [9.35208, 45.474547], + [9.35208, 45.47005], + [9.347584, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.474547], + [9.347584, 45.479043], + [9.35208, 45.479043], + [9.35208, 45.474547], + [9.347584, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.479043], + [9.347584, 45.48354], + [9.35208, 45.48354], + [9.35208, 45.479043], + [9.347584, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.48354], + [9.347584, 45.488036], + [9.35208, 45.488036], + [9.35208, 45.48354], + [9.347584, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.488036], + [9.347584, 45.492533], + [9.35208, 45.492533], + [9.35208, 45.488036], + [9.347584, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.492533], + [9.347584, 45.49703], + [9.35208, 45.49703], + [9.35208, 45.492533], + [9.347584, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.49703], + [9.347584, 45.501526], + [9.35208, 45.501526], + [9.35208, 45.49703], + [9.347584, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.501526], + [9.347584, 45.506023], + [9.35208, 45.506023], + [9.35208, 45.501526], + [9.347584, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.506023], + [9.347584, 45.510519], + [9.35208, 45.510519], + [9.35208, 45.506023], + [9.347584, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.510519], + [9.347584, 45.515016], + [9.35208, 45.515016], + [9.35208, 45.510519], + [9.347584, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.515016], + [9.347584, 45.519513], + [9.35208, 45.519513], + [9.35208, 45.515016], + [9.347584, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.519513], + [9.347584, 45.524009], + [9.35208, 45.524009], + [9.35208, 45.519513], + [9.347584, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.524009], + [9.347584, 45.528506], + [9.35208, 45.528506], + [9.35208, 45.524009], + [9.347584, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.528506], + [9.347584, 45.533002], + [9.35208, 45.533002], + [9.35208, 45.528506], + [9.347584, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.533002], + [9.347584, 45.537499], + [9.35208, 45.537499], + [9.35208, 45.533002], + [9.347584, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.537499], + [9.347584, 45.541996], + [9.35208, 45.541996], + [9.35208, 45.537499], + [9.347584, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.541996], + [9.347584, 45.546492], + [9.35208, 45.546492], + [9.35208, 45.541996], + [9.347584, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.546492], + [9.347584, 45.550989], + [9.35208, 45.550989], + [9.35208, 45.546492], + [9.347584, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.550989], + [9.347584, 45.555485], + [9.35208, 45.555485], + [9.35208, 45.550989], + [9.347584, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.555485], + [9.347584, 45.559982], + [9.35208, 45.559982], + [9.35208, 45.555485], + [9.347584, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.559982], + [9.347584, 45.564479], + [9.35208, 45.564479], + [9.35208, 45.559982], + [9.347584, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.564479], + [9.347584, 45.568975], + [9.35208, 45.568975], + [9.35208, 45.564479], + [9.347584, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.568975], + [9.347584, 45.573472], + [9.35208, 45.573472], + [9.35208, 45.568975], + [9.347584, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.573472], + [9.347584, 45.577968], + [9.35208, 45.577968], + [9.35208, 45.573472], + [9.347584, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.577968], + [9.347584, 45.582465], + [9.35208, 45.582465], + [9.35208, 45.577968], + [9.347584, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.582465], + [9.347584, 45.586962], + [9.35208, 45.586962], + [9.35208, 45.582465], + [9.347584, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.586962], + [9.347584, 45.591458], + [9.35208, 45.591458], + [9.35208, 45.586962], + [9.347584, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.591458], + [9.347584, 45.595955], + [9.35208, 45.595955], + [9.35208, 45.591458], + [9.347584, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.595955], + [9.347584, 45.600451], + [9.35208, 45.600451], + [9.35208, 45.595955], + [9.347584, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.600451], + [9.347584, 45.604948], + [9.35208, 45.604948], + [9.35208, 45.600451], + [9.347584, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.604948], + [9.347584, 45.609445], + [9.35208, 45.609445], + [9.35208, 45.604948], + [9.347584, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.609445], + [9.347584, 45.613941], + [9.35208, 45.613941], + [9.35208, 45.609445], + [9.347584, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.613941], + [9.347584, 45.618438], + [9.35208, 45.618438], + [9.35208, 45.613941], + [9.347584, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.618438], + [9.347584, 45.622934], + [9.35208, 45.622934], + [9.35208, 45.618438], + [9.347584, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.622934], + [9.347584, 45.627431], + [9.35208, 45.627431], + [9.35208, 45.622934], + [9.347584, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.627431], + [9.347584, 45.631928], + [9.35208, 45.631928], + [9.35208, 45.627431], + [9.347584, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.631928], + [9.347584, 45.636424], + [9.35208, 45.636424], + [9.35208, 45.631928], + [9.347584, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.339648], + [9.35208, 45.344145], + [9.356577, 45.344145], + [9.356577, 45.339648], + [9.35208, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.344145], + [9.35208, 45.348642], + [9.356577, 45.348642], + [9.356577, 45.344145], + [9.35208, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.348642], + [9.35208, 45.353138], + [9.356577, 45.353138], + [9.356577, 45.348642], + [9.35208, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.353138], + [9.35208, 45.357635], + [9.356577, 45.357635], + [9.356577, 45.353138], + [9.35208, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.357635], + [9.35208, 45.362131], + [9.356577, 45.362131], + [9.356577, 45.357635], + [9.35208, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.362131], + [9.35208, 45.366628], + [9.356577, 45.366628], + [9.356577, 45.362131], + [9.35208, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.366628], + [9.35208, 45.371125], + [9.356577, 45.371125], + [9.356577, 45.366628], + [9.35208, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.371125], + [9.35208, 45.375621], + [9.356577, 45.375621], + [9.356577, 45.371125], + [9.35208, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.375621], + [9.35208, 45.380118], + [9.356577, 45.380118], + [9.356577, 45.375621], + [9.35208, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.380118], + [9.35208, 45.384614], + [9.356577, 45.384614], + [9.356577, 45.380118], + [9.35208, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.384614], + [9.35208, 45.389111], + [9.356577, 45.389111], + [9.356577, 45.384614], + [9.35208, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.389111], + [9.35208, 45.393608], + [9.356577, 45.393608], + [9.356577, 45.389111], + [9.35208, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.393608], + [9.35208, 45.398104], + [9.356577, 45.398104], + [9.356577, 45.393608], + [9.35208, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.398104], + [9.35208, 45.402601], + [9.356577, 45.402601], + [9.356577, 45.398104], + [9.35208, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.402601], + [9.35208, 45.407097], + [9.356577, 45.407097], + [9.356577, 45.402601], + [9.35208, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.407097], + [9.35208, 45.411594], + [9.356577, 45.411594], + [9.356577, 45.407097], + [9.35208, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.411594], + [9.35208, 45.416091], + [9.356577, 45.416091], + [9.356577, 45.411594], + [9.35208, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.416091], + [9.35208, 45.420587], + [9.356577, 45.420587], + [9.356577, 45.416091], + [9.35208, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.420587], + [9.35208, 45.425084], + [9.356577, 45.425084], + [9.356577, 45.420587], + [9.35208, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.425084], + [9.35208, 45.42958], + [9.356577, 45.42958], + [9.356577, 45.425084], + [9.35208, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.42958], + [9.35208, 45.434077], + [9.356577, 45.434077], + [9.356577, 45.42958], + [9.35208, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.434077], + [9.35208, 45.438574], + [9.356577, 45.438574], + [9.356577, 45.434077], + [9.35208, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.438574], + [9.35208, 45.44307], + [9.356577, 45.44307], + [9.356577, 45.438574], + [9.35208, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.44307], + [9.35208, 45.447567], + [9.356577, 45.447567], + [9.356577, 45.44307], + [9.35208, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.447567], + [9.35208, 45.452063], + [9.356577, 45.452063], + [9.356577, 45.447567], + [9.35208, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.452063], + [9.35208, 45.45656], + [9.356577, 45.45656], + [9.356577, 45.452063], + [9.35208, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.45656], + [9.35208, 45.461057], + [9.356577, 45.461057], + [9.356577, 45.45656], + [9.35208, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.461057], + [9.35208, 45.465553], + [9.356577, 45.465553], + [9.356577, 45.461057], + [9.35208, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.465553], + [9.35208, 45.47005], + [9.356577, 45.47005], + [9.356577, 45.465553], + [9.35208, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.47005], + [9.35208, 45.474547], + [9.356577, 45.474547], + [9.356577, 45.47005], + [9.35208, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.474547], + [9.35208, 45.479043], + [9.356577, 45.479043], + [9.356577, 45.474547], + [9.35208, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.479043], + [9.35208, 45.48354], + [9.356577, 45.48354], + [9.356577, 45.479043], + [9.35208, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.48354], + [9.35208, 45.488036], + [9.356577, 45.488036], + [9.356577, 45.48354], + [9.35208, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.488036], + [9.35208, 45.492533], + [9.356577, 45.492533], + [9.356577, 45.488036], + [9.35208, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.492533], + [9.35208, 45.49703], + [9.356577, 45.49703], + [9.356577, 45.492533], + [9.35208, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.49703], + [9.35208, 45.501526], + [9.356577, 45.501526], + [9.356577, 45.49703], + [9.35208, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.501526], + [9.35208, 45.506023], + [9.356577, 45.506023], + [9.356577, 45.501526], + [9.35208, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.506023], + [9.35208, 45.510519], + [9.356577, 45.510519], + [9.356577, 45.506023], + [9.35208, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.510519], + [9.35208, 45.515016], + [9.356577, 45.515016], + [9.356577, 45.510519], + [9.35208, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.515016], + [9.35208, 45.519513], + [9.356577, 45.519513], + [9.356577, 45.515016], + [9.35208, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.519513], + [9.35208, 45.524009], + [9.356577, 45.524009], + [9.356577, 45.519513], + [9.35208, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.524009], + [9.35208, 45.528506], + [9.356577, 45.528506], + [9.356577, 45.524009], + [9.35208, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.528506], + [9.35208, 45.533002], + [9.356577, 45.533002], + [9.356577, 45.528506], + [9.35208, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.533002], + [9.35208, 45.537499], + [9.356577, 45.537499], + [9.356577, 45.533002], + [9.35208, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.537499], + [9.35208, 45.541996], + [9.356577, 45.541996], + [9.356577, 45.537499], + [9.35208, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.541996], + [9.35208, 45.546492], + [9.356577, 45.546492], + [9.356577, 45.541996], + [9.35208, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.546492], + [9.35208, 45.550989], + [9.356577, 45.550989], + [9.356577, 45.546492], + [9.35208, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.550989], + [9.35208, 45.555485], + [9.356577, 45.555485], + [9.356577, 45.550989], + [9.35208, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.555485], + [9.35208, 45.559982], + [9.356577, 45.559982], + [9.356577, 45.555485], + [9.35208, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.559982], + [9.35208, 45.564479], + [9.356577, 45.564479], + [9.356577, 45.559982], + [9.35208, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.564479], + [9.35208, 45.568975], + [9.356577, 45.568975], + [9.356577, 45.564479], + [9.35208, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.568975], + [9.35208, 45.573472], + [9.356577, 45.573472], + [9.356577, 45.568975], + [9.35208, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.573472], + [9.35208, 45.577968], + [9.356577, 45.577968], + [9.356577, 45.573472], + [9.35208, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.577968], + [9.35208, 45.582465], + [9.356577, 45.582465], + [9.356577, 45.577968], + [9.35208, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.582465], + [9.35208, 45.586962], + [9.356577, 45.586962], + [9.356577, 45.582465], + [9.35208, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.586962], + [9.35208, 45.591458], + [9.356577, 45.591458], + [9.356577, 45.586962], + [9.35208, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.591458], + [9.35208, 45.595955], + [9.356577, 45.595955], + [9.356577, 45.591458], + [9.35208, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.595955], + [9.35208, 45.600451], + [9.356577, 45.600451], + [9.356577, 45.595955], + [9.35208, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.600451], + [9.35208, 45.604948], + [9.356577, 45.604948], + [9.356577, 45.600451], + [9.35208, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.604948], + [9.35208, 45.609445], + [9.356577, 45.609445], + [9.356577, 45.604948], + [9.35208, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.609445], + [9.35208, 45.613941], + [9.356577, 45.613941], + [9.356577, 45.609445], + [9.35208, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.613941], + [9.35208, 45.618438], + [9.356577, 45.618438], + [9.356577, 45.613941], + [9.35208, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.618438], + [9.35208, 45.622934], + [9.356577, 45.622934], + [9.356577, 45.618438], + [9.35208, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.622934], + [9.35208, 45.627431], + [9.356577, 45.627431], + [9.356577, 45.622934], + [9.35208, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.627431], + [9.35208, 45.631928], + [9.356577, 45.631928], + [9.356577, 45.627431], + [9.35208, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.631928], + [9.35208, 45.636424], + [9.356577, 45.636424], + [9.356577, 45.631928], + [9.35208, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.339648], + [9.356577, 45.344145], + [9.361074, 45.344145], + [9.361074, 45.339648], + [9.356577, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.344145], + [9.356577, 45.348642], + [9.361074, 45.348642], + [9.361074, 45.344145], + [9.356577, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.348642], + [9.356577, 45.353138], + [9.361074, 45.353138], + [9.361074, 45.348642], + [9.356577, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.353138], + [9.356577, 45.357635], + [9.361074, 45.357635], + [9.361074, 45.353138], + [9.356577, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.357635], + [9.356577, 45.362131], + [9.361074, 45.362131], + [9.361074, 45.357635], + [9.356577, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.362131], + [9.356577, 45.366628], + [9.361074, 45.366628], + [9.361074, 45.362131], + [9.356577, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.366628], + [9.356577, 45.371125], + [9.361074, 45.371125], + [9.361074, 45.366628], + [9.356577, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.371125], + [9.356577, 45.375621], + [9.361074, 45.375621], + [9.361074, 45.371125], + [9.356577, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.375621], + [9.356577, 45.380118], + [9.361074, 45.380118], + [9.361074, 45.375621], + [9.356577, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.380118], + [9.356577, 45.384614], + [9.361074, 45.384614], + [9.361074, 45.380118], + [9.356577, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.384614], + [9.356577, 45.389111], + [9.361074, 45.389111], + [9.361074, 45.384614], + [9.356577, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.389111], + [9.356577, 45.393608], + [9.361074, 45.393608], + [9.361074, 45.389111], + [9.356577, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.393608], + [9.356577, 45.398104], + [9.361074, 45.398104], + [9.361074, 45.393608], + [9.356577, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.398104], + [9.356577, 45.402601], + [9.361074, 45.402601], + [9.361074, 45.398104], + [9.356577, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.402601], + [9.356577, 45.407097], + [9.361074, 45.407097], + [9.361074, 45.402601], + [9.356577, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.407097], + [9.356577, 45.411594], + [9.361074, 45.411594], + [9.361074, 45.407097], + [9.356577, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.411594], + [9.356577, 45.416091], + [9.361074, 45.416091], + [9.361074, 45.411594], + [9.356577, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.416091], + [9.356577, 45.420587], + [9.361074, 45.420587], + [9.361074, 45.416091], + [9.356577, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.420587], + [9.356577, 45.425084], + [9.361074, 45.425084], + [9.361074, 45.420587], + [9.356577, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.425084], + [9.356577, 45.42958], + [9.361074, 45.42958], + [9.361074, 45.425084], + [9.356577, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.42958], + [9.356577, 45.434077], + [9.361074, 45.434077], + [9.361074, 45.42958], + [9.356577, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.434077], + [9.356577, 45.438574], + [9.361074, 45.438574], + [9.361074, 45.434077], + [9.356577, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.438574], + [9.356577, 45.44307], + [9.361074, 45.44307], + [9.361074, 45.438574], + [9.356577, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.44307], + [9.356577, 45.447567], + [9.361074, 45.447567], + [9.361074, 45.44307], + [9.356577, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.447567], + [9.356577, 45.452063], + [9.361074, 45.452063], + [9.361074, 45.447567], + [9.356577, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.452063], + [9.356577, 45.45656], + [9.361074, 45.45656], + [9.361074, 45.452063], + [9.356577, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.45656], + [9.356577, 45.461057], + [9.361074, 45.461057], + [9.361074, 45.45656], + [9.356577, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.461057], + [9.356577, 45.465553], + [9.361074, 45.465553], + [9.361074, 45.461057], + [9.356577, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.465553], + [9.356577, 45.47005], + [9.361074, 45.47005], + [9.361074, 45.465553], + [9.356577, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.47005], + [9.356577, 45.474547], + [9.361074, 45.474547], + [9.361074, 45.47005], + [9.356577, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.474547], + [9.356577, 45.479043], + [9.361074, 45.479043], + [9.361074, 45.474547], + [9.356577, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.479043], + [9.356577, 45.48354], + [9.361074, 45.48354], + [9.361074, 45.479043], + [9.356577, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.48354], + [9.356577, 45.488036], + [9.361074, 45.488036], + [9.361074, 45.48354], + [9.356577, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.488036], + [9.356577, 45.492533], + [9.361074, 45.492533], + [9.361074, 45.488036], + [9.356577, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.492533], + [9.356577, 45.49703], + [9.361074, 45.49703], + [9.361074, 45.492533], + [9.356577, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.49703], + [9.356577, 45.501526], + [9.361074, 45.501526], + [9.361074, 45.49703], + [9.356577, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.501526], + [9.356577, 45.506023], + [9.361074, 45.506023], + [9.361074, 45.501526], + [9.356577, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.506023], + [9.356577, 45.510519], + [9.361074, 45.510519], + [9.361074, 45.506023], + [9.356577, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.510519], + [9.356577, 45.515016], + [9.361074, 45.515016], + [9.361074, 45.510519], + [9.356577, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.515016], + [9.356577, 45.519513], + [9.361074, 45.519513], + [9.361074, 45.515016], + [9.356577, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.519513], + [9.356577, 45.524009], + [9.361074, 45.524009], + [9.361074, 45.519513], + [9.356577, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.524009], + [9.356577, 45.528506], + [9.361074, 45.528506], + [9.361074, 45.524009], + [9.356577, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.528506], + [9.356577, 45.533002], + [9.361074, 45.533002], + [9.361074, 45.528506], + [9.356577, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.533002], + [9.356577, 45.537499], + [9.361074, 45.537499], + [9.361074, 45.533002], + [9.356577, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.537499], + [9.356577, 45.541996], + [9.361074, 45.541996], + [9.361074, 45.537499], + [9.356577, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.541996], + [9.356577, 45.546492], + [9.361074, 45.546492], + [9.361074, 45.541996], + [9.356577, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.546492], + [9.356577, 45.550989], + [9.361074, 45.550989], + [9.361074, 45.546492], + [9.356577, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.550989], + [9.356577, 45.555485], + [9.361074, 45.555485], + [9.361074, 45.550989], + [9.356577, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.555485], + [9.356577, 45.559982], + [9.361074, 45.559982], + [9.361074, 45.555485], + [9.356577, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.559982], + [9.356577, 45.564479], + [9.361074, 45.564479], + [9.361074, 45.559982], + [9.356577, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.564479], + [9.356577, 45.568975], + [9.361074, 45.568975], + [9.361074, 45.564479], + [9.356577, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.568975], + [9.356577, 45.573472], + [9.361074, 45.573472], + [9.361074, 45.568975], + [9.356577, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.573472], + [9.356577, 45.577968], + [9.361074, 45.577968], + [9.361074, 45.573472], + [9.356577, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.577968], + [9.356577, 45.582465], + [9.361074, 45.582465], + [9.361074, 45.577968], + [9.356577, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.582465], + [9.356577, 45.586962], + [9.361074, 45.586962], + [9.361074, 45.582465], + [9.356577, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.586962], + [9.356577, 45.591458], + [9.361074, 45.591458], + [9.361074, 45.586962], + [9.356577, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.591458], + [9.356577, 45.595955], + [9.361074, 45.595955], + [9.361074, 45.591458], + [9.356577, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.595955], + [9.356577, 45.600451], + [9.361074, 45.600451], + [9.361074, 45.595955], + [9.356577, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.600451], + [9.356577, 45.604948], + [9.361074, 45.604948], + [9.361074, 45.600451], + [9.356577, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.604948], + [9.356577, 45.609445], + [9.361074, 45.609445], + [9.361074, 45.604948], + [9.356577, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.609445], + [9.356577, 45.613941], + [9.361074, 45.613941], + [9.361074, 45.609445], + [9.356577, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.613941], + [9.356577, 45.618438], + [9.361074, 45.618438], + [9.361074, 45.613941], + [9.356577, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.618438], + [9.356577, 45.622934], + [9.361074, 45.622934], + [9.361074, 45.618438], + [9.356577, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.622934], + [9.356577, 45.627431], + [9.361074, 45.627431], + [9.361074, 45.622934], + [9.356577, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.627431], + [9.356577, 45.631928], + [9.361074, 45.631928], + [9.361074, 45.627431], + [9.356577, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.631928], + [9.356577, 45.636424], + [9.361074, 45.636424], + [9.361074, 45.631928], + [9.356577, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.339648], + [9.361074, 45.344145], + [9.36557, 45.344145], + [9.36557, 45.339648], + [9.361074, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.344145], + [9.361074, 45.348642], + [9.36557, 45.348642], + [9.36557, 45.344145], + [9.361074, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.348642], + [9.361074, 45.353138], + [9.36557, 45.353138], + [9.36557, 45.348642], + [9.361074, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.353138], + [9.361074, 45.357635], + [9.36557, 45.357635], + [9.36557, 45.353138], + [9.361074, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.357635], + [9.361074, 45.362131], + [9.36557, 45.362131], + [9.36557, 45.357635], + [9.361074, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.362131], + [9.361074, 45.366628], + [9.36557, 45.366628], + [9.36557, 45.362131], + [9.361074, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.366628], + [9.361074, 45.371125], + [9.36557, 45.371125], + [9.36557, 45.366628], + [9.361074, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.371125], + [9.361074, 45.375621], + [9.36557, 45.375621], + [9.36557, 45.371125], + [9.361074, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.375621], + [9.361074, 45.380118], + [9.36557, 45.380118], + [9.36557, 45.375621], + [9.361074, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.380118], + [9.361074, 45.384614], + [9.36557, 45.384614], + [9.36557, 45.380118], + [9.361074, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.384614], + [9.361074, 45.389111], + [9.36557, 45.389111], + [9.36557, 45.384614], + [9.361074, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.389111], + [9.361074, 45.393608], + [9.36557, 45.393608], + [9.36557, 45.389111], + [9.361074, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.393608], + [9.361074, 45.398104], + [9.36557, 45.398104], + [9.36557, 45.393608], + [9.361074, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.398104], + [9.361074, 45.402601], + [9.36557, 45.402601], + [9.36557, 45.398104], + [9.361074, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.402601], + [9.361074, 45.407097], + [9.36557, 45.407097], + [9.36557, 45.402601], + [9.361074, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.407097], + [9.361074, 45.411594], + [9.36557, 45.411594], + [9.36557, 45.407097], + [9.361074, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.411594], + [9.361074, 45.416091], + [9.36557, 45.416091], + [9.36557, 45.411594], + [9.361074, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.416091], + [9.361074, 45.420587], + [9.36557, 45.420587], + [9.36557, 45.416091], + [9.361074, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.420587], + [9.361074, 45.425084], + [9.36557, 45.425084], + [9.36557, 45.420587], + [9.361074, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.425084], + [9.361074, 45.42958], + [9.36557, 45.42958], + [9.36557, 45.425084], + [9.361074, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.42958], + [9.361074, 45.434077], + [9.36557, 45.434077], + [9.36557, 45.42958], + [9.361074, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.434077], + [9.361074, 45.438574], + [9.36557, 45.438574], + [9.36557, 45.434077], + [9.361074, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.438574], + [9.361074, 45.44307], + [9.36557, 45.44307], + [9.36557, 45.438574], + [9.361074, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.44307], + [9.361074, 45.447567], + [9.36557, 45.447567], + [9.36557, 45.44307], + [9.361074, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.447567], + [9.361074, 45.452063], + [9.36557, 45.452063], + [9.36557, 45.447567], + [9.361074, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.452063], + [9.361074, 45.45656], + [9.36557, 45.45656], + [9.36557, 45.452063], + [9.361074, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.45656], + [9.361074, 45.461057], + [9.36557, 45.461057], + [9.36557, 45.45656], + [9.361074, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.461057], + [9.361074, 45.465553], + [9.36557, 45.465553], + [9.36557, 45.461057], + [9.361074, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.465553], + [9.361074, 45.47005], + [9.36557, 45.47005], + [9.36557, 45.465553], + [9.361074, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.47005], + [9.361074, 45.474547], + [9.36557, 45.474547], + [9.36557, 45.47005], + [9.361074, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.474547], + [9.361074, 45.479043], + [9.36557, 45.479043], + [9.36557, 45.474547], + [9.361074, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.479043], + [9.361074, 45.48354], + [9.36557, 45.48354], + [9.36557, 45.479043], + [9.361074, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.48354], + [9.361074, 45.488036], + [9.36557, 45.488036], + [9.36557, 45.48354], + [9.361074, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.488036], + [9.361074, 45.492533], + [9.36557, 45.492533], + [9.36557, 45.488036], + [9.361074, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.492533], + [9.361074, 45.49703], + [9.36557, 45.49703], + [9.36557, 45.492533], + [9.361074, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.49703], + [9.361074, 45.501526], + [9.36557, 45.501526], + [9.36557, 45.49703], + [9.361074, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.501526], + [9.361074, 45.506023], + [9.36557, 45.506023], + [9.36557, 45.501526], + [9.361074, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.506023], + [9.361074, 45.510519], + [9.36557, 45.510519], + [9.36557, 45.506023], + [9.361074, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.510519], + [9.361074, 45.515016], + [9.36557, 45.515016], + [9.36557, 45.510519], + [9.361074, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.515016], + [9.361074, 45.519513], + [9.36557, 45.519513], + [9.36557, 45.515016], + [9.361074, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.519513], + [9.361074, 45.524009], + [9.36557, 45.524009], + [9.36557, 45.519513], + [9.361074, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.524009], + [9.361074, 45.528506], + [9.36557, 45.528506], + [9.36557, 45.524009], + [9.361074, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.528506], + [9.361074, 45.533002], + [9.36557, 45.533002], + [9.36557, 45.528506], + [9.361074, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.533002], + [9.361074, 45.537499], + [9.36557, 45.537499], + [9.36557, 45.533002], + [9.361074, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.537499], + [9.361074, 45.541996], + [9.36557, 45.541996], + [9.36557, 45.537499], + [9.361074, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.541996], + [9.361074, 45.546492], + [9.36557, 45.546492], + [9.36557, 45.541996], + [9.361074, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.546492], + [9.361074, 45.550989], + [9.36557, 45.550989], + [9.36557, 45.546492], + [9.361074, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.550989], + [9.361074, 45.555485], + [9.36557, 45.555485], + [9.36557, 45.550989], + [9.361074, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.555485], + [9.361074, 45.559982], + [9.36557, 45.559982], + [9.36557, 45.555485], + [9.361074, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.559982], + [9.361074, 45.564479], + [9.36557, 45.564479], + [9.36557, 45.559982], + [9.361074, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.564479], + [9.361074, 45.568975], + [9.36557, 45.568975], + [9.36557, 45.564479], + [9.361074, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.568975], + [9.361074, 45.573472], + [9.36557, 45.573472], + [9.36557, 45.568975], + [9.361074, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.573472], + [9.361074, 45.577968], + [9.36557, 45.577968], + [9.36557, 45.573472], + [9.361074, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.577968], + [9.361074, 45.582465], + [9.36557, 45.582465], + [9.36557, 45.577968], + [9.361074, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.582465], + [9.361074, 45.586962], + [9.36557, 45.586962], + [9.36557, 45.582465], + [9.361074, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.586962], + [9.361074, 45.591458], + [9.36557, 45.591458], + [9.36557, 45.586962], + [9.361074, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.591458], + [9.361074, 45.595955], + [9.36557, 45.595955], + [9.36557, 45.591458], + [9.361074, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.595955], + [9.361074, 45.600451], + [9.36557, 45.600451], + [9.36557, 45.595955], + [9.361074, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.600451], + [9.361074, 45.604948], + [9.36557, 45.604948], + [9.36557, 45.600451], + [9.361074, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.604948], + [9.361074, 45.609445], + [9.36557, 45.609445], + [9.36557, 45.604948], + [9.361074, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.609445], + [9.361074, 45.613941], + [9.36557, 45.613941], + [9.36557, 45.609445], + [9.361074, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.613941], + [9.361074, 45.618438], + [9.36557, 45.618438], + [9.36557, 45.613941], + [9.361074, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.618438], + [9.361074, 45.622934], + [9.36557, 45.622934], + [9.36557, 45.618438], + [9.361074, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.622934], + [9.361074, 45.627431], + [9.36557, 45.627431], + [9.36557, 45.622934], + [9.361074, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.627431], + [9.361074, 45.631928], + [9.36557, 45.631928], + [9.36557, 45.627431], + [9.361074, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.631928], + [9.361074, 45.636424], + [9.36557, 45.636424], + [9.36557, 45.631928], + [9.361074, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.339648], + [9.36557, 45.344145], + [9.370067, 45.344145], + [9.370067, 45.339648], + [9.36557, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.344145], + [9.36557, 45.348642], + [9.370067, 45.348642], + [9.370067, 45.344145], + [9.36557, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.348642], + [9.36557, 45.353138], + [9.370067, 45.353138], + [9.370067, 45.348642], + [9.36557, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.353138], + [9.36557, 45.357635], + [9.370067, 45.357635], + [9.370067, 45.353138], + [9.36557, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.357635], + [9.36557, 45.362131], + [9.370067, 45.362131], + [9.370067, 45.357635], + [9.36557, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.362131], + [9.36557, 45.366628], + [9.370067, 45.366628], + [9.370067, 45.362131], + [9.36557, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.366628], + [9.36557, 45.371125], + [9.370067, 45.371125], + [9.370067, 45.366628], + [9.36557, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.371125], + [9.36557, 45.375621], + [9.370067, 45.375621], + [9.370067, 45.371125], + [9.36557, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.375621], + [9.36557, 45.380118], + [9.370067, 45.380118], + [9.370067, 45.375621], + [9.36557, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.380118], + [9.36557, 45.384614], + [9.370067, 45.384614], + [9.370067, 45.380118], + [9.36557, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.384614], + [9.36557, 45.389111], + [9.370067, 45.389111], + [9.370067, 45.384614], + [9.36557, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.389111], + [9.36557, 45.393608], + [9.370067, 45.393608], + [9.370067, 45.389111], + [9.36557, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.393608], + [9.36557, 45.398104], + [9.370067, 45.398104], + [9.370067, 45.393608], + [9.36557, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.398104], + [9.36557, 45.402601], + [9.370067, 45.402601], + [9.370067, 45.398104], + [9.36557, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.402601], + [9.36557, 45.407097], + [9.370067, 45.407097], + [9.370067, 45.402601], + [9.36557, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.407097], + [9.36557, 45.411594], + [9.370067, 45.411594], + [9.370067, 45.407097], + [9.36557, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.411594], + [9.36557, 45.416091], + [9.370067, 45.416091], + [9.370067, 45.411594], + [9.36557, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.416091], + [9.36557, 45.420587], + [9.370067, 45.420587], + [9.370067, 45.416091], + [9.36557, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.420587], + [9.36557, 45.425084], + [9.370067, 45.425084], + [9.370067, 45.420587], + [9.36557, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.425084], + [9.36557, 45.42958], + [9.370067, 45.42958], + [9.370067, 45.425084], + [9.36557, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.42958], + [9.36557, 45.434077], + [9.370067, 45.434077], + [9.370067, 45.42958], + [9.36557, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.434077], + [9.36557, 45.438574], + [9.370067, 45.438574], + [9.370067, 45.434077], + [9.36557, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.438574], + [9.36557, 45.44307], + [9.370067, 45.44307], + [9.370067, 45.438574], + [9.36557, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.44307], + [9.36557, 45.447567], + [9.370067, 45.447567], + [9.370067, 45.44307], + [9.36557, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.447567], + [9.36557, 45.452063], + [9.370067, 45.452063], + [9.370067, 45.447567], + [9.36557, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.452063], + [9.36557, 45.45656], + [9.370067, 45.45656], + [9.370067, 45.452063], + [9.36557, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.45656], + [9.36557, 45.461057], + [9.370067, 45.461057], + [9.370067, 45.45656], + [9.36557, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.461057], + [9.36557, 45.465553], + [9.370067, 45.465553], + [9.370067, 45.461057], + [9.36557, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.465553], + [9.36557, 45.47005], + [9.370067, 45.47005], + [9.370067, 45.465553], + [9.36557, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.47005], + [9.36557, 45.474547], + [9.370067, 45.474547], + [9.370067, 45.47005], + [9.36557, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.474547], + [9.36557, 45.479043], + [9.370067, 45.479043], + [9.370067, 45.474547], + [9.36557, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.479043], + [9.36557, 45.48354], + [9.370067, 45.48354], + [9.370067, 45.479043], + [9.36557, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.48354], + [9.36557, 45.488036], + [9.370067, 45.488036], + [9.370067, 45.48354], + [9.36557, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.488036], + [9.36557, 45.492533], + [9.370067, 45.492533], + [9.370067, 45.488036], + [9.36557, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.492533], + [9.36557, 45.49703], + [9.370067, 45.49703], + [9.370067, 45.492533], + [9.36557, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.49703], + [9.36557, 45.501526], + [9.370067, 45.501526], + [9.370067, 45.49703], + [9.36557, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.501526], + [9.36557, 45.506023], + [9.370067, 45.506023], + [9.370067, 45.501526], + [9.36557, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.506023], + [9.36557, 45.510519], + [9.370067, 45.510519], + [9.370067, 45.506023], + [9.36557, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.510519], + [9.36557, 45.515016], + [9.370067, 45.515016], + [9.370067, 45.510519], + [9.36557, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.515016], + [9.36557, 45.519513], + [9.370067, 45.519513], + [9.370067, 45.515016], + [9.36557, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.519513], + [9.36557, 45.524009], + [9.370067, 45.524009], + [9.370067, 45.519513], + [9.36557, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.524009], + [9.36557, 45.528506], + [9.370067, 45.528506], + [9.370067, 45.524009], + [9.36557, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.528506], + [9.36557, 45.533002], + [9.370067, 45.533002], + [9.370067, 45.528506], + [9.36557, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.533002], + [9.36557, 45.537499], + [9.370067, 45.537499], + [9.370067, 45.533002], + [9.36557, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.537499], + [9.36557, 45.541996], + [9.370067, 45.541996], + [9.370067, 45.537499], + [9.36557, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.541996], + [9.36557, 45.546492], + [9.370067, 45.546492], + [9.370067, 45.541996], + [9.36557, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.546492], + [9.36557, 45.550989], + [9.370067, 45.550989], + [9.370067, 45.546492], + [9.36557, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.550989], + [9.36557, 45.555485], + [9.370067, 45.555485], + [9.370067, 45.550989], + [9.36557, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.555485], + [9.36557, 45.559982], + [9.370067, 45.559982], + [9.370067, 45.555485], + [9.36557, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.559982], + [9.36557, 45.564479], + [9.370067, 45.564479], + [9.370067, 45.559982], + [9.36557, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.564479], + [9.36557, 45.568975], + [9.370067, 45.568975], + [9.370067, 45.564479], + [9.36557, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.568975], + [9.36557, 45.573472], + [9.370067, 45.573472], + [9.370067, 45.568975], + [9.36557, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.573472], + [9.36557, 45.577968], + [9.370067, 45.577968], + [9.370067, 45.573472], + [9.36557, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.577968], + [9.36557, 45.582465], + [9.370067, 45.582465], + [9.370067, 45.577968], + [9.36557, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.582465], + [9.36557, 45.586962], + [9.370067, 45.586962], + [9.370067, 45.582465], + [9.36557, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.586962], + [9.36557, 45.591458], + [9.370067, 45.591458], + [9.370067, 45.586962], + [9.36557, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.591458], + [9.36557, 45.595955], + [9.370067, 45.595955], + [9.370067, 45.591458], + [9.36557, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.595955], + [9.36557, 45.600451], + [9.370067, 45.600451], + [9.370067, 45.595955], + [9.36557, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.600451], + [9.36557, 45.604948], + [9.370067, 45.604948], + [9.370067, 45.600451], + [9.36557, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.604948], + [9.36557, 45.609445], + [9.370067, 45.609445], + [9.370067, 45.604948], + [9.36557, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.609445], + [9.36557, 45.613941], + [9.370067, 45.613941], + [9.370067, 45.609445], + [9.36557, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.613941], + [9.36557, 45.618438], + [9.370067, 45.618438], + [9.370067, 45.613941], + [9.36557, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.618438], + [9.36557, 45.622934], + [9.370067, 45.622934], + [9.370067, 45.618438], + [9.36557, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.622934], + [9.36557, 45.627431], + [9.370067, 45.627431], + [9.370067, 45.622934], + [9.36557, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.627431], + [9.36557, 45.631928], + [9.370067, 45.631928], + [9.370067, 45.627431], + [9.36557, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.631928], + [9.36557, 45.636424], + [9.370067, 45.636424], + [9.370067, 45.631928], + [9.36557, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.339648], + [9.370067, 45.344145], + [9.374563, 45.344145], + [9.374563, 45.339648], + [9.370067, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.344145], + [9.370067, 45.348642], + [9.374563, 45.348642], + [9.374563, 45.344145], + [9.370067, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.348642], + [9.370067, 45.353138], + [9.374563, 45.353138], + [9.374563, 45.348642], + [9.370067, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.353138], + [9.370067, 45.357635], + [9.374563, 45.357635], + [9.374563, 45.353138], + [9.370067, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.357635], + [9.370067, 45.362131], + [9.374563, 45.362131], + [9.374563, 45.357635], + [9.370067, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.362131], + [9.370067, 45.366628], + [9.374563, 45.366628], + [9.374563, 45.362131], + [9.370067, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.366628], + [9.370067, 45.371125], + [9.374563, 45.371125], + [9.374563, 45.366628], + [9.370067, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.371125], + [9.370067, 45.375621], + [9.374563, 45.375621], + [9.374563, 45.371125], + [9.370067, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.375621], + [9.370067, 45.380118], + [9.374563, 45.380118], + [9.374563, 45.375621], + [9.370067, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.380118], + [9.370067, 45.384614], + [9.374563, 45.384614], + [9.374563, 45.380118], + [9.370067, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.384614], + [9.370067, 45.389111], + [9.374563, 45.389111], + [9.374563, 45.384614], + [9.370067, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.389111], + [9.370067, 45.393608], + [9.374563, 45.393608], + [9.374563, 45.389111], + [9.370067, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.393608], + [9.370067, 45.398104], + [9.374563, 45.398104], + [9.374563, 45.393608], + [9.370067, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.398104], + [9.370067, 45.402601], + [9.374563, 45.402601], + [9.374563, 45.398104], + [9.370067, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.402601], + [9.370067, 45.407097], + [9.374563, 45.407097], + [9.374563, 45.402601], + [9.370067, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.407097], + [9.370067, 45.411594], + [9.374563, 45.411594], + [9.374563, 45.407097], + [9.370067, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.411594], + [9.370067, 45.416091], + [9.374563, 45.416091], + [9.374563, 45.411594], + [9.370067, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.416091], + [9.370067, 45.420587], + [9.374563, 45.420587], + [9.374563, 45.416091], + [9.370067, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.420587], + [9.370067, 45.425084], + [9.374563, 45.425084], + [9.374563, 45.420587], + [9.370067, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.425084], + [9.370067, 45.42958], + [9.374563, 45.42958], + [9.374563, 45.425084], + [9.370067, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.42958], + [9.370067, 45.434077], + [9.374563, 45.434077], + [9.374563, 45.42958], + [9.370067, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.434077], + [9.370067, 45.438574], + [9.374563, 45.438574], + [9.374563, 45.434077], + [9.370067, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.438574], + [9.370067, 45.44307], + [9.374563, 45.44307], + [9.374563, 45.438574], + [9.370067, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.44307], + [9.370067, 45.447567], + [9.374563, 45.447567], + [9.374563, 45.44307], + [9.370067, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.447567], + [9.370067, 45.452063], + [9.374563, 45.452063], + [9.374563, 45.447567], + [9.370067, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.452063], + [9.370067, 45.45656], + [9.374563, 45.45656], + [9.374563, 45.452063], + [9.370067, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.45656], + [9.370067, 45.461057], + [9.374563, 45.461057], + [9.374563, 45.45656], + [9.370067, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.461057], + [9.370067, 45.465553], + [9.374563, 45.465553], + [9.374563, 45.461057], + [9.370067, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.465553], + [9.370067, 45.47005], + [9.374563, 45.47005], + [9.374563, 45.465553], + [9.370067, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.47005], + [9.370067, 45.474547], + [9.374563, 45.474547], + [9.374563, 45.47005], + [9.370067, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.474547], + [9.370067, 45.479043], + [9.374563, 45.479043], + [9.374563, 45.474547], + [9.370067, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.479043], + [9.370067, 45.48354], + [9.374563, 45.48354], + [9.374563, 45.479043], + [9.370067, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.48354], + [9.370067, 45.488036], + [9.374563, 45.488036], + [9.374563, 45.48354], + [9.370067, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.488036], + [9.370067, 45.492533], + [9.374563, 45.492533], + [9.374563, 45.488036], + [9.370067, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.492533], + [9.370067, 45.49703], + [9.374563, 45.49703], + [9.374563, 45.492533], + [9.370067, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.49703], + [9.370067, 45.501526], + [9.374563, 45.501526], + [9.374563, 45.49703], + [9.370067, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.501526], + [9.370067, 45.506023], + [9.374563, 45.506023], + [9.374563, 45.501526], + [9.370067, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.506023], + [9.370067, 45.510519], + [9.374563, 45.510519], + [9.374563, 45.506023], + [9.370067, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.510519], + [9.370067, 45.515016], + [9.374563, 45.515016], + [9.374563, 45.510519], + [9.370067, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.515016], + [9.370067, 45.519513], + [9.374563, 45.519513], + [9.374563, 45.515016], + [9.370067, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.519513], + [9.370067, 45.524009], + [9.374563, 45.524009], + [9.374563, 45.519513], + [9.370067, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.524009], + [9.370067, 45.528506], + [9.374563, 45.528506], + [9.374563, 45.524009], + [9.370067, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.528506], + [9.370067, 45.533002], + [9.374563, 45.533002], + [9.374563, 45.528506], + [9.370067, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.533002], + [9.370067, 45.537499], + [9.374563, 45.537499], + [9.374563, 45.533002], + [9.370067, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.537499], + [9.370067, 45.541996], + [9.374563, 45.541996], + [9.374563, 45.537499], + [9.370067, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.541996], + [9.370067, 45.546492], + [9.374563, 45.546492], + [9.374563, 45.541996], + [9.370067, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.546492], + [9.370067, 45.550989], + [9.374563, 45.550989], + [9.374563, 45.546492], + [9.370067, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.550989], + [9.370067, 45.555485], + [9.374563, 45.555485], + [9.374563, 45.550989], + [9.370067, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.555485], + [9.370067, 45.559982], + [9.374563, 45.559982], + [9.374563, 45.555485], + [9.370067, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.559982], + [9.370067, 45.564479], + [9.374563, 45.564479], + [9.374563, 45.559982], + [9.370067, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.564479], + [9.370067, 45.568975], + [9.374563, 45.568975], + [9.374563, 45.564479], + [9.370067, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.568975], + [9.370067, 45.573472], + [9.374563, 45.573472], + [9.374563, 45.568975], + [9.370067, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.573472], + [9.370067, 45.577968], + [9.374563, 45.577968], + [9.374563, 45.573472], + [9.370067, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.577968], + [9.370067, 45.582465], + [9.374563, 45.582465], + [9.374563, 45.577968], + [9.370067, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.582465], + [9.370067, 45.586962], + [9.374563, 45.586962], + [9.374563, 45.582465], + [9.370067, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.586962], + [9.370067, 45.591458], + [9.374563, 45.591458], + [9.374563, 45.586962], + [9.370067, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.591458], + [9.370067, 45.595955], + [9.374563, 45.595955], + [9.374563, 45.591458], + [9.370067, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.595955], + [9.370067, 45.600451], + [9.374563, 45.600451], + [9.374563, 45.595955], + [9.370067, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.600451], + [9.370067, 45.604948], + [9.374563, 45.604948], + [9.374563, 45.600451], + [9.370067, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.604948], + [9.370067, 45.609445], + [9.374563, 45.609445], + [9.374563, 45.604948], + [9.370067, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.609445], + [9.370067, 45.613941], + [9.374563, 45.613941], + [9.374563, 45.609445], + [9.370067, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.613941], + [9.370067, 45.618438], + [9.374563, 45.618438], + [9.374563, 45.613941], + [9.370067, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.618438], + [9.370067, 45.622934], + [9.374563, 45.622934], + [9.374563, 45.618438], + [9.370067, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.622934], + [9.370067, 45.627431], + [9.374563, 45.627431], + [9.374563, 45.622934], + [9.370067, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.627431], + [9.370067, 45.631928], + [9.374563, 45.631928], + [9.374563, 45.627431], + [9.370067, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.631928], + [9.370067, 45.636424], + [9.374563, 45.636424], + [9.374563, 45.631928], + [9.370067, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.339648], + [9.374563, 45.344145], + [9.37906, 45.344145], + [9.37906, 45.339648], + [9.374563, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.344145], + [9.374563, 45.348642], + [9.37906, 45.348642], + [9.37906, 45.344145], + [9.374563, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.348642], + [9.374563, 45.353138], + [9.37906, 45.353138], + [9.37906, 45.348642], + [9.374563, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.353138], + [9.374563, 45.357635], + [9.37906, 45.357635], + [9.37906, 45.353138], + [9.374563, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.357635], + [9.374563, 45.362131], + [9.37906, 45.362131], + [9.37906, 45.357635], + [9.374563, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.362131], + [9.374563, 45.366628], + [9.37906, 45.366628], + [9.37906, 45.362131], + [9.374563, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.366628], + [9.374563, 45.371125], + [9.37906, 45.371125], + [9.37906, 45.366628], + [9.374563, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.371125], + [9.374563, 45.375621], + [9.37906, 45.375621], + [9.37906, 45.371125], + [9.374563, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.375621], + [9.374563, 45.380118], + [9.37906, 45.380118], + [9.37906, 45.375621], + [9.374563, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.380118], + [9.374563, 45.384614], + [9.37906, 45.384614], + [9.37906, 45.380118], + [9.374563, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.384614], + [9.374563, 45.389111], + [9.37906, 45.389111], + [9.37906, 45.384614], + [9.374563, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.389111], + [9.374563, 45.393608], + [9.37906, 45.393608], + [9.37906, 45.389111], + [9.374563, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.393608], + [9.374563, 45.398104], + [9.37906, 45.398104], + [9.37906, 45.393608], + [9.374563, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.398104], + [9.374563, 45.402601], + [9.37906, 45.402601], + [9.37906, 45.398104], + [9.374563, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.402601], + [9.374563, 45.407097], + [9.37906, 45.407097], + [9.37906, 45.402601], + [9.374563, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.407097], + [9.374563, 45.411594], + [9.37906, 45.411594], + [9.37906, 45.407097], + [9.374563, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.411594], + [9.374563, 45.416091], + [9.37906, 45.416091], + [9.37906, 45.411594], + [9.374563, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.416091], + [9.374563, 45.420587], + [9.37906, 45.420587], + [9.37906, 45.416091], + [9.374563, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.420587], + [9.374563, 45.425084], + [9.37906, 45.425084], + [9.37906, 45.420587], + [9.374563, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.425084], + [9.374563, 45.42958], + [9.37906, 45.42958], + [9.37906, 45.425084], + [9.374563, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.42958], + [9.374563, 45.434077], + [9.37906, 45.434077], + [9.37906, 45.42958], + [9.374563, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.434077], + [9.374563, 45.438574], + [9.37906, 45.438574], + [9.37906, 45.434077], + [9.374563, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.438574], + [9.374563, 45.44307], + [9.37906, 45.44307], + [9.37906, 45.438574], + [9.374563, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.44307], + [9.374563, 45.447567], + [9.37906, 45.447567], + [9.37906, 45.44307], + [9.374563, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.447567], + [9.374563, 45.452063], + [9.37906, 45.452063], + [9.37906, 45.447567], + [9.374563, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.452063], + [9.374563, 45.45656], + [9.37906, 45.45656], + [9.37906, 45.452063], + [9.374563, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.45656], + [9.374563, 45.461057], + [9.37906, 45.461057], + [9.37906, 45.45656], + [9.374563, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.461057], + [9.374563, 45.465553], + [9.37906, 45.465553], + [9.37906, 45.461057], + [9.374563, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.465553], + [9.374563, 45.47005], + [9.37906, 45.47005], + [9.37906, 45.465553], + [9.374563, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.47005], + [9.374563, 45.474547], + [9.37906, 45.474547], + [9.37906, 45.47005], + [9.374563, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.474547], + [9.374563, 45.479043], + [9.37906, 45.479043], + [9.37906, 45.474547], + [9.374563, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.479043], + [9.374563, 45.48354], + [9.37906, 45.48354], + [9.37906, 45.479043], + [9.374563, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.48354], + [9.374563, 45.488036], + [9.37906, 45.488036], + [9.37906, 45.48354], + [9.374563, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.488036], + [9.374563, 45.492533], + [9.37906, 45.492533], + [9.37906, 45.488036], + [9.374563, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.492533], + [9.374563, 45.49703], + [9.37906, 45.49703], + [9.37906, 45.492533], + [9.374563, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.49703], + [9.374563, 45.501526], + [9.37906, 45.501526], + [9.37906, 45.49703], + [9.374563, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.501526], + [9.374563, 45.506023], + [9.37906, 45.506023], + [9.37906, 45.501526], + [9.374563, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.506023], + [9.374563, 45.510519], + [9.37906, 45.510519], + [9.37906, 45.506023], + [9.374563, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.510519], + [9.374563, 45.515016], + [9.37906, 45.515016], + [9.37906, 45.510519], + [9.374563, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.515016], + [9.374563, 45.519513], + [9.37906, 45.519513], + [9.37906, 45.515016], + [9.374563, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.519513], + [9.374563, 45.524009], + [9.37906, 45.524009], + [9.37906, 45.519513], + [9.374563, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.524009], + [9.374563, 45.528506], + [9.37906, 45.528506], + [9.37906, 45.524009], + [9.374563, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.528506], + [9.374563, 45.533002], + [9.37906, 45.533002], + [9.37906, 45.528506], + [9.374563, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.533002], + [9.374563, 45.537499], + [9.37906, 45.537499], + [9.37906, 45.533002], + [9.374563, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.537499], + [9.374563, 45.541996], + [9.37906, 45.541996], + [9.37906, 45.537499], + [9.374563, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.541996], + [9.374563, 45.546492], + [9.37906, 45.546492], + [9.37906, 45.541996], + [9.374563, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.546492], + [9.374563, 45.550989], + [9.37906, 45.550989], + [9.37906, 45.546492], + [9.374563, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.550989], + [9.374563, 45.555485], + [9.37906, 45.555485], + [9.37906, 45.550989], + [9.374563, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.555485], + [9.374563, 45.559982], + [9.37906, 45.559982], + [9.37906, 45.555485], + [9.374563, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.559982], + [9.374563, 45.564479], + [9.37906, 45.564479], + [9.37906, 45.559982], + [9.374563, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.564479], + [9.374563, 45.568975], + [9.37906, 45.568975], + [9.37906, 45.564479], + [9.374563, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.568975], + [9.374563, 45.573472], + [9.37906, 45.573472], + [9.37906, 45.568975], + [9.374563, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.573472], + [9.374563, 45.577968], + [9.37906, 45.577968], + [9.37906, 45.573472], + [9.374563, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.577968], + [9.374563, 45.582465], + [9.37906, 45.582465], + [9.37906, 45.577968], + [9.374563, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.582465], + [9.374563, 45.586962], + [9.37906, 45.586962], + [9.37906, 45.582465], + [9.374563, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.586962], + [9.374563, 45.591458], + [9.37906, 45.591458], + [9.37906, 45.586962], + [9.374563, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.591458], + [9.374563, 45.595955], + [9.37906, 45.595955], + [9.37906, 45.591458], + [9.374563, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.595955], + [9.374563, 45.600451], + [9.37906, 45.600451], + [9.37906, 45.595955], + [9.374563, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.600451], + [9.374563, 45.604948], + [9.37906, 45.604948], + [9.37906, 45.600451], + [9.374563, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.604948], + [9.374563, 45.609445], + [9.37906, 45.609445], + [9.37906, 45.604948], + [9.374563, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.609445], + [9.374563, 45.613941], + [9.37906, 45.613941], + [9.37906, 45.609445], + [9.374563, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.613941], + [9.374563, 45.618438], + [9.37906, 45.618438], + [9.37906, 45.613941], + [9.374563, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.618438], + [9.374563, 45.622934], + [9.37906, 45.622934], + [9.37906, 45.618438], + [9.374563, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.622934], + [9.374563, 45.627431], + [9.37906, 45.627431], + [9.37906, 45.622934], + [9.374563, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.627431], + [9.374563, 45.631928], + [9.37906, 45.631928], + [9.37906, 45.627431], + [9.374563, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.631928], + [9.374563, 45.636424], + [9.37906, 45.636424], + [9.37906, 45.631928], + [9.374563, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.339648], + [9.37906, 45.344145], + [9.383557, 45.344145], + [9.383557, 45.339648], + [9.37906, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.344145], + [9.37906, 45.348642], + [9.383557, 45.348642], + [9.383557, 45.344145], + [9.37906, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.348642], + [9.37906, 45.353138], + [9.383557, 45.353138], + [9.383557, 45.348642], + [9.37906, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.353138], + [9.37906, 45.357635], + [9.383557, 45.357635], + [9.383557, 45.353138], + [9.37906, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.357635], + [9.37906, 45.362131], + [9.383557, 45.362131], + [9.383557, 45.357635], + [9.37906, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.362131], + [9.37906, 45.366628], + [9.383557, 45.366628], + [9.383557, 45.362131], + [9.37906, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.366628], + [9.37906, 45.371125], + [9.383557, 45.371125], + [9.383557, 45.366628], + [9.37906, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.371125], + [9.37906, 45.375621], + [9.383557, 45.375621], + [9.383557, 45.371125], + [9.37906, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.375621], + [9.37906, 45.380118], + [9.383557, 45.380118], + [9.383557, 45.375621], + [9.37906, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.380118], + [9.37906, 45.384614], + [9.383557, 45.384614], + [9.383557, 45.380118], + [9.37906, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.384614], + [9.37906, 45.389111], + [9.383557, 45.389111], + [9.383557, 45.384614], + [9.37906, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.389111], + [9.37906, 45.393608], + [9.383557, 45.393608], + [9.383557, 45.389111], + [9.37906, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.393608], + [9.37906, 45.398104], + [9.383557, 45.398104], + [9.383557, 45.393608], + [9.37906, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.398104], + [9.37906, 45.402601], + [9.383557, 45.402601], + [9.383557, 45.398104], + [9.37906, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.402601], + [9.37906, 45.407097], + [9.383557, 45.407097], + [9.383557, 45.402601], + [9.37906, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.407097], + [9.37906, 45.411594], + [9.383557, 45.411594], + [9.383557, 45.407097], + [9.37906, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.411594], + [9.37906, 45.416091], + [9.383557, 45.416091], + [9.383557, 45.411594], + [9.37906, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.416091], + [9.37906, 45.420587], + [9.383557, 45.420587], + [9.383557, 45.416091], + [9.37906, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.420587], + [9.37906, 45.425084], + [9.383557, 45.425084], + [9.383557, 45.420587], + [9.37906, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.425084], + [9.37906, 45.42958], + [9.383557, 45.42958], + [9.383557, 45.425084], + [9.37906, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.42958], + [9.37906, 45.434077], + [9.383557, 45.434077], + [9.383557, 45.42958], + [9.37906, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.434077], + [9.37906, 45.438574], + [9.383557, 45.438574], + [9.383557, 45.434077], + [9.37906, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.438574], + [9.37906, 45.44307], + [9.383557, 45.44307], + [9.383557, 45.438574], + [9.37906, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.44307], + [9.37906, 45.447567], + [9.383557, 45.447567], + [9.383557, 45.44307], + [9.37906, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.447567], + [9.37906, 45.452063], + [9.383557, 45.452063], + [9.383557, 45.447567], + [9.37906, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.452063], + [9.37906, 45.45656], + [9.383557, 45.45656], + [9.383557, 45.452063], + [9.37906, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.45656], + [9.37906, 45.461057], + [9.383557, 45.461057], + [9.383557, 45.45656], + [9.37906, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.461057], + [9.37906, 45.465553], + [9.383557, 45.465553], + [9.383557, 45.461057], + [9.37906, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.465553], + [9.37906, 45.47005], + [9.383557, 45.47005], + [9.383557, 45.465553], + [9.37906, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.47005], + [9.37906, 45.474547], + [9.383557, 45.474547], + [9.383557, 45.47005], + [9.37906, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.474547], + [9.37906, 45.479043], + [9.383557, 45.479043], + [9.383557, 45.474547], + [9.37906, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.479043], + [9.37906, 45.48354], + [9.383557, 45.48354], + [9.383557, 45.479043], + [9.37906, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.48354], + [9.37906, 45.488036], + [9.383557, 45.488036], + [9.383557, 45.48354], + [9.37906, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.488036], + [9.37906, 45.492533], + [9.383557, 45.492533], + [9.383557, 45.488036], + [9.37906, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.492533], + [9.37906, 45.49703], + [9.383557, 45.49703], + [9.383557, 45.492533], + [9.37906, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.49703], + [9.37906, 45.501526], + [9.383557, 45.501526], + [9.383557, 45.49703], + [9.37906, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.501526], + [9.37906, 45.506023], + [9.383557, 45.506023], + [9.383557, 45.501526], + [9.37906, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.506023], + [9.37906, 45.510519], + [9.383557, 45.510519], + [9.383557, 45.506023], + [9.37906, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.510519], + [9.37906, 45.515016], + [9.383557, 45.515016], + [9.383557, 45.510519], + [9.37906, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.515016], + [9.37906, 45.519513], + [9.383557, 45.519513], + [9.383557, 45.515016], + [9.37906, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.519513], + [9.37906, 45.524009], + [9.383557, 45.524009], + [9.383557, 45.519513], + [9.37906, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.524009], + [9.37906, 45.528506], + [9.383557, 45.528506], + [9.383557, 45.524009], + [9.37906, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.528506], + [9.37906, 45.533002], + [9.383557, 45.533002], + [9.383557, 45.528506], + [9.37906, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.533002], + [9.37906, 45.537499], + [9.383557, 45.537499], + [9.383557, 45.533002], + [9.37906, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.537499], + [9.37906, 45.541996], + [9.383557, 45.541996], + [9.383557, 45.537499], + [9.37906, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.541996], + [9.37906, 45.546492], + [9.383557, 45.546492], + [9.383557, 45.541996], + [9.37906, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.546492], + [9.37906, 45.550989], + [9.383557, 45.550989], + [9.383557, 45.546492], + [9.37906, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.550989], + [9.37906, 45.555485], + [9.383557, 45.555485], + [9.383557, 45.550989], + [9.37906, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.555485], + [9.37906, 45.559982], + [9.383557, 45.559982], + [9.383557, 45.555485], + [9.37906, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.559982], + [9.37906, 45.564479], + [9.383557, 45.564479], + [9.383557, 45.559982], + [9.37906, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.564479], + [9.37906, 45.568975], + [9.383557, 45.568975], + [9.383557, 45.564479], + [9.37906, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.568975], + [9.37906, 45.573472], + [9.383557, 45.573472], + [9.383557, 45.568975], + [9.37906, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.573472], + [9.37906, 45.577968], + [9.383557, 45.577968], + [9.383557, 45.573472], + [9.37906, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.577968], + [9.37906, 45.582465], + [9.383557, 45.582465], + [9.383557, 45.577968], + [9.37906, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.582465], + [9.37906, 45.586962], + [9.383557, 45.586962], + [9.383557, 45.582465], + [9.37906, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.586962], + [9.37906, 45.591458], + [9.383557, 45.591458], + [9.383557, 45.586962], + [9.37906, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.591458], + [9.37906, 45.595955], + [9.383557, 45.595955], + [9.383557, 45.591458], + [9.37906, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.595955], + [9.37906, 45.600451], + [9.383557, 45.600451], + [9.383557, 45.595955], + [9.37906, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.600451], + [9.37906, 45.604948], + [9.383557, 45.604948], + [9.383557, 45.600451], + [9.37906, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.604948], + [9.37906, 45.609445], + [9.383557, 45.609445], + [9.383557, 45.604948], + [9.37906, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.609445], + [9.37906, 45.613941], + [9.383557, 45.613941], + [9.383557, 45.609445], + [9.37906, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.613941], + [9.37906, 45.618438], + [9.383557, 45.618438], + [9.383557, 45.613941], + [9.37906, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.618438], + [9.37906, 45.622934], + [9.383557, 45.622934], + [9.383557, 45.618438], + [9.37906, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.622934], + [9.37906, 45.627431], + [9.383557, 45.627431], + [9.383557, 45.622934], + [9.37906, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.627431], + [9.37906, 45.631928], + [9.383557, 45.631928], + [9.383557, 45.627431], + [9.37906, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.631928], + [9.37906, 45.636424], + [9.383557, 45.636424], + [9.383557, 45.631928], + [9.37906, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.339648], + [9.383557, 45.344145], + [9.388053, 45.344145], + [9.388053, 45.339648], + [9.383557, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.344145], + [9.383557, 45.348642], + [9.388053, 45.348642], + [9.388053, 45.344145], + [9.383557, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.348642], + [9.383557, 45.353138], + [9.388053, 45.353138], + [9.388053, 45.348642], + [9.383557, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.353138], + [9.383557, 45.357635], + [9.388053, 45.357635], + [9.388053, 45.353138], + [9.383557, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.357635], + [9.383557, 45.362131], + [9.388053, 45.362131], + [9.388053, 45.357635], + [9.383557, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.362131], + [9.383557, 45.366628], + [9.388053, 45.366628], + [9.388053, 45.362131], + [9.383557, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.366628], + [9.383557, 45.371125], + [9.388053, 45.371125], + [9.388053, 45.366628], + [9.383557, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.371125], + [9.383557, 45.375621], + [9.388053, 45.375621], + [9.388053, 45.371125], + [9.383557, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.375621], + [9.383557, 45.380118], + [9.388053, 45.380118], + [9.388053, 45.375621], + [9.383557, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.380118], + [9.383557, 45.384614], + [9.388053, 45.384614], + [9.388053, 45.380118], + [9.383557, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.384614], + [9.383557, 45.389111], + [9.388053, 45.389111], + [9.388053, 45.384614], + [9.383557, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.389111], + [9.383557, 45.393608], + [9.388053, 45.393608], + [9.388053, 45.389111], + [9.383557, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.393608], + [9.383557, 45.398104], + [9.388053, 45.398104], + [9.388053, 45.393608], + [9.383557, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.398104], + [9.383557, 45.402601], + [9.388053, 45.402601], + [9.388053, 45.398104], + [9.383557, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.402601], + [9.383557, 45.407097], + [9.388053, 45.407097], + [9.388053, 45.402601], + [9.383557, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.407097], + [9.383557, 45.411594], + [9.388053, 45.411594], + [9.388053, 45.407097], + [9.383557, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.411594], + [9.383557, 45.416091], + [9.388053, 45.416091], + [9.388053, 45.411594], + [9.383557, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.416091], + [9.383557, 45.420587], + [9.388053, 45.420587], + [9.388053, 45.416091], + [9.383557, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.420587], + [9.383557, 45.425084], + [9.388053, 45.425084], + [9.388053, 45.420587], + [9.383557, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.425084], + [9.383557, 45.42958], + [9.388053, 45.42958], + [9.388053, 45.425084], + [9.383557, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.42958], + [9.383557, 45.434077], + [9.388053, 45.434077], + [9.388053, 45.42958], + [9.383557, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.434077], + [9.383557, 45.438574], + [9.388053, 45.438574], + [9.388053, 45.434077], + [9.383557, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.438574], + [9.383557, 45.44307], + [9.388053, 45.44307], + [9.388053, 45.438574], + [9.383557, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.44307], + [9.383557, 45.447567], + [9.388053, 45.447567], + [9.388053, 45.44307], + [9.383557, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.447567], + [9.383557, 45.452063], + [9.388053, 45.452063], + [9.388053, 45.447567], + [9.383557, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.452063], + [9.383557, 45.45656], + [9.388053, 45.45656], + [9.388053, 45.452063], + [9.383557, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.45656], + [9.383557, 45.461057], + [9.388053, 45.461057], + [9.388053, 45.45656], + [9.383557, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.461057], + [9.383557, 45.465553], + [9.388053, 45.465553], + [9.388053, 45.461057], + [9.383557, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.465553], + [9.383557, 45.47005], + [9.388053, 45.47005], + [9.388053, 45.465553], + [9.383557, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.47005], + [9.383557, 45.474547], + [9.388053, 45.474547], + [9.388053, 45.47005], + [9.383557, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.474547], + [9.383557, 45.479043], + [9.388053, 45.479043], + [9.388053, 45.474547], + [9.383557, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.479043], + [9.383557, 45.48354], + [9.388053, 45.48354], + [9.388053, 45.479043], + [9.383557, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.48354], + [9.383557, 45.488036], + [9.388053, 45.488036], + [9.388053, 45.48354], + [9.383557, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.488036], + [9.383557, 45.492533], + [9.388053, 45.492533], + [9.388053, 45.488036], + [9.383557, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.492533], + [9.383557, 45.49703], + [9.388053, 45.49703], + [9.388053, 45.492533], + [9.383557, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.49703], + [9.383557, 45.501526], + [9.388053, 45.501526], + [9.388053, 45.49703], + [9.383557, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.501526], + [9.383557, 45.506023], + [9.388053, 45.506023], + [9.388053, 45.501526], + [9.383557, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.506023], + [9.383557, 45.510519], + [9.388053, 45.510519], + [9.388053, 45.506023], + [9.383557, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.510519], + [9.383557, 45.515016], + [9.388053, 45.515016], + [9.388053, 45.510519], + [9.383557, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.515016], + [9.383557, 45.519513], + [9.388053, 45.519513], + [9.388053, 45.515016], + [9.383557, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.519513], + [9.383557, 45.524009], + [9.388053, 45.524009], + [9.388053, 45.519513], + [9.383557, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.524009], + [9.383557, 45.528506], + [9.388053, 45.528506], + [9.388053, 45.524009], + [9.383557, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.528506], + [9.383557, 45.533002], + [9.388053, 45.533002], + [9.388053, 45.528506], + [9.383557, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.533002], + [9.383557, 45.537499], + [9.388053, 45.537499], + [9.388053, 45.533002], + [9.383557, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.537499], + [9.383557, 45.541996], + [9.388053, 45.541996], + [9.388053, 45.537499], + [9.383557, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.541996], + [9.383557, 45.546492], + [9.388053, 45.546492], + [9.388053, 45.541996], + [9.383557, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.546492], + [9.383557, 45.550989], + [9.388053, 45.550989], + [9.388053, 45.546492], + [9.383557, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.550989], + [9.383557, 45.555485], + [9.388053, 45.555485], + [9.388053, 45.550989], + [9.383557, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.555485], + [9.383557, 45.559982], + [9.388053, 45.559982], + [9.388053, 45.555485], + [9.383557, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.559982], + [9.383557, 45.564479], + [9.388053, 45.564479], + [9.388053, 45.559982], + [9.383557, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.564479], + [9.383557, 45.568975], + [9.388053, 45.568975], + [9.388053, 45.564479], + [9.383557, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.568975], + [9.383557, 45.573472], + [9.388053, 45.573472], + [9.388053, 45.568975], + [9.383557, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.573472], + [9.383557, 45.577968], + [9.388053, 45.577968], + [9.388053, 45.573472], + [9.383557, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.577968], + [9.383557, 45.582465], + [9.388053, 45.582465], + [9.388053, 45.577968], + [9.383557, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.582465], + [9.383557, 45.586962], + [9.388053, 45.586962], + [9.388053, 45.582465], + [9.383557, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.586962], + [9.383557, 45.591458], + [9.388053, 45.591458], + [9.388053, 45.586962], + [9.383557, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.591458], + [9.383557, 45.595955], + [9.388053, 45.595955], + [9.388053, 45.591458], + [9.383557, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.595955], + [9.383557, 45.600451], + [9.388053, 45.600451], + [9.388053, 45.595955], + [9.383557, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.600451], + [9.383557, 45.604948], + [9.388053, 45.604948], + [9.388053, 45.600451], + [9.383557, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.604948], + [9.383557, 45.609445], + [9.388053, 45.609445], + [9.388053, 45.604948], + [9.383557, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.609445], + [9.383557, 45.613941], + [9.388053, 45.613941], + [9.388053, 45.609445], + [9.383557, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.613941], + [9.383557, 45.618438], + [9.388053, 45.618438], + [9.388053, 45.613941], + [9.383557, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.618438], + [9.383557, 45.622934], + [9.388053, 45.622934], + [9.388053, 45.618438], + [9.383557, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.622934], + [9.383557, 45.627431], + [9.388053, 45.627431], + [9.388053, 45.622934], + [9.383557, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.627431], + [9.383557, 45.631928], + [9.388053, 45.631928], + [9.388053, 45.627431], + [9.383557, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.631928], + [9.383557, 45.636424], + [9.388053, 45.636424], + [9.388053, 45.631928], + [9.383557, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.339648], + [9.388053, 45.344145], + [9.39255, 45.344145], + [9.39255, 45.339648], + [9.388053, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.344145], + [9.388053, 45.348642], + [9.39255, 45.348642], + [9.39255, 45.344145], + [9.388053, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.348642], + [9.388053, 45.353138], + [9.39255, 45.353138], + [9.39255, 45.348642], + [9.388053, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.353138], + [9.388053, 45.357635], + [9.39255, 45.357635], + [9.39255, 45.353138], + [9.388053, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.357635], + [9.388053, 45.362131], + [9.39255, 45.362131], + [9.39255, 45.357635], + [9.388053, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.362131], + [9.388053, 45.366628], + [9.39255, 45.366628], + [9.39255, 45.362131], + [9.388053, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.366628], + [9.388053, 45.371125], + [9.39255, 45.371125], + [9.39255, 45.366628], + [9.388053, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.371125], + [9.388053, 45.375621], + [9.39255, 45.375621], + [9.39255, 45.371125], + [9.388053, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.375621], + [9.388053, 45.380118], + [9.39255, 45.380118], + [9.39255, 45.375621], + [9.388053, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.380118], + [9.388053, 45.384614], + [9.39255, 45.384614], + [9.39255, 45.380118], + [9.388053, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.384614], + [9.388053, 45.389111], + [9.39255, 45.389111], + [9.39255, 45.384614], + [9.388053, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.389111], + [9.388053, 45.393608], + [9.39255, 45.393608], + [9.39255, 45.389111], + [9.388053, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.393608], + [9.388053, 45.398104], + [9.39255, 45.398104], + [9.39255, 45.393608], + [9.388053, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.398104], + [9.388053, 45.402601], + [9.39255, 45.402601], + [9.39255, 45.398104], + [9.388053, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.402601], + [9.388053, 45.407097], + [9.39255, 45.407097], + [9.39255, 45.402601], + [9.388053, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.407097], + [9.388053, 45.411594], + [9.39255, 45.411594], + [9.39255, 45.407097], + [9.388053, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.411594], + [9.388053, 45.416091], + [9.39255, 45.416091], + [9.39255, 45.411594], + [9.388053, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.416091], + [9.388053, 45.420587], + [9.39255, 45.420587], + [9.39255, 45.416091], + [9.388053, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.420587], + [9.388053, 45.425084], + [9.39255, 45.425084], + [9.39255, 45.420587], + [9.388053, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.425084], + [9.388053, 45.42958], + [9.39255, 45.42958], + [9.39255, 45.425084], + [9.388053, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.42958], + [9.388053, 45.434077], + [9.39255, 45.434077], + [9.39255, 45.42958], + [9.388053, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.434077], + [9.388053, 45.438574], + [9.39255, 45.438574], + [9.39255, 45.434077], + [9.388053, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.438574], + [9.388053, 45.44307], + [9.39255, 45.44307], + [9.39255, 45.438574], + [9.388053, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.44307], + [9.388053, 45.447567], + [9.39255, 45.447567], + [9.39255, 45.44307], + [9.388053, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.447567], + [9.388053, 45.452063], + [9.39255, 45.452063], + [9.39255, 45.447567], + [9.388053, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.452063], + [9.388053, 45.45656], + [9.39255, 45.45656], + [9.39255, 45.452063], + [9.388053, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.45656], + [9.388053, 45.461057], + [9.39255, 45.461057], + [9.39255, 45.45656], + [9.388053, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.461057], + [9.388053, 45.465553], + [9.39255, 45.465553], + [9.39255, 45.461057], + [9.388053, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.465553], + [9.388053, 45.47005], + [9.39255, 45.47005], + [9.39255, 45.465553], + [9.388053, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.47005], + [9.388053, 45.474547], + [9.39255, 45.474547], + [9.39255, 45.47005], + [9.388053, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.474547], + [9.388053, 45.479043], + [9.39255, 45.479043], + [9.39255, 45.474547], + [9.388053, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.479043], + [9.388053, 45.48354], + [9.39255, 45.48354], + [9.39255, 45.479043], + [9.388053, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.48354], + [9.388053, 45.488036], + [9.39255, 45.488036], + [9.39255, 45.48354], + [9.388053, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.488036], + [9.388053, 45.492533], + [9.39255, 45.492533], + [9.39255, 45.488036], + [9.388053, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.492533], + [9.388053, 45.49703], + [9.39255, 45.49703], + [9.39255, 45.492533], + [9.388053, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.49703], + [9.388053, 45.501526], + [9.39255, 45.501526], + [9.39255, 45.49703], + [9.388053, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.501526], + [9.388053, 45.506023], + [9.39255, 45.506023], + [9.39255, 45.501526], + [9.388053, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.506023], + [9.388053, 45.510519], + [9.39255, 45.510519], + [9.39255, 45.506023], + [9.388053, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.510519], + [9.388053, 45.515016], + [9.39255, 45.515016], + [9.39255, 45.510519], + [9.388053, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.515016], + [9.388053, 45.519513], + [9.39255, 45.519513], + [9.39255, 45.515016], + [9.388053, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.519513], + [9.388053, 45.524009], + [9.39255, 45.524009], + [9.39255, 45.519513], + [9.388053, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.524009], + [9.388053, 45.528506], + [9.39255, 45.528506], + [9.39255, 45.524009], + [9.388053, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.528506], + [9.388053, 45.533002], + [9.39255, 45.533002], + [9.39255, 45.528506], + [9.388053, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.533002], + [9.388053, 45.537499], + [9.39255, 45.537499], + [9.39255, 45.533002], + [9.388053, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.537499], + [9.388053, 45.541996], + [9.39255, 45.541996], + [9.39255, 45.537499], + [9.388053, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.541996], + [9.388053, 45.546492], + [9.39255, 45.546492], + [9.39255, 45.541996], + [9.388053, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.546492], + [9.388053, 45.550989], + [9.39255, 45.550989], + [9.39255, 45.546492], + [9.388053, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.550989], + [9.388053, 45.555485], + [9.39255, 45.555485], + [9.39255, 45.550989], + [9.388053, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.555485], + [9.388053, 45.559982], + [9.39255, 45.559982], + [9.39255, 45.555485], + [9.388053, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.559982], + [9.388053, 45.564479], + [9.39255, 45.564479], + [9.39255, 45.559982], + [9.388053, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.564479], + [9.388053, 45.568975], + [9.39255, 45.568975], + [9.39255, 45.564479], + [9.388053, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.568975], + [9.388053, 45.573472], + [9.39255, 45.573472], + [9.39255, 45.568975], + [9.388053, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.573472], + [9.388053, 45.577968], + [9.39255, 45.577968], + [9.39255, 45.573472], + [9.388053, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.577968], + [9.388053, 45.582465], + [9.39255, 45.582465], + [9.39255, 45.577968], + [9.388053, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.582465], + [9.388053, 45.586962], + [9.39255, 45.586962], + [9.39255, 45.582465], + [9.388053, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.586962], + [9.388053, 45.591458], + [9.39255, 45.591458], + [9.39255, 45.586962], + [9.388053, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.591458], + [9.388053, 45.595955], + [9.39255, 45.595955], + [9.39255, 45.591458], + [9.388053, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.595955], + [9.388053, 45.600451], + [9.39255, 45.600451], + [9.39255, 45.595955], + [9.388053, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.600451], + [9.388053, 45.604948], + [9.39255, 45.604948], + [9.39255, 45.600451], + [9.388053, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.604948], + [9.388053, 45.609445], + [9.39255, 45.609445], + [9.39255, 45.604948], + [9.388053, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.609445], + [9.388053, 45.613941], + [9.39255, 45.613941], + [9.39255, 45.609445], + [9.388053, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.613941], + [9.388053, 45.618438], + [9.39255, 45.618438], + [9.39255, 45.613941], + [9.388053, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.618438], + [9.388053, 45.622934], + [9.39255, 45.622934], + [9.39255, 45.618438], + [9.388053, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.622934], + [9.388053, 45.627431], + [9.39255, 45.627431], + [9.39255, 45.622934], + [9.388053, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.627431], + [9.388053, 45.631928], + [9.39255, 45.631928], + [9.39255, 45.627431], + [9.388053, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.631928], + [9.388053, 45.636424], + [9.39255, 45.636424], + [9.39255, 45.631928], + [9.388053, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.339648], + [9.39255, 45.344145], + [9.397046, 45.344145], + [9.397046, 45.339648], + [9.39255, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.344145], + [9.39255, 45.348642], + [9.397046, 45.348642], + [9.397046, 45.344145], + [9.39255, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.348642], + [9.39255, 45.353138], + [9.397046, 45.353138], + [9.397046, 45.348642], + [9.39255, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.353138], + [9.39255, 45.357635], + [9.397046, 45.357635], + [9.397046, 45.353138], + [9.39255, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.357635], + [9.39255, 45.362131], + [9.397046, 45.362131], + [9.397046, 45.357635], + [9.39255, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.362131], + [9.39255, 45.366628], + [9.397046, 45.366628], + [9.397046, 45.362131], + [9.39255, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.366628], + [9.39255, 45.371125], + [9.397046, 45.371125], + [9.397046, 45.366628], + [9.39255, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.371125], + [9.39255, 45.375621], + [9.397046, 45.375621], + [9.397046, 45.371125], + [9.39255, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.375621], + [9.39255, 45.380118], + [9.397046, 45.380118], + [9.397046, 45.375621], + [9.39255, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.380118], + [9.39255, 45.384614], + [9.397046, 45.384614], + [9.397046, 45.380118], + [9.39255, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.384614], + [9.39255, 45.389111], + [9.397046, 45.389111], + [9.397046, 45.384614], + [9.39255, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.389111], + [9.39255, 45.393608], + [9.397046, 45.393608], + [9.397046, 45.389111], + [9.39255, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.393608], + [9.39255, 45.398104], + [9.397046, 45.398104], + [9.397046, 45.393608], + [9.39255, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.398104], + [9.39255, 45.402601], + [9.397046, 45.402601], + [9.397046, 45.398104], + [9.39255, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.402601], + [9.39255, 45.407097], + [9.397046, 45.407097], + [9.397046, 45.402601], + [9.39255, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.407097], + [9.39255, 45.411594], + [9.397046, 45.411594], + [9.397046, 45.407097], + [9.39255, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.411594], + [9.39255, 45.416091], + [9.397046, 45.416091], + [9.397046, 45.411594], + [9.39255, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.416091], + [9.39255, 45.420587], + [9.397046, 45.420587], + [9.397046, 45.416091], + [9.39255, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.420587], + [9.39255, 45.425084], + [9.397046, 45.425084], + [9.397046, 45.420587], + [9.39255, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.425084], + [9.39255, 45.42958], + [9.397046, 45.42958], + [9.397046, 45.425084], + [9.39255, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.42958], + [9.39255, 45.434077], + [9.397046, 45.434077], + [9.397046, 45.42958], + [9.39255, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.434077], + [9.39255, 45.438574], + [9.397046, 45.438574], + [9.397046, 45.434077], + [9.39255, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.438574], + [9.39255, 45.44307], + [9.397046, 45.44307], + [9.397046, 45.438574], + [9.39255, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.44307], + [9.39255, 45.447567], + [9.397046, 45.447567], + [9.397046, 45.44307], + [9.39255, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.447567], + [9.39255, 45.452063], + [9.397046, 45.452063], + [9.397046, 45.447567], + [9.39255, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.452063], + [9.39255, 45.45656], + [9.397046, 45.45656], + [9.397046, 45.452063], + [9.39255, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.45656], + [9.39255, 45.461057], + [9.397046, 45.461057], + [9.397046, 45.45656], + [9.39255, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.461057], + [9.39255, 45.465553], + [9.397046, 45.465553], + [9.397046, 45.461057], + [9.39255, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.465553], + [9.39255, 45.47005], + [9.397046, 45.47005], + [9.397046, 45.465553], + [9.39255, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.47005], + [9.39255, 45.474547], + [9.397046, 45.474547], + [9.397046, 45.47005], + [9.39255, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.474547], + [9.39255, 45.479043], + [9.397046, 45.479043], + [9.397046, 45.474547], + [9.39255, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.479043], + [9.39255, 45.48354], + [9.397046, 45.48354], + [9.397046, 45.479043], + [9.39255, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.48354], + [9.39255, 45.488036], + [9.397046, 45.488036], + [9.397046, 45.48354], + [9.39255, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.488036], + [9.39255, 45.492533], + [9.397046, 45.492533], + [9.397046, 45.488036], + [9.39255, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.492533], + [9.39255, 45.49703], + [9.397046, 45.49703], + [9.397046, 45.492533], + [9.39255, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.49703], + [9.39255, 45.501526], + [9.397046, 45.501526], + [9.397046, 45.49703], + [9.39255, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.501526], + [9.39255, 45.506023], + [9.397046, 45.506023], + [9.397046, 45.501526], + [9.39255, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.506023], + [9.39255, 45.510519], + [9.397046, 45.510519], + [9.397046, 45.506023], + [9.39255, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.510519], + [9.39255, 45.515016], + [9.397046, 45.515016], + [9.397046, 45.510519], + [9.39255, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.515016], + [9.39255, 45.519513], + [9.397046, 45.519513], + [9.397046, 45.515016], + [9.39255, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.519513], + [9.39255, 45.524009], + [9.397046, 45.524009], + [9.397046, 45.519513], + [9.39255, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.524009], + [9.39255, 45.528506], + [9.397046, 45.528506], + [9.397046, 45.524009], + [9.39255, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.528506], + [9.39255, 45.533002], + [9.397046, 45.533002], + [9.397046, 45.528506], + [9.39255, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.533002], + [9.39255, 45.537499], + [9.397046, 45.537499], + [9.397046, 45.533002], + [9.39255, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.537499], + [9.39255, 45.541996], + [9.397046, 45.541996], + [9.397046, 45.537499], + [9.39255, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.541996], + [9.39255, 45.546492], + [9.397046, 45.546492], + [9.397046, 45.541996], + [9.39255, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.546492], + [9.39255, 45.550989], + [9.397046, 45.550989], + [9.397046, 45.546492], + [9.39255, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.550989], + [9.39255, 45.555485], + [9.397046, 45.555485], + [9.397046, 45.550989], + [9.39255, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.555485], + [9.39255, 45.559982], + [9.397046, 45.559982], + [9.397046, 45.555485], + [9.39255, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.559982], + [9.39255, 45.564479], + [9.397046, 45.564479], + [9.397046, 45.559982], + [9.39255, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.564479], + [9.39255, 45.568975], + [9.397046, 45.568975], + [9.397046, 45.564479], + [9.39255, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.568975], + [9.39255, 45.573472], + [9.397046, 45.573472], + [9.397046, 45.568975], + [9.39255, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.573472], + [9.39255, 45.577968], + [9.397046, 45.577968], + [9.397046, 45.573472], + [9.39255, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.577968], + [9.39255, 45.582465], + [9.397046, 45.582465], + [9.397046, 45.577968], + [9.39255, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.582465], + [9.39255, 45.586962], + [9.397046, 45.586962], + [9.397046, 45.582465], + [9.39255, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.586962], + [9.39255, 45.591458], + [9.397046, 45.591458], + [9.397046, 45.586962], + [9.39255, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.591458], + [9.39255, 45.595955], + [9.397046, 45.595955], + [9.397046, 45.591458], + [9.39255, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.595955], + [9.39255, 45.600451], + [9.397046, 45.600451], + [9.397046, 45.595955], + [9.39255, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.600451], + [9.39255, 45.604948], + [9.397046, 45.604948], + [9.397046, 45.600451], + [9.39255, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.604948], + [9.39255, 45.609445], + [9.397046, 45.609445], + [9.397046, 45.604948], + [9.39255, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.609445], + [9.39255, 45.613941], + [9.397046, 45.613941], + [9.397046, 45.609445], + [9.39255, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.613941], + [9.39255, 45.618438], + [9.397046, 45.618438], + [9.397046, 45.613941], + [9.39255, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.618438], + [9.39255, 45.622934], + [9.397046, 45.622934], + [9.397046, 45.618438], + [9.39255, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.622934], + [9.39255, 45.627431], + [9.397046, 45.627431], + [9.397046, 45.622934], + [9.39255, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.627431], + [9.39255, 45.631928], + [9.397046, 45.631928], + [9.397046, 45.627431], + [9.39255, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.631928], + [9.39255, 45.636424], + [9.397046, 45.636424], + [9.397046, 45.631928], + [9.39255, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.339648], + [9.397046, 45.344145], + [9.401543, 45.344145], + [9.401543, 45.339648], + [9.397046, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.344145], + [9.397046, 45.348642], + [9.401543, 45.348642], + [9.401543, 45.344145], + [9.397046, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.348642], + [9.397046, 45.353138], + [9.401543, 45.353138], + [9.401543, 45.348642], + [9.397046, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.353138], + [9.397046, 45.357635], + [9.401543, 45.357635], + [9.401543, 45.353138], + [9.397046, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.357635], + [9.397046, 45.362131], + [9.401543, 45.362131], + [9.401543, 45.357635], + [9.397046, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.362131], + [9.397046, 45.366628], + [9.401543, 45.366628], + [9.401543, 45.362131], + [9.397046, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.366628], + [9.397046, 45.371125], + [9.401543, 45.371125], + [9.401543, 45.366628], + [9.397046, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.371125], + [9.397046, 45.375621], + [9.401543, 45.375621], + [9.401543, 45.371125], + [9.397046, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.375621], + [9.397046, 45.380118], + [9.401543, 45.380118], + [9.401543, 45.375621], + [9.397046, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.380118], + [9.397046, 45.384614], + [9.401543, 45.384614], + [9.401543, 45.380118], + [9.397046, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.384614], + [9.397046, 45.389111], + [9.401543, 45.389111], + [9.401543, 45.384614], + [9.397046, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.389111], + [9.397046, 45.393608], + [9.401543, 45.393608], + [9.401543, 45.389111], + [9.397046, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.393608], + [9.397046, 45.398104], + [9.401543, 45.398104], + [9.401543, 45.393608], + [9.397046, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.398104], + [9.397046, 45.402601], + [9.401543, 45.402601], + [9.401543, 45.398104], + [9.397046, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.402601], + [9.397046, 45.407097], + [9.401543, 45.407097], + [9.401543, 45.402601], + [9.397046, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.407097], + [9.397046, 45.411594], + [9.401543, 45.411594], + [9.401543, 45.407097], + [9.397046, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.411594], + [9.397046, 45.416091], + [9.401543, 45.416091], + [9.401543, 45.411594], + [9.397046, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.416091], + [9.397046, 45.420587], + [9.401543, 45.420587], + [9.401543, 45.416091], + [9.397046, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.420587], + [9.397046, 45.425084], + [9.401543, 45.425084], + [9.401543, 45.420587], + [9.397046, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.425084], + [9.397046, 45.42958], + [9.401543, 45.42958], + [9.401543, 45.425084], + [9.397046, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.42958], + [9.397046, 45.434077], + [9.401543, 45.434077], + [9.401543, 45.42958], + [9.397046, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.434077], + [9.397046, 45.438574], + [9.401543, 45.438574], + [9.401543, 45.434077], + [9.397046, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.438574], + [9.397046, 45.44307], + [9.401543, 45.44307], + [9.401543, 45.438574], + [9.397046, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.44307], + [9.397046, 45.447567], + [9.401543, 45.447567], + [9.401543, 45.44307], + [9.397046, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.447567], + [9.397046, 45.452063], + [9.401543, 45.452063], + [9.401543, 45.447567], + [9.397046, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.452063], + [9.397046, 45.45656], + [9.401543, 45.45656], + [9.401543, 45.452063], + [9.397046, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.45656], + [9.397046, 45.461057], + [9.401543, 45.461057], + [9.401543, 45.45656], + [9.397046, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.461057], + [9.397046, 45.465553], + [9.401543, 45.465553], + [9.401543, 45.461057], + [9.397046, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.465553], + [9.397046, 45.47005], + [9.401543, 45.47005], + [9.401543, 45.465553], + [9.397046, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.47005], + [9.397046, 45.474547], + [9.401543, 45.474547], + [9.401543, 45.47005], + [9.397046, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.474547], + [9.397046, 45.479043], + [9.401543, 45.479043], + [9.401543, 45.474547], + [9.397046, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.479043], + [9.397046, 45.48354], + [9.401543, 45.48354], + [9.401543, 45.479043], + [9.397046, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.48354], + [9.397046, 45.488036], + [9.401543, 45.488036], + [9.401543, 45.48354], + [9.397046, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.488036], + [9.397046, 45.492533], + [9.401543, 45.492533], + [9.401543, 45.488036], + [9.397046, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.492533], + [9.397046, 45.49703], + [9.401543, 45.49703], + [9.401543, 45.492533], + [9.397046, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.49703], + [9.397046, 45.501526], + [9.401543, 45.501526], + [9.401543, 45.49703], + [9.397046, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.501526], + [9.397046, 45.506023], + [9.401543, 45.506023], + [9.401543, 45.501526], + [9.397046, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.506023], + [9.397046, 45.510519], + [9.401543, 45.510519], + [9.401543, 45.506023], + [9.397046, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.510519], + [9.397046, 45.515016], + [9.401543, 45.515016], + [9.401543, 45.510519], + [9.397046, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.515016], + [9.397046, 45.519513], + [9.401543, 45.519513], + [9.401543, 45.515016], + [9.397046, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.519513], + [9.397046, 45.524009], + [9.401543, 45.524009], + [9.401543, 45.519513], + [9.397046, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.524009], + [9.397046, 45.528506], + [9.401543, 45.528506], + [9.401543, 45.524009], + [9.397046, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.528506], + [9.397046, 45.533002], + [9.401543, 45.533002], + [9.401543, 45.528506], + [9.397046, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.533002], + [9.397046, 45.537499], + [9.401543, 45.537499], + [9.401543, 45.533002], + [9.397046, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.537499], + [9.397046, 45.541996], + [9.401543, 45.541996], + [9.401543, 45.537499], + [9.397046, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.541996], + [9.397046, 45.546492], + [9.401543, 45.546492], + [9.401543, 45.541996], + [9.397046, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.546492], + [9.397046, 45.550989], + [9.401543, 45.550989], + [9.401543, 45.546492], + [9.397046, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.550989], + [9.397046, 45.555485], + [9.401543, 45.555485], + [9.401543, 45.550989], + [9.397046, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.555485], + [9.397046, 45.559982], + [9.401543, 45.559982], + [9.401543, 45.555485], + [9.397046, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.559982], + [9.397046, 45.564479], + [9.401543, 45.564479], + [9.401543, 45.559982], + [9.397046, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.564479], + [9.397046, 45.568975], + [9.401543, 45.568975], + [9.401543, 45.564479], + [9.397046, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.568975], + [9.397046, 45.573472], + [9.401543, 45.573472], + [9.401543, 45.568975], + [9.397046, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.573472], + [9.397046, 45.577968], + [9.401543, 45.577968], + [9.401543, 45.573472], + [9.397046, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.577968], + [9.397046, 45.582465], + [9.401543, 45.582465], + [9.401543, 45.577968], + [9.397046, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.582465], + [9.397046, 45.586962], + [9.401543, 45.586962], + [9.401543, 45.582465], + [9.397046, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.586962], + [9.397046, 45.591458], + [9.401543, 45.591458], + [9.401543, 45.586962], + [9.397046, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.591458], + [9.397046, 45.595955], + [9.401543, 45.595955], + [9.401543, 45.591458], + [9.397046, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.595955], + [9.397046, 45.600451], + [9.401543, 45.600451], + [9.401543, 45.595955], + [9.397046, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.600451], + [9.397046, 45.604948], + [9.401543, 45.604948], + [9.401543, 45.600451], + [9.397046, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.604948], + [9.397046, 45.609445], + [9.401543, 45.609445], + [9.401543, 45.604948], + [9.397046, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.609445], + [9.397046, 45.613941], + [9.401543, 45.613941], + [9.401543, 45.609445], + [9.397046, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.613941], + [9.397046, 45.618438], + [9.401543, 45.618438], + [9.401543, 45.613941], + [9.397046, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.618438], + [9.397046, 45.622934], + [9.401543, 45.622934], + [9.401543, 45.618438], + [9.397046, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.622934], + [9.397046, 45.627431], + [9.401543, 45.627431], + [9.401543, 45.622934], + [9.397046, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.627431], + [9.397046, 45.631928], + [9.401543, 45.631928], + [9.401543, 45.627431], + [9.397046, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.631928], + [9.397046, 45.636424], + [9.401543, 45.636424], + [9.401543, 45.631928], + [9.397046, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.339648], + [9.401543, 45.344145], + [9.40604, 45.344145], + [9.40604, 45.339648], + [9.401543, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.344145], + [9.401543, 45.348642], + [9.40604, 45.348642], + [9.40604, 45.344145], + [9.401543, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.348642], + [9.401543, 45.353138], + [9.40604, 45.353138], + [9.40604, 45.348642], + [9.401543, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.353138], + [9.401543, 45.357635], + [9.40604, 45.357635], + [9.40604, 45.353138], + [9.401543, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.357635], + [9.401543, 45.362131], + [9.40604, 45.362131], + [9.40604, 45.357635], + [9.401543, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.362131], + [9.401543, 45.366628], + [9.40604, 45.366628], + [9.40604, 45.362131], + [9.401543, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.366628], + [9.401543, 45.371125], + [9.40604, 45.371125], + [9.40604, 45.366628], + [9.401543, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.371125], + [9.401543, 45.375621], + [9.40604, 45.375621], + [9.40604, 45.371125], + [9.401543, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.375621], + [9.401543, 45.380118], + [9.40604, 45.380118], + [9.40604, 45.375621], + [9.401543, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.380118], + [9.401543, 45.384614], + [9.40604, 45.384614], + [9.40604, 45.380118], + [9.401543, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.384614], + [9.401543, 45.389111], + [9.40604, 45.389111], + [9.40604, 45.384614], + [9.401543, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.389111], + [9.401543, 45.393608], + [9.40604, 45.393608], + [9.40604, 45.389111], + [9.401543, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.393608], + [9.401543, 45.398104], + [9.40604, 45.398104], + [9.40604, 45.393608], + [9.401543, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.398104], + [9.401543, 45.402601], + [9.40604, 45.402601], + [9.40604, 45.398104], + [9.401543, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.402601], + [9.401543, 45.407097], + [9.40604, 45.407097], + [9.40604, 45.402601], + [9.401543, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.407097], + [9.401543, 45.411594], + [9.40604, 45.411594], + [9.40604, 45.407097], + [9.401543, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.411594], + [9.401543, 45.416091], + [9.40604, 45.416091], + [9.40604, 45.411594], + [9.401543, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.416091], + [9.401543, 45.420587], + [9.40604, 45.420587], + [9.40604, 45.416091], + [9.401543, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.420587], + [9.401543, 45.425084], + [9.40604, 45.425084], + [9.40604, 45.420587], + [9.401543, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.425084], + [9.401543, 45.42958], + [9.40604, 45.42958], + [9.40604, 45.425084], + [9.401543, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.42958], + [9.401543, 45.434077], + [9.40604, 45.434077], + [9.40604, 45.42958], + [9.401543, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.434077], + [9.401543, 45.438574], + [9.40604, 45.438574], + [9.40604, 45.434077], + [9.401543, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.438574], + [9.401543, 45.44307], + [9.40604, 45.44307], + [9.40604, 45.438574], + [9.401543, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.44307], + [9.401543, 45.447567], + [9.40604, 45.447567], + [9.40604, 45.44307], + [9.401543, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.447567], + [9.401543, 45.452063], + [9.40604, 45.452063], + [9.40604, 45.447567], + [9.401543, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.452063], + [9.401543, 45.45656], + [9.40604, 45.45656], + [9.40604, 45.452063], + [9.401543, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.45656], + [9.401543, 45.461057], + [9.40604, 45.461057], + [9.40604, 45.45656], + [9.401543, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.461057], + [9.401543, 45.465553], + [9.40604, 45.465553], + [9.40604, 45.461057], + [9.401543, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.465553], + [9.401543, 45.47005], + [9.40604, 45.47005], + [9.40604, 45.465553], + [9.401543, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.47005], + [9.401543, 45.474547], + [9.40604, 45.474547], + [9.40604, 45.47005], + [9.401543, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.474547], + [9.401543, 45.479043], + [9.40604, 45.479043], + [9.40604, 45.474547], + [9.401543, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.479043], + [9.401543, 45.48354], + [9.40604, 45.48354], + [9.40604, 45.479043], + [9.401543, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.48354], + [9.401543, 45.488036], + [9.40604, 45.488036], + [9.40604, 45.48354], + [9.401543, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.488036], + [9.401543, 45.492533], + [9.40604, 45.492533], + [9.40604, 45.488036], + [9.401543, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.492533], + [9.401543, 45.49703], + [9.40604, 45.49703], + [9.40604, 45.492533], + [9.401543, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.49703], + [9.401543, 45.501526], + [9.40604, 45.501526], + [9.40604, 45.49703], + [9.401543, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.501526], + [9.401543, 45.506023], + [9.40604, 45.506023], + [9.40604, 45.501526], + [9.401543, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.506023], + [9.401543, 45.510519], + [9.40604, 45.510519], + [9.40604, 45.506023], + [9.401543, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.510519], + [9.401543, 45.515016], + [9.40604, 45.515016], + [9.40604, 45.510519], + [9.401543, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.515016], + [9.401543, 45.519513], + [9.40604, 45.519513], + [9.40604, 45.515016], + [9.401543, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.519513], + [9.401543, 45.524009], + [9.40604, 45.524009], + [9.40604, 45.519513], + [9.401543, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.524009], + [9.401543, 45.528506], + [9.40604, 45.528506], + [9.40604, 45.524009], + [9.401543, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.528506], + [9.401543, 45.533002], + [9.40604, 45.533002], + [9.40604, 45.528506], + [9.401543, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.533002], + [9.401543, 45.537499], + [9.40604, 45.537499], + [9.40604, 45.533002], + [9.401543, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.537499], + [9.401543, 45.541996], + [9.40604, 45.541996], + [9.40604, 45.537499], + [9.401543, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.541996], + [9.401543, 45.546492], + [9.40604, 45.546492], + [9.40604, 45.541996], + [9.401543, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.546492], + [9.401543, 45.550989], + [9.40604, 45.550989], + [9.40604, 45.546492], + [9.401543, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.550989], + [9.401543, 45.555485], + [9.40604, 45.555485], + [9.40604, 45.550989], + [9.401543, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.555485], + [9.401543, 45.559982], + [9.40604, 45.559982], + [9.40604, 45.555485], + [9.401543, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.559982], + [9.401543, 45.564479], + [9.40604, 45.564479], + [9.40604, 45.559982], + [9.401543, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.564479], + [9.401543, 45.568975], + [9.40604, 45.568975], + [9.40604, 45.564479], + [9.401543, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.568975], + [9.401543, 45.573472], + [9.40604, 45.573472], + [9.40604, 45.568975], + [9.401543, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.573472], + [9.401543, 45.577968], + [9.40604, 45.577968], + [9.40604, 45.573472], + [9.401543, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.577968], + [9.401543, 45.582465], + [9.40604, 45.582465], + [9.40604, 45.577968], + [9.401543, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.582465], + [9.401543, 45.586962], + [9.40604, 45.586962], + [9.40604, 45.582465], + [9.401543, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.586962], + [9.401543, 45.591458], + [9.40604, 45.591458], + [9.40604, 45.586962], + [9.401543, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.591458], + [9.401543, 45.595955], + [9.40604, 45.595955], + [9.40604, 45.591458], + [9.401543, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.595955], + [9.401543, 45.600451], + [9.40604, 45.600451], + [9.40604, 45.595955], + [9.401543, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.600451], + [9.401543, 45.604948], + [9.40604, 45.604948], + [9.40604, 45.600451], + [9.401543, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.604948], + [9.401543, 45.609445], + [9.40604, 45.609445], + [9.40604, 45.604948], + [9.401543, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.609445], + [9.401543, 45.613941], + [9.40604, 45.613941], + [9.40604, 45.609445], + [9.401543, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.613941], + [9.401543, 45.618438], + [9.40604, 45.618438], + [9.40604, 45.613941], + [9.401543, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.618438], + [9.401543, 45.622934], + [9.40604, 45.622934], + [9.40604, 45.618438], + [9.401543, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.622934], + [9.401543, 45.627431], + [9.40604, 45.627431], + [9.40604, 45.622934], + [9.401543, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.627431], + [9.401543, 45.631928], + [9.40604, 45.631928], + [9.40604, 45.627431], + [9.401543, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.631928], + [9.401543, 45.636424], + [9.40604, 45.636424], + [9.40604, 45.631928], + [9.401543, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.339648], + [9.40604, 45.344145], + [9.410536, 45.344145], + [9.410536, 45.339648], + [9.40604, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.344145], + [9.40604, 45.348642], + [9.410536, 45.348642], + [9.410536, 45.344145], + [9.40604, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.348642], + [9.40604, 45.353138], + [9.410536, 45.353138], + [9.410536, 45.348642], + [9.40604, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.353138], + [9.40604, 45.357635], + [9.410536, 45.357635], + [9.410536, 45.353138], + [9.40604, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.357635], + [9.40604, 45.362131], + [9.410536, 45.362131], + [9.410536, 45.357635], + [9.40604, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.362131], + [9.40604, 45.366628], + [9.410536, 45.366628], + [9.410536, 45.362131], + [9.40604, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.366628], + [9.40604, 45.371125], + [9.410536, 45.371125], + [9.410536, 45.366628], + [9.40604, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.371125], + [9.40604, 45.375621], + [9.410536, 45.375621], + [9.410536, 45.371125], + [9.40604, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.375621], + [9.40604, 45.380118], + [9.410536, 45.380118], + [9.410536, 45.375621], + [9.40604, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.380118], + [9.40604, 45.384614], + [9.410536, 45.384614], + [9.410536, 45.380118], + [9.40604, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.384614], + [9.40604, 45.389111], + [9.410536, 45.389111], + [9.410536, 45.384614], + [9.40604, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.389111], + [9.40604, 45.393608], + [9.410536, 45.393608], + [9.410536, 45.389111], + [9.40604, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.393608], + [9.40604, 45.398104], + [9.410536, 45.398104], + [9.410536, 45.393608], + [9.40604, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.398104], + [9.40604, 45.402601], + [9.410536, 45.402601], + [9.410536, 45.398104], + [9.40604, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.402601], + [9.40604, 45.407097], + [9.410536, 45.407097], + [9.410536, 45.402601], + [9.40604, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.407097], + [9.40604, 45.411594], + [9.410536, 45.411594], + [9.410536, 45.407097], + [9.40604, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.411594], + [9.40604, 45.416091], + [9.410536, 45.416091], + [9.410536, 45.411594], + [9.40604, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.416091], + [9.40604, 45.420587], + [9.410536, 45.420587], + [9.410536, 45.416091], + [9.40604, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.420587], + [9.40604, 45.425084], + [9.410536, 45.425084], + [9.410536, 45.420587], + [9.40604, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.425084], + [9.40604, 45.42958], + [9.410536, 45.42958], + [9.410536, 45.425084], + [9.40604, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.42958], + [9.40604, 45.434077], + [9.410536, 45.434077], + [9.410536, 45.42958], + [9.40604, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.434077], + [9.40604, 45.438574], + [9.410536, 45.438574], + [9.410536, 45.434077], + [9.40604, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.438574], + [9.40604, 45.44307], + [9.410536, 45.44307], + [9.410536, 45.438574], + [9.40604, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.44307], + [9.40604, 45.447567], + [9.410536, 45.447567], + [9.410536, 45.44307], + [9.40604, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.447567], + [9.40604, 45.452063], + [9.410536, 45.452063], + [9.410536, 45.447567], + [9.40604, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.452063], + [9.40604, 45.45656], + [9.410536, 45.45656], + [9.410536, 45.452063], + [9.40604, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.45656], + [9.40604, 45.461057], + [9.410536, 45.461057], + [9.410536, 45.45656], + [9.40604, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.461057], + [9.40604, 45.465553], + [9.410536, 45.465553], + [9.410536, 45.461057], + [9.40604, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.465553], + [9.40604, 45.47005], + [9.410536, 45.47005], + [9.410536, 45.465553], + [9.40604, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.47005], + [9.40604, 45.474547], + [9.410536, 45.474547], + [9.410536, 45.47005], + [9.40604, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.474547], + [9.40604, 45.479043], + [9.410536, 45.479043], + [9.410536, 45.474547], + [9.40604, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.479043], + [9.40604, 45.48354], + [9.410536, 45.48354], + [9.410536, 45.479043], + [9.40604, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.48354], + [9.40604, 45.488036], + [9.410536, 45.488036], + [9.410536, 45.48354], + [9.40604, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.488036], + [9.40604, 45.492533], + [9.410536, 45.492533], + [9.410536, 45.488036], + [9.40604, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.492533], + [9.40604, 45.49703], + [9.410536, 45.49703], + [9.410536, 45.492533], + [9.40604, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.49703], + [9.40604, 45.501526], + [9.410536, 45.501526], + [9.410536, 45.49703], + [9.40604, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.501526], + [9.40604, 45.506023], + [9.410536, 45.506023], + [9.410536, 45.501526], + [9.40604, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.506023], + [9.40604, 45.510519], + [9.410536, 45.510519], + [9.410536, 45.506023], + [9.40604, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.510519], + [9.40604, 45.515016], + [9.410536, 45.515016], + [9.410536, 45.510519], + [9.40604, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.515016], + [9.40604, 45.519513], + [9.410536, 45.519513], + [9.410536, 45.515016], + [9.40604, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.519513], + [9.40604, 45.524009], + [9.410536, 45.524009], + [9.410536, 45.519513], + [9.40604, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.524009], + [9.40604, 45.528506], + [9.410536, 45.528506], + [9.410536, 45.524009], + [9.40604, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.528506], + [9.40604, 45.533002], + [9.410536, 45.533002], + [9.410536, 45.528506], + [9.40604, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.533002], + [9.40604, 45.537499], + [9.410536, 45.537499], + [9.410536, 45.533002], + [9.40604, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.537499], + [9.40604, 45.541996], + [9.410536, 45.541996], + [9.410536, 45.537499], + [9.40604, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.541996], + [9.40604, 45.546492], + [9.410536, 45.546492], + [9.410536, 45.541996], + [9.40604, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.546492], + [9.40604, 45.550989], + [9.410536, 45.550989], + [9.410536, 45.546492], + [9.40604, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.550989], + [9.40604, 45.555485], + [9.410536, 45.555485], + [9.410536, 45.550989], + [9.40604, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.555485], + [9.40604, 45.559982], + [9.410536, 45.559982], + [9.410536, 45.555485], + [9.40604, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.559982], + [9.40604, 45.564479], + [9.410536, 45.564479], + [9.410536, 45.559982], + [9.40604, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.564479], + [9.40604, 45.568975], + [9.410536, 45.568975], + [9.410536, 45.564479], + [9.40604, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.568975], + [9.40604, 45.573472], + [9.410536, 45.573472], + [9.410536, 45.568975], + [9.40604, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.573472], + [9.40604, 45.577968], + [9.410536, 45.577968], + [9.410536, 45.573472], + [9.40604, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.577968], + [9.40604, 45.582465], + [9.410536, 45.582465], + [9.410536, 45.577968], + [9.40604, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.582465], + [9.40604, 45.586962], + [9.410536, 45.586962], + [9.410536, 45.582465], + [9.40604, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.586962], + [9.40604, 45.591458], + [9.410536, 45.591458], + [9.410536, 45.586962], + [9.40604, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.591458], + [9.40604, 45.595955], + [9.410536, 45.595955], + [9.410536, 45.591458], + [9.40604, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.595955], + [9.40604, 45.600451], + [9.410536, 45.600451], + [9.410536, 45.595955], + [9.40604, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.600451], + [9.40604, 45.604948], + [9.410536, 45.604948], + [9.410536, 45.600451], + [9.40604, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.604948], + [9.40604, 45.609445], + [9.410536, 45.609445], + [9.410536, 45.604948], + [9.40604, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.609445], + [9.40604, 45.613941], + [9.410536, 45.613941], + [9.410536, 45.609445], + [9.40604, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.613941], + [9.40604, 45.618438], + [9.410536, 45.618438], + [9.410536, 45.613941], + [9.40604, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.618438], + [9.40604, 45.622934], + [9.410536, 45.622934], + [9.410536, 45.618438], + [9.40604, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.622934], + [9.40604, 45.627431], + [9.410536, 45.627431], + [9.410536, 45.622934], + [9.40604, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.627431], + [9.40604, 45.631928], + [9.410536, 45.631928], + [9.410536, 45.627431], + [9.40604, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.631928], + [9.40604, 45.636424], + [9.410536, 45.636424], + [9.410536, 45.631928], + [9.40604, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.339648], + [9.410536, 45.344145], + [9.415033, 45.344145], + [9.415033, 45.339648], + [9.410536, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.344145], + [9.410536, 45.348642], + [9.415033, 45.348642], + [9.415033, 45.344145], + [9.410536, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.348642], + [9.410536, 45.353138], + [9.415033, 45.353138], + [9.415033, 45.348642], + [9.410536, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.353138], + [9.410536, 45.357635], + [9.415033, 45.357635], + [9.415033, 45.353138], + [9.410536, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.357635], + [9.410536, 45.362131], + [9.415033, 45.362131], + [9.415033, 45.357635], + [9.410536, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.362131], + [9.410536, 45.366628], + [9.415033, 45.366628], + [9.415033, 45.362131], + [9.410536, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.366628], + [9.410536, 45.371125], + [9.415033, 45.371125], + [9.415033, 45.366628], + [9.410536, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.371125], + [9.410536, 45.375621], + [9.415033, 45.375621], + [9.415033, 45.371125], + [9.410536, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.375621], + [9.410536, 45.380118], + [9.415033, 45.380118], + [9.415033, 45.375621], + [9.410536, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.380118], + [9.410536, 45.384614], + [9.415033, 45.384614], + [9.415033, 45.380118], + [9.410536, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.384614], + [9.410536, 45.389111], + [9.415033, 45.389111], + [9.415033, 45.384614], + [9.410536, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.389111], + [9.410536, 45.393608], + [9.415033, 45.393608], + [9.415033, 45.389111], + [9.410536, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.393608], + [9.410536, 45.398104], + [9.415033, 45.398104], + [9.415033, 45.393608], + [9.410536, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.398104], + [9.410536, 45.402601], + [9.415033, 45.402601], + [9.415033, 45.398104], + [9.410536, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.402601], + [9.410536, 45.407097], + [9.415033, 45.407097], + [9.415033, 45.402601], + [9.410536, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.407097], + [9.410536, 45.411594], + [9.415033, 45.411594], + [9.415033, 45.407097], + [9.410536, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.411594], + [9.410536, 45.416091], + [9.415033, 45.416091], + [9.415033, 45.411594], + [9.410536, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.416091], + [9.410536, 45.420587], + [9.415033, 45.420587], + [9.415033, 45.416091], + [9.410536, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.420587], + [9.410536, 45.425084], + [9.415033, 45.425084], + [9.415033, 45.420587], + [9.410536, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.425084], + [9.410536, 45.42958], + [9.415033, 45.42958], + [9.415033, 45.425084], + [9.410536, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.42958], + [9.410536, 45.434077], + [9.415033, 45.434077], + [9.415033, 45.42958], + [9.410536, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.434077], + [9.410536, 45.438574], + [9.415033, 45.438574], + [9.415033, 45.434077], + [9.410536, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.438574], + [9.410536, 45.44307], + [9.415033, 45.44307], + [9.415033, 45.438574], + [9.410536, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.44307], + [9.410536, 45.447567], + [9.415033, 45.447567], + [9.415033, 45.44307], + [9.410536, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.447567], + [9.410536, 45.452063], + [9.415033, 45.452063], + [9.415033, 45.447567], + [9.410536, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.452063], + [9.410536, 45.45656], + [9.415033, 45.45656], + [9.415033, 45.452063], + [9.410536, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.45656], + [9.410536, 45.461057], + [9.415033, 45.461057], + [9.415033, 45.45656], + [9.410536, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.461057], + [9.410536, 45.465553], + [9.415033, 45.465553], + [9.415033, 45.461057], + [9.410536, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.465553], + [9.410536, 45.47005], + [9.415033, 45.47005], + [9.415033, 45.465553], + [9.410536, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.47005], + [9.410536, 45.474547], + [9.415033, 45.474547], + [9.415033, 45.47005], + [9.410536, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.474547], + [9.410536, 45.479043], + [9.415033, 45.479043], + [9.415033, 45.474547], + [9.410536, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.479043], + [9.410536, 45.48354], + [9.415033, 45.48354], + [9.415033, 45.479043], + [9.410536, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.48354], + [9.410536, 45.488036], + [9.415033, 45.488036], + [9.415033, 45.48354], + [9.410536, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.488036], + [9.410536, 45.492533], + [9.415033, 45.492533], + [9.415033, 45.488036], + [9.410536, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.492533], + [9.410536, 45.49703], + [9.415033, 45.49703], + [9.415033, 45.492533], + [9.410536, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.49703], + [9.410536, 45.501526], + [9.415033, 45.501526], + [9.415033, 45.49703], + [9.410536, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.501526], + [9.410536, 45.506023], + [9.415033, 45.506023], + [9.415033, 45.501526], + [9.410536, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.506023], + [9.410536, 45.510519], + [9.415033, 45.510519], + [9.415033, 45.506023], + [9.410536, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.510519], + [9.410536, 45.515016], + [9.415033, 45.515016], + [9.415033, 45.510519], + [9.410536, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.515016], + [9.410536, 45.519513], + [9.415033, 45.519513], + [9.415033, 45.515016], + [9.410536, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.519513], + [9.410536, 45.524009], + [9.415033, 45.524009], + [9.415033, 45.519513], + [9.410536, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.524009], + [9.410536, 45.528506], + [9.415033, 45.528506], + [9.415033, 45.524009], + [9.410536, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.528506], + [9.410536, 45.533002], + [9.415033, 45.533002], + [9.415033, 45.528506], + [9.410536, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.533002], + [9.410536, 45.537499], + [9.415033, 45.537499], + [9.415033, 45.533002], + [9.410536, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.537499], + [9.410536, 45.541996], + [9.415033, 45.541996], + [9.415033, 45.537499], + [9.410536, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.541996], + [9.410536, 45.546492], + [9.415033, 45.546492], + [9.415033, 45.541996], + [9.410536, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.546492], + [9.410536, 45.550989], + [9.415033, 45.550989], + [9.415033, 45.546492], + [9.410536, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.550989], + [9.410536, 45.555485], + [9.415033, 45.555485], + [9.415033, 45.550989], + [9.410536, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.555485], + [9.410536, 45.559982], + [9.415033, 45.559982], + [9.415033, 45.555485], + [9.410536, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.559982], + [9.410536, 45.564479], + [9.415033, 45.564479], + [9.415033, 45.559982], + [9.410536, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.564479], + [9.410536, 45.568975], + [9.415033, 45.568975], + [9.415033, 45.564479], + [9.410536, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.568975], + [9.410536, 45.573472], + [9.415033, 45.573472], + [9.415033, 45.568975], + [9.410536, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.573472], + [9.410536, 45.577968], + [9.415033, 45.577968], + [9.415033, 45.573472], + [9.410536, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.577968], + [9.410536, 45.582465], + [9.415033, 45.582465], + [9.415033, 45.577968], + [9.410536, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.582465], + [9.410536, 45.586962], + [9.415033, 45.586962], + [9.415033, 45.582465], + [9.410536, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.586962], + [9.410536, 45.591458], + [9.415033, 45.591458], + [9.415033, 45.586962], + [9.410536, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.591458], + [9.410536, 45.595955], + [9.415033, 45.595955], + [9.415033, 45.591458], + [9.410536, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.595955], + [9.410536, 45.600451], + [9.415033, 45.600451], + [9.415033, 45.595955], + [9.410536, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.600451], + [9.410536, 45.604948], + [9.415033, 45.604948], + [9.415033, 45.600451], + [9.410536, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.604948], + [9.410536, 45.609445], + [9.415033, 45.609445], + [9.415033, 45.604948], + [9.410536, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.609445], + [9.410536, 45.613941], + [9.415033, 45.613941], + [9.415033, 45.609445], + [9.410536, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.613941], + [9.410536, 45.618438], + [9.415033, 45.618438], + [9.415033, 45.613941], + [9.410536, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.618438], + [9.410536, 45.622934], + [9.415033, 45.622934], + [9.415033, 45.618438], + [9.410536, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.622934], + [9.410536, 45.627431], + [9.415033, 45.627431], + [9.415033, 45.622934], + [9.410536, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.627431], + [9.410536, 45.631928], + [9.415033, 45.631928], + [9.415033, 45.627431], + [9.410536, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.631928], + [9.410536, 45.636424], + [9.415033, 45.636424], + [9.415033, 45.631928], + [9.410536, 45.631928] + ] + ] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson b/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson new file mode 100644 index 0000000000..3a45ec78b9 --- /dev/null +++ b/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson @@ -0,0 +1,1040 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "elevation": 4, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.373153], + [-6.338615, 53.366886], + [-6.350739, 53.366886], + [-6.3568, 53.373153], + [-6.350739, 53.37942], + [-6.338615, 53.37942], + [-6.332553, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.360619], + [-6.338615, 53.354352], + [-6.350739, 53.354352], + [-6.3568, 53.360619], + [-6.350739, 53.366886], + [-6.338615, 53.366886], + [-6.332553, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.348085], + [-6.338615, 53.341818], + [-6.350739, 53.341818], + [-6.3568, 53.348085], + [-6.350739, 53.354352], + [-6.338615, 53.354352], + [-6.332553, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.335551], + [-6.338615, 53.329284], + [-6.350739, 53.329284], + [-6.3568, 53.335551], + [-6.350739, 53.341818], + [-6.338615, 53.341818], + [-6.332553, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.323016], + [-6.338615, 53.316749], + [-6.350739, 53.316749], + [-6.3568, 53.323016], + [-6.350739, 53.329284], + [-6.338615, 53.329284], + [-6.332553, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.37942], + [-6.32043, 53.373153], + [-6.332553, 53.373153], + [-6.338615, 53.37942], + [-6.332553, 53.385687], + [-6.32043, 53.385687], + [-6.314368, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.366886], + [-6.32043, 53.360619], + [-6.332553, 53.360619], + [-6.338615, 53.366886], + [-6.332553, 53.373153], + [-6.32043, 53.373153], + [-6.314368, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 2, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.354352], + [-6.32043, 53.348085], + [-6.332553, 53.348085], + [-6.338615, 53.354352], + [-6.332553, 53.360619], + [-6.32043, 53.360619], + [-6.314368, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 4, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.341818], + [-6.32043, 53.335551], + [-6.332553, 53.335551], + [-6.338615, 53.341818], + [-6.332553, 53.348085], + [-6.32043, 53.348085], + [-6.314368, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.329284], + [-6.32043, 53.323016], + [-6.332553, 53.323016], + [-6.338615, 53.329284], + [-6.332553, 53.335551], + [-6.32043, 53.335551], + [-6.314368, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.373153], + [-6.302245, 53.366886], + [-6.314368, 53.366886], + [-6.32043, 53.373153], + [-6.314368, 53.37942], + [-6.302245, 53.37942], + [-6.296183, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.360619], + [-6.302245, 53.354352], + [-6.314368, 53.354352], + [-6.32043, 53.360619], + [-6.314368, 53.366886], + [-6.302245, 53.366886], + [-6.296183, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.348085], + [-6.302245, 53.341818], + [-6.314368, 53.341818], + [-6.32043, 53.348085], + [-6.314368, 53.354352], + [-6.302245, 53.354352], + [-6.296183, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.335551], + [-6.302245, 53.329284], + [-6.314368, 53.329284], + [-6.32043, 53.335551], + [-6.314368, 53.341818], + [-6.302245, 53.341818], + [-6.296183, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.323016], + [-6.302245, 53.316749], + [-6.314368, 53.316749], + [-6.32043, 53.323016], + [-6.314368, 53.329284], + [-6.302245, 53.329284], + [-6.296183, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.37942], + [-6.28406, 53.373153], + [-6.296183, 53.373153], + [-6.302245, 53.37942], + [-6.296183, 53.385687], + [-6.28406, 53.385687], + [-6.277998, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.366886], + [-6.28406, 53.360619], + [-6.296183, 53.360619], + [-6.302245, 53.366886], + [-6.296183, 53.373153], + [-6.28406, 53.373153], + [-6.277998, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.354352], + [-6.28406, 53.348085], + [-6.296183, 53.348085], + [-6.302245, 53.354352], + [-6.296183, 53.360619], + [-6.28406, 53.360619], + [-6.277998, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.341818], + [-6.28406, 53.335551], + [-6.296183, 53.335551], + [-6.302245, 53.341818], + [-6.296183, 53.348085], + [-6.28406, 53.348085], + [-6.277998, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.329284], + [-6.28406, 53.323016], + [-6.296183, 53.323016], + [-6.302245, 53.329284], + [-6.296183, 53.335551], + [-6.28406, 53.335551], + [-6.277998, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.373153], + [-6.265874, 53.366886], + [-6.277998, 53.366886], + [-6.28406, 53.373153], + [-6.277998, 53.37942], + [-6.265874, 53.37942], + [-6.259813, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.360619], + [-6.265874, 53.354352], + [-6.277998, 53.354352], + [-6.28406, 53.360619], + [-6.277998, 53.366886], + [-6.265874, 53.366886], + [-6.259813, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.348085], + [-6.265874, 53.341818], + [-6.277998, 53.341818], + [-6.28406, 53.348085], + [-6.277998, 53.354352], + [-6.265874, 53.354352], + [-6.259813, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.335551], + [-6.265874, 53.329284], + [-6.277998, 53.329284], + [-6.28406, 53.335551], + [-6.277998, 53.341818], + [-6.265874, 53.341818], + [-6.259813, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 12, + "stroke": "#00182e", + "fill": "#00182e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.323016], + [-6.265874, 53.316749], + [-6.277998, 53.316749], + [-6.28406, 53.323016], + [-6.277998, 53.329284], + [-6.265874, 53.329284], + [-6.259813, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.37942], + [-6.247689, 53.373153], + [-6.259813, 53.373153], + [-6.265874, 53.37942], + [-6.259813, 53.385687], + [-6.247689, 53.385687], + [-6.241628, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.366886], + [-6.247689, 53.360619], + [-6.259813, 53.360619], + [-6.265874, 53.366886], + [-6.259813, 53.373153], + [-6.247689, 53.373153], + [-6.241628, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.354352], + [-6.247689, 53.348085], + [-6.259813, 53.348085], + [-6.265874, 53.354352], + [-6.259813, 53.360619], + [-6.247689, 53.360619], + [-6.241628, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.341818], + [-6.247689, 53.335551], + [-6.259813, 53.335551], + [-6.265874, 53.341818], + [-6.259813, 53.348085], + [-6.247689, 53.348085], + [-6.241628, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 13, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.329284], + [-6.247689, 53.323016], + [-6.259813, 53.323016], + [-6.265874, 53.329284], + [-6.259813, 53.335551], + [-6.247689, 53.335551], + [-6.241628, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.373153], + [-6.229504, 53.366886], + [-6.241628, 53.366886], + [-6.247689, 53.373153], + [-6.241628, 53.37942], + [-6.229504, 53.37942], + [-6.223442, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.360619], + [-6.229504, 53.354352], + [-6.241628, 53.354352], + [-6.247689, 53.360619], + [-6.241628, 53.366886], + [-6.229504, 53.366886], + [-6.223442, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.348085], + [-6.229504, 53.341818], + [-6.241628, 53.341818], + [-6.247689, 53.348085], + [-6.241628, 53.354352], + [-6.229504, 53.354352], + [-6.223442, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.335551], + [-6.229504, 53.329284], + [-6.241628, 53.329284], + [-6.247689, 53.335551], + [-6.241628, 53.341818], + [-6.229504, 53.341818], + [-6.223442, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 13, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.323016], + [-6.229504, 53.316749], + [-6.241628, 53.316749], + [-6.247689, 53.323016], + [-6.241628, 53.329284], + [-6.229504, 53.329284], + [-6.223442, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.37942], + [-6.211319, 53.373153], + [-6.223442, 53.373153], + [-6.229504, 53.37942], + [-6.223442, 53.385687], + [-6.211319, 53.385687], + [-6.205257, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.366886], + [-6.211319, 53.360619], + [-6.223442, 53.360619], + [-6.229504, 53.366886], + [-6.223442, 53.373153], + [-6.211319, 53.373153], + [-6.205257, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.354352], + [-6.211319, 53.348085], + [-6.223442, 53.348085], + [-6.229504, 53.354352], + [-6.223442, 53.360619], + [-6.211319, 53.360619], + [-6.205257, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.341818], + [-6.211319, 53.335551], + [-6.223442, 53.335551], + [-6.229504, 53.341818], + [-6.223442, 53.348085], + [-6.211319, 53.348085], + [-6.205257, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.329284], + [-6.211319, 53.323016], + [-6.223442, 53.323016], + [-6.229504, 53.329284], + [-6.223442, 53.335551], + [-6.211319, 53.335551], + [-6.205257, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.373153], + [-6.193134, 53.366886], + [-6.205257, 53.366886], + [-6.211319, 53.373153], + [-6.205257, 53.37942], + [-6.193134, 53.37942], + [-6.187072, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.360619], + [-6.193134, 53.354352], + [-6.205257, 53.354352], + [-6.211319, 53.360619], + [-6.205257, 53.366886], + [-6.193134, 53.366886], + [-6.187072, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.348085], + [-6.193134, 53.341818], + [-6.205257, 53.341818], + [-6.211319, 53.348085], + [-6.205257, 53.354352], + [-6.193134, 53.354352], + [-6.187072, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.335551], + [-6.193134, 53.329284], + [-6.205257, 53.329284], + [-6.211319, 53.335551], + [-6.205257, 53.341818], + [-6.193134, 53.341818], + [-6.187072, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.323016], + [-6.193134, 53.316749], + [-6.205257, 53.316749], + [-6.211319, 53.323016], + [-6.205257, 53.329284], + [-6.193134, 53.329284], + [-6.187072, 53.323016] + ] + ] + } + } + ] +}