} destination point
* @example
@@ -66,7 +66,9 @@ function destination(
);
const lng = radiansToDegrees(longitude2);
const lat = radiansToDegrees(latitude2);
-
+ if (coordinates1[2] !== undefined) {
+ return point([lng, lat, coordinates1[2]], options.properties);
+ }
return point([lng, lat], options.properties);
}
diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json
index df8f3ea1a..6b905b18a 100644
--- a/packages/turf-destination/package.json
+++ b/packages/turf-destination/package.json
@@ -1,8 +1,11 @@
{
"name": "@turf/destination",
- "version": "7.0.0",
+ "version": "7.2.0",
"description": "turf destination module",
"author": "Turf Authors",
+ "contributors": [
+ "Pavel Rozvora <@prozvora>"
+ ],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turfjs/turf/issues"
@@ -53,23 +56,23 @@
"test:tape": "tsx test.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^10.3.10",
+ "glob": "^11.0.2",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-destination/test/in/point-0-with-elevation.geojson b/packages/turf-destination/test/in/point-0-with-elevation.geojson
new file mode 100644
index 000000000..6a89c09bb
--- /dev/null
+++ b/packages/turf-destination/test/in/point-0-with-elevation.geojson
@@ -0,0 +1,10 @@
+{
+ "type": "Feature",
+ "properties": {
+ "bearing": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75, 38.10096062273525, 100]
+ }
+}
diff --git a/packages/turf-destination/test/out/point-0-with-elevation.geojson b/packages/turf-destination/test/out/point-0-with-elevation.geojson
new file mode 100644
index 000000000..d8fa826d7
--- /dev/null
+++ b/packages/turf-destination/test/out/point-0-with-elevation.geojson
@@ -0,0 +1,34 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "bearing": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75, 38.10096062273525, 100]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75, 39.000281, 100]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [-75, 38.10096062273525, 100],
+ [-75, 39.000281, 100]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-difference/index.ts b/packages/turf-difference/index.ts
index 8629db4b0..e0d2af195 100644
--- a/packages/turf-difference/index.ts
+++ b/packages/turf-difference/index.ts
@@ -1,12 +1,12 @@
import { Polygon, MultiPolygon, Feature, FeatureCollection } from "geojson";
-import polygonClipping, { Geom } from "polygon-clipping";
+import * as polyclip from "polyclip-ts";
import { polygon, multiPolygon } from "@turf/helpers";
import { geomEach } from "@turf/meta";
/**
* Finds the difference between multiple {@link Polygon|polygons} by clipping the subsequent polygon from the first.
*
- * @name difference
+ * @function
* @param {FeatureCollection} features input Polygon features
* @returns {Feature|null} a Polygon or MultiPolygon feature showing the area of `polygon1` excluding the area of `polygon2` (if empty returns `null`)
* @example
@@ -39,10 +39,10 @@ import { geomEach } from "@turf/meta";
function difference(
features: FeatureCollection
): Feature | null {
- const geoms: Array = [];
+ const geoms: Array = [];
geomEach(features, (geom) => {
- geoms.push(geom.coordinates as Geom);
+ geoms.push(geom.coordinates as polyclip.Geom);
});
if (geoms.length < 2) {
@@ -51,7 +51,7 @@ function difference(
const properties = features.features[0].properties || {};
- const differenced = polygonClipping.difference(geoms[0], ...geoms.slice(1));
+ const differenced = polyclip.difference(geoms[0], ...geoms.slice(1));
if (differenced.length === 0) return null;
if (differenced.length === 1) return polygon(differenced[0], properties);
return multiPolygon(differenced, properties);
diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json
index e1625a8ee..9de580ed1 100644
--- a/packages/turf-difference/package.json
+++ b/packages/turf-difference/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/difference",
- "version": "7.0.0",
- "description": "turf difference module",
+ "version": "7.2.0",
+ "description": "Finds the difference between multiple polygons by clipping the subsequent polygon from the first.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -50,22 +50,22 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^10.3.10",
+ "glob": "^11.0.2",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "polygon-clipping": "^0.15.3",
- "tslib": "^2.6.2"
+ "polyclip-ts": "^0.16.8",
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-difference/test.ts b/packages/turf-difference/test.ts
index d261d175c..6b1a15b1d 100644
--- a/packages/turf-difference/test.ts
+++ b/packages/turf-difference/test.ts
@@ -117,3 +117,243 @@ test("turf-difference - complete overlap", (t) => {
t.deepEqual(result, null, "difference should be null");
t.end();
});
+
+test("difference - unable to complete output ring - issue 2409", (t) => {
+ // Test examples copied from https://github.com/Turfjs/turf/issues/2409
+ const area1 = polygon([
+ [
+ [11.79926, 59.307999],
+ [18.80383, 60.15596],
+ [18.73765340635914, 60.23951348693759],
+ [18.58133, 60.34301],
+ [11.79926, 59.307999],
+ ],
+ ]);
+
+ const area1_subtract = polygon([
+ [
+ [11.79926, 59.307999],
+ [18.80383, 60.15596],
+ [
+ 18.73765340635913, // Subtract 1 to final digit
+ 60.23951348693759,
+ ],
+ [18.58133, 60.34301],
+ [11.79926, 59.307999],
+ ],
+ ]);
+
+ const area1_add = polygon([
+ [
+ [11.79926, 59.307999],
+ [18.80383, 60.15596],
+ [
+ 18.73765340635915, // Add 1 to final digit
+ 60.23951348693759,
+ ],
+ [18.58133, 60.34301],
+ [11.79926, 59.307999],
+ ],
+ ]);
+
+ const area2 = polygon([
+ [
+ [18.35554, 60.35768],
+ [18.58133, 60.34301],
+ [18.75959, 60.22499],
+ [18.80383, 60.15596],
+ [18.35554, 60.35768],
+ ],
+ ]);
+
+ t.doesNotThrow(
+ () => difference(featureCollection([area1, area2])),
+ "[area1, area2] should not throw"
+ );
+ t.doesNotThrow(
+ () => difference(featureCollection([area1_subtract, area2])),
+ "[area1_subtract, area2] should not throw"
+ );
+ t.doesNotThrow(
+ () => difference(featureCollection([area1_add, area2])),
+ "[area1_add, area2] should not throw"
+ );
+
+ t.end();
+});
+
+test("difference - unable to complete output ring - issue 2277", (t) => {
+ // Test example copied from https://github.com/Turfjs/turf/issues/2277
+ const poly1 = polygon([
+ [
+ [54.56658645236534, 24.445194105819738],
+ [54.56658654953498, 24.441605817571325],
+ [54.57000000000001, 24.43981171174874],
+ [54.57341345046501, 24.441605817571325],
+ [54.573413547634665, 24.445194105819738],
+ [54.57000000000001, 24.44698828825126],
+ [54.56658645236534, 24.445194105819738],
+ ],
+ [
+ [54.56795530519258, 24.44447467409078],
+ [54.57000000000001, 24.4455493756693],
+ [54.57204469480743, 24.44447467409078],
+ [54.57204465994316, 24.442325298422087],
+ [54.57000000000001, 24.441250624330703],
+ [54.56795534005685, 24.442325298422087],
+ [54.56795530519258, 24.44447467409078],
+ ],
+ ]);
+
+ const poly2 = polygon([
+ [
+ [54.569778932416476, 24.441366817541834],
+ [54.56977894449294, 24.441074136738756],
+ [54.57000000000001, 24.441190327160086],
+ [54.57084694057397, 24.440745161222193],
+ [54.57084693745136, 24.44028034081218],
+ [54.571147760242575, 24.44043845608456],
+ [54.57114771720956, 24.441853864959285],
+ [54.57080496898934, 24.4416737163564],
+ [54.57080502276297, 24.441026402022757],
+ [54.57074511559248, 24.441057889217532],
+ [54.57074509421786, 24.441642246152345],
+ [54.57000000000001, 24.441250624330703],
+ [54.569778932416476, 24.441366817541834],
+ ],
+ ]);
+
+ t.doesNotThrow(
+ () => difference(featureCollection([poly1, poly2])),
+ "[poly1, poly2] should not throw"
+ );
+
+ t.end();
+});
+
+test("difference - maximum call stack size exceeded - issue 2479", (t) => {
+ // Test example copied from https://github.com/Turfjs/turf/issues/2479
+ const poly1 = polygon([
+ [
+ [49.93317115095019, 20.170898437500004],
+ [49.93927561914192, 20.16278743743897],
+ [49.941126142253154, 20.165448188781742],
+ [49.934096538617936, 20.174009799957275],
+ [49.93317115095019, 20.170898437500004],
+ ],
+ ]);
+
+ const poly2 = polygon([
+ [
+ [49.93317115095019, 20.170898437500004],
+ [49.933680058500165, 20.170222252607346],
+ [49.933758735535065, 20.170222252607346],
+ [49.933803934349285, 20.170152112841606],
+ [49.933803934349285, 20.170057658905122],
+ [49.934306839656294, 20.169389449185992],
+ [49.93434632011994, 20.16945071518421],
+ [49.93434632011994, 20.16959099471569],
+ [49.93448191656261, 20.16980141401291],
+ [49.93457231419105, 20.16980141401291],
+ [49.93466271181949, 20.16966113448143],
+ [49.93484350707638, 20.16966113448143],
+ [49.93520509759015, 20.169100016355515],
+ [49.93529549521859, 20.169100016355515],
+ [49.935928278617695, 20.168118059635166],
+ [49.936018676246135, 20.168118059635166],
+ [49.93660626083101, 20.167206242680553],
+ [49.93660626083101, 20.167065963149074],
+ [49.9367870560879, 20.166785404086117],
+ [49.9367870560879, 20.166645124554638],
+ [49.93714864660167, 20.166084006428722],
+ [49.93714864660167, 20.165613543475054],
+ [49.93742361679489, 20.16524819088677],
+ [49.93755543592966, 20.165452748537067],
+ [49.938504611028314, 20.16397981345654],
+ [49.938504611028314, 20.163811875057462],
+ [49.93927561914192, 20.16278743743897],
+ [49.941126142253154, 20.165448188781742],
+ [49.93988364085967, 20.16696147663808],
+ [49.93981537664073, 20.166855543851856],
+ [49.93958938256963, 20.167206242680553],
+ [49.93958938256963, 20.167319864563666],
+ [49.934096538617936, 20.174009799957275],
+ [49.93317115095019, 20.170898437500004],
+ ],
+ ]);
+
+ t.doesNotThrow(
+ () => difference(featureCollection([poly1, poly2])),
+ "[poly1, poly2] should not throw"
+ );
+
+ t.end();
+});
+
+test("difference - unable to find segment - issue 2306", (t) => {
+ // Test example copied from https://github.com/Turfjs/turf/issues/2306
+ const poly1 = polygon([
+ [
+ [10.299138347373786, 48.460352133145804],
+ [10.299142854373908, 48.46034913552448],
+ [10.299142854373908, 48.460339214732976],
+ [10.299225267807545, 48.46033958029495],
+ [10.29927355737747, 48.46034017606536],
+ [10.29927355737747, 48.46034613790316],
+ [10.299266796877285, 48.46035363195647],
+ [10.299257782877039, 48.46035363195647],
+ [10.299251022376856, 48.46035812838846],
+ [10.299251022376856, 48.46036507625937],
+ [10.299195961284822, 48.4603647734974],
+ [10.299201445375504, 48.46036112600978],
+ [10.29919468487532, 48.460356629577795],
+ [10.299187924375136, 48.46035812838846],
+ [10.299187924375136, 48.46036112600978],
+ [10.299193387184792, 48.460364759343314],
+ [10.299138347373786, 48.460364456698365],
+ [10.299138347373786, 48.460352133145804],
+ ],
+ [
+ [10.299142854373908, 48.46035812838846],
+ [10.299145107873969, 48.46035962719912],
+ [10.2991608823744, 48.46035812838846],
+ [10.299158628874338, 48.46035363195647],
+ [10.299149614874093, 48.46035363195647],
+ [10.299142854373908, 48.46035812838846],
+ ],
+ ]);
+
+ const poly2 = polygon([
+ [
+ [10.299138347373786, 48.46036049139952],
+ [10.299187924375136, 48.46036028454162],
+ [10.299187924375136, 48.46036112600978],
+ [10.29919468487532, 48.46036562244176],
+ [10.299201445375504, 48.46036112600978],
+ [10.299200103800315, 48.46036023372349],
+ [10.299208777179729, 48.46036019753419],
+ [10.299209806197382, 48.46031596598246],
+ [10.299250947482829, 48.460316111877646],
+ [10.299251022376856, 48.460316161689924],
+ [10.299251022376856, 48.46031915931125],
+ [10.299257677970186, 48.46032358596932],
+ [10.299256707063519, 48.46035434748375],
+ [10.299251022376856, 48.46035812838846],
+ [10.299251022376856, 48.4603761141164],
+ [10.299246515376732, 48.46037911173772],
+ [10.299246515376732, 48.4603872476338],
+ [10.29919425093356, 48.460374326689575],
+ [10.299190177875197, 48.460371617684416],
+ [10.299188312254989, 48.46037285851485],
+ [10.299138347373786, 48.460360506074],
+ [10.299138347373786, 48.46036049139952],
+ ],
+ ]);
+
+ t.doesNotThrow(
+ () => difference(featureCollection([poly1, poly2])),
+ "[poly1, poly2] should not throw"
+ );
+
+ t.end();
+});
diff --git a/packages/turf-difference/test/out/issue-#721-inverse.geojson b/packages/turf-difference/test/out/issue-#721-inverse.geojson
index 477c61842..9bacfc3c0 100644
--- a/packages/turf-difference/test/out/issue-#721-inverse.geojson
+++ b/packages/turf-difference/test/out/issue-#721-inverse.geojson
@@ -92,6 +92,42 @@
]
]
}
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 1,
+ "fill": "#0F0"
+ },
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [-0.6462588068806041, 44.80608667910215],
+ [-0.6462588068796641, 44.80608667910137],
+ [-0.6461987, 44.8060367],
+ [-0.6462588068806041, 44.80608667910215]
+ ]
+ ],
+ [
+ [
+ [-0.6461042, 44.8059451],
+ [-0.6461041344154723, 44.805944903377586],
+ [-0.6461041344154722, 44.805944903377586],
+ [-0.6461042, 44.8059451]
+ ]
+ ],
+ [
+ [
+ [-0.6460471709105139, 44.80564743856641],
+ [-0.6460421, 44.8056729],
+ [-0.6460471709104708, 44.80564743856663],
+ [-0.6460471709105139, 44.80564743856641]
+ ]
+ ]
+ ]
+ }
}
]
}
diff --git a/packages/turf-difference/test/out/issue-#721.geojson b/packages/turf-difference/test/out/issue-#721.geojson
index f9e4aad75..08606ca52 100644
--- a/packages/turf-difference/test/out/issue-#721.geojson
+++ b/packages/turf-difference/test/out/issue-#721.geojson
@@ -113,17 +113,16 @@
[-0.6460168, 44.8047948],
[-0.6460827, 44.8050017],
[-0.6461218, 44.8051741],
- [-0.6461158838109077, 44.80524109574131],
- [-0.646107941865921, 44.80533857879061],
- [-0.646093673696575, 44.80541109474097],
+ [-0.6461073, 44.8053383],
[-0.6460848, 44.8054585],
- [-0.6460471709105139, 44.80564743856641],
+ [-0.6460471709104708, 44.80564743856663],
[-0.6460422277450562, 44.805672561504906],
[-0.6460542976856232, 44.80579530680288],
[-0.646069093721612, 44.80583985137739],
- [-0.6461041344154722, 44.805944903377586],
+ [-0.6460542, 44.8057952],
+ [-0.6461041344154723, 44.805944903377586],
[-0.6461991369724274, 44.80603699057963],
- [-0.6462588068806041, 44.80608667910215],
+ [-0.6462588068796641, 44.80608667910137],
[-0.6463809, 44.8061882],
[-0.646437, 44.806159],
[-0.64649, 44.80611],
@@ -138,6 +137,13 @@
[-0.6465049, 44.8055554],
[-0.6471907, 44.8053946],
[-0.6474134, 44.805326]
+ ],
+ [
+ [-0.6461073, 44.8053383],
+ [-0.6461158838109077, 44.80524109574131],
+ [-0.646107941865921, 44.80533857879061],
+ [-0.646093673696575, 44.80541109474097],
+ [-0.6461073, 44.8053383]
]
]
}
diff --git a/packages/turf-directional-mean/index.ts b/packages/turf-directional-mean/index.ts
index bb21d837b..ab92794e3 100644
--- a/packages/turf-directional-mean/index.ts
+++ b/packages/turf-directional-mean/index.ts
@@ -36,7 +36,8 @@ interface DirectionalMeanLine extends Feature {
* This module calculate the average angle of a set of lines, measuring the trend of it.
* It can be used in both project coordinate system and geography coordinate system.
* It can handle segments of line or the whole line.
- * @name directionalMean
+ *
+ * @function
* @param {FeatureCollection} lines
* @param {object} [options={}]
* @param {boolean} [options.planar=true] whether the spatial reference system is projected or geographical.
diff --git a/packages/turf-directional-mean/package.json b/packages/turf-directional-mean/package.json
index 5d8ae150d..d181d54f4 100644
--- a/packages/turf-directional-mean/package.json
+++ b/packages/turf-directional-mean/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/directional-mean",
- "version": "7.0.0",
- "description": "turf directional-mean module",
+ "version": "7.2.0",
+ "description": "Calculates the average angle of a set of lines, measuring the trend of it.",
"author": "Turf Authors",
"contributors": [
"Haoming Zhuang <@zhuang-hao-ming>"
@@ -53,25 +53,25 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/bearing": "workspace:^",
- "@turf/centroid": "workspace:^",
- "@turf/destination": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/length": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/bearing": "workspace:*",
+ "@turf/centroid": "workspace:*",
+ "@turf/destination": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/length": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-dissolve/README.md b/packages/turf-dissolve/README.md
index 803ecf10d..e5cdc706f 100644
--- a/packages/turf-dissolve/README.md
+++ b/packages/turf-dissolve/README.md
@@ -4,15 +4,16 @@
## dissolve
-Dissolves a FeatureCollection of [polygon][1] features, filtered by an optional property name:value.
-Note that [mulitpolygon][2] features within the collection are not supported
+Dissolves a FeatureCollection of [Polygon][1] features, filtered by an optional property name:value.
+Note that [MultiPolygon][2] features within the collection are not supported
### Parameters
-* `featureCollection` **[FeatureCollection][3]<[Polygon][4]>** input feature collection to be dissolved
-* `options` **[Object][5]** Optional parameters (optional, default `{}`)
+* `fc` **[FeatureCollection][3]<[Polygon][1]>**
+* `options` **[Object][4]** Optional parameters (optional, default `{}`)
- * `options.propertyName` **[string][6]?** features with the same `propertyName` value will be dissolved.
+ * `options.propertyName` **[string][5]?** features with the same `propertyName` value will be dissolved.
+* `featureCollection` **[FeatureCollection][3]<[Polygon][1]>** input feature collection to be dissolved
### Examples
@@ -29,19 +30,17 @@ var dissolved = turf.dissolve(features, {propertyName: 'combine'});
var addToMap = [features, dissolved]
```
-Returns **[FeatureCollection][3]<[Polygon][4]>** a FeatureCollection containing the dissolved polygons
+Returns **[FeatureCollection][3]<[Polygon][1]>** a FeatureCollection containing the dissolved polygons
-[1]: polygon
+[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6
-[2]: mulitpolygon
+[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7
[3]: https://tools.ietf.org/html/rfc7946#section-3.3
-[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6
+[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-
-[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
diff --git a/packages/turf-dissolve/index.ts b/packages/turf-dissolve/index.ts
index fd5a5eb2d..8736e733a 100644
--- a/packages/turf-dissolve/index.ts
+++ b/packages/turf-dissolve/index.ts
@@ -3,13 +3,13 @@ import { featureCollection, isObject, multiPolygon } from "@turf/helpers";
import { collectionOf } from "@turf/invariant";
import { featureEach } from "@turf/meta";
import { flatten } from "@turf/flatten";
-import polygonClipping, { Geom } from "polygon-clipping";
+import * as polyclip from "polyclip-ts";
/**
- * Dissolves a FeatureCollection of {@link polygon} features, filtered by an optional property name:value.
- * Note that {@link mulitpolygon} features within the collection are not supported
+ * Dissolves a FeatureCollection of {@link Polygon} features, filtered by an optional property name:value.
+ * Note that {@link MultiPolygon} features within the collection are not supported
*
- * @name dissolve
+ * @function
* @param {FeatureCollection} featureCollection input feature collection to be dissolved
* @param {Object} [options={}] Optional parameters
* @param {string} [options.propertyName] features with the same `propertyName` value will be dissolved.
@@ -45,12 +45,12 @@ function dissolve(
if (!propertyName) {
return flatten(
multiPolygon(
- polygonClipping.union.apply(
+ polyclip.union.apply(
null,
// List of polygons expressed as Position[][][] a.k.a. Geom[]
fc.features.map(function (f) {
return f.geometry.coordinates;
- }) as [Geom, ...Geom[]]
+ }) as [polyclip.Geom, ...polyclip.Geom[]]
)
)
);
@@ -76,12 +76,12 @@ function dissolve(
// Export each group of polygons as a separate feature.
for (let i = 0; i < vals.length; i++) {
const mp = multiPolygon(
- polygonClipping.union.apply(
+ polyclip.union.apply(
null,
// List of polygons expressed as Position[][][] a.k.a. Geom[]
(uniquePropertyVals[vals[i]] as Feature[]).map(function (f) {
return f.geometry.coordinates;
- }) as [Geom, ...Geom[]]
+ }) as [polyclip.Geom, ...polyclip.Geom[]]
)
);
if (mp && mp.properties) {
diff --git a/packages/turf-dissolve/package.json b/packages/turf-dissolve/package.json
index dee35fed2..df965fe87 100644
--- a/packages/turf-dissolve/package.json
+++ b/packages/turf-dissolve/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/dissolve",
- "version": "7.0.0",
- "description": "turf dissolve module",
+ "version": "7.2.0",
+ "description": "Dissolves a FeatureCollection of Polygon features.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -53,23 +53,23 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/flatten": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/flatten": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "polygon-clipping": "^0.15.3",
- "tslib": "^2.6.2"
+ "polyclip-ts": "^0.16.8",
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-dissolve/test.ts b/packages/turf-dissolve/test.ts
index 93d5858d5..710bf6830 100644
--- a/packages/turf-dissolve/test.ts
+++ b/packages/turf-dissolve/test.ts
@@ -115,3 +115,42 @@ test("dissolve -- properties", (t) => {
t.end();
});
+
+test("dissolve - unable to complete output ring - issue 2420", (t) => {
+ // Test example copied from https://github.com/Turfjs/turf/issues/2420
+
+ const poly1 = polygon([
+ [
+ [54.674471560746106, -2.669669459403366],
+ [54.66827243056676, -2.590808846502601],
+ [54.61818656347785, -2.5731465650016876],
+ [54.59479733372542, -2.5582148982951005],
+ [54.52907798654607, -2.5983186383573154],
+ [54.533564730328536, -2.68329182348515],
+ [54.58040270977906, -2.713147336590615],
+ [54.60545643615633, -2.7220126907386035],
+ [54.674471560746106, -2.669669459403366],
+ ],
+ ]);
+
+ const poly2 = polygon([
+ [
+ [54.59029423717366, -2.4733591205361],
+ [54.59479733372542, -2.5582148982951005],
+ [54.61818656347788, -2.573146565001703],
+ [54.66827243056676, -2.590808846502601],
+ [54.73723247700517, -2.538498282632361],
+ [54.730995571183335, -2.4597687064449976],
+ [54.655899262660675, -2.433377660227877],
+ [54.59029423717366, -2.4733591205361],
+ ],
+ ]);
+
+ // This used to fail with "Unable to complete output ring ..."
+ t.doesNotThrow(
+ () => dissolve(featureCollection([poly1, poly2])),
+ "does not throw"
+ );
+
+ t.end();
+});
diff --git a/packages/turf-dissolve/test/out/hexagons-issue#742.geojson b/packages/turf-dissolve/test/out/hexagons-issue#742.geojson
index fe6d3c997..6090be998 100644
--- a/packages/turf-dissolve/test/out/hexagons-issue#742.geojson
+++ b/packages/turf-dissolve/test/out/hexagons-issue#742.geojson
@@ -22,21 +22,21 @@
[-76.663, 45.456],
[-76.659, 45.462],
[-76.6606, 45.4648],
- [-76.65799999999996, 45.46566666666668],
+ [-76.658, 45.465666666666664],
[-76.652, 45.467],
- [-76.64964705882352, 45.471117647058826],
+ [-76.64964705882353, 45.471117647058826],
[-76.644, 45.473],
[-76.64, 45.479],
[-76.644, 45.485],
[-76.653, 45.488],
[-76.662, 45.485],
- [-76.66400000000002, 45.482],
+ [-76.664, 45.482],
[-76.666, 45.48133333333333],
[-76.672, 45.48],
- [-76.67392, 45.476639999999996],
- [-76.67542857142858, 45.47714285714286],
+ [-76.67392, 45.47664],
+ [-76.67542857142857, 45.47714285714286],
[-76.678, 45.481],
- [-76.68639999999999, 45.4838],
+ [-76.6864, 45.4838],
[-76.687, 45.485],
[-76.6921724137931, 45.48655172413793],
[-76.693, 45.488],
@@ -100,16 +100,16 @@
[-76.5, 45.592],
[-76.49523529411765, 45.590411764705884],
[-76.495, 45.59],
- [-76.49200000000002, 45.58933333333334],
+ [-76.492, 45.589333333333336],
[-76.491, 45.589],
[-76.4908, 45.58906666666667],
[-76.486, 45.588],
[-76.477, 45.59],
[-76.473, 45.597],
[-76.477, 45.603],
- [-76.48176470588236, 45.60458823529412],
+ [-76.48176470588236, 45.604588235294116],
[-76.482, 45.605],
- [-76.48481249999999, 45.605624999999996],
+ [-76.4848125, 45.605625],
[-76.485, 45.606],
[-76.494, 45.609],
[-76.503, 45.606],
@@ -175,9 +175,9 @@
[-76.35857142857142, 45.41914285714286],
[-76.356, 45.42],
[-76.353, 45.426],
- [-76.35331249999999, 45.426624999999994],
- [-76.34899999999996, 45.42566666666665],
- [-76.34657142857144, 45.42485714285714],
+ [-76.3533125, 45.426625],
+ [-76.349, 45.425666666666665],
+ [-76.34657142857142, 45.42485714285714],
[-76.346, 45.424],
[-76.337, 45.421],
[-76.328, 45.424],
@@ -185,16 +185,16 @@
[-76.328, 45.437],
[-76.33405454545455, 45.438345454545455],
[-76.335, 45.44],
- [-76.34100000000004, 45.44133333333334],
+ [-76.341, 45.44133333333333],
[-76.346, 45.443],
[-76.355, 45.44],
[-76.359, 45.434],
[-76.35829411764706, 45.432764705882356],
[-76.365, 45.435],
[-76.374, 45.432],
- [-76.37457142857143, 45.43114285714285],
+ [-76.37457142857143, 45.43114285714286],
[-76.378, 45.43],
- [-76.3797142857143, 45.427428571428564],
+ [-76.37971428571429, 45.42742857142857],
[-76.387, 45.425],
[-76.39, 45.419]
]
@@ -259,7 +259,7 @@
[-76.291, 45.343],
[-76.3, 45.34],
[-76.303, 45.334],
- [-76.3027857142857, 45.3335],
+ [-76.30278571428572, 45.3335],
[-76.303, 45.333]
]
]
@@ -304,12 +304,12 @@
[-76.232, 44.886],
[-76.228, 44.892],
[-76.232, 44.899],
- [-76.24012903225805, 44.90080645161291],
+ [-76.24012903225807, 44.9008064516129],
[-76.24, 44.901],
[-76.244, 44.907],
- [-76.24571428571427, 44.90757142857142],
+ [-76.24571428571429, 44.90757142857143],
[-76.246, 44.908],
- [-76.25164000000001, 44.90988],
+ [-76.25164, 44.90988],
[-76.251, 44.911],
[-76.255, 44.917],
[-76.264, 44.92],
@@ -389,7 +389,7 @@
[-76.217, 45.221],
[-76.214, 45.214],
[-76.205, 45.212],
- [-76.19717391304349, 45.21373913043478],
+ [-76.19717391304347, 45.21373913043478],
[-76.201, 45.208],
[-76.197, 45.201],
[-76.188, 45.199],
@@ -397,8 +397,8 @@
[-76.175, 45.208],
[-76.179, 45.214],
[-76.188, 45.217],
- [-76.19576470588235, 45.214411764705886],
- [-76.19435294117646, 45.21688235294118],
+ [-76.19576470588235, 45.21441176470588],
+ [-76.19435294117648, 45.21688235294118],
[-76.188, 45.219],
[-76.184, 45.225],
[-76.18422535211268, 45.225394366197186],
@@ -409,10 +409,10 @@
[-76.17, 45.243],
[-76.179, 45.246],
[-76.188, 45.243],
- [-76.18857142857144, 45.24214285714286],
+ [-76.18857142857142, 45.24214285714286],
[-76.195, 45.24],
[-76.198, 45.234],
- [-76.19791304347825, 45.23379710144928],
+ [-76.19791304347827, 45.23379710144928],
[-76.206, 45.232],
[-76.20764705882353, 45.22911764705882],
[-76.214, 45.227],
@@ -457,15 +457,15 @@
[-76.133, 45.123],
[-76.124, 45.121],
[-76.115, 45.123],
- [-76.11358823529412, 45.12547058823529],
+ [-76.11358823529412, 45.125470588235295],
[-76.112, 45.126],
[-76.108, 45.132],
[-76.112, 45.139],
- [-76.1151304347826, 45.13969565217391],
+ [-76.11513043478261, 45.13969565217391],
[-76.115, 45.14],
[-76.118, 45.146],
[-76.127, 45.149],
- [-76.13, 45.147999999999996],
+ [-76.13, 45.148],
[-76.129, 45.15],
[-76.132, 45.157],
[-76.141, 45.159],
@@ -609,7 +609,7 @@
[-76.046, 44.889],
[-76.042, 44.883],
[-76.033, 44.88],
- [-76.02780000000001, 44.88173333333334],
+ [-76.0278, 44.88173333333334],
[-76.02, 44.88],
[-76.011, 44.882],
[-76.007, 44.889],
@@ -627,7 +627,7 @@
[-76.045, 44.906],
[-76.041, 44.9],
[-76.038, 44.899],
- [-76.04028571428572, 44.89557142857144],
+ [-76.04028571428572, 44.89557142857143],
[-76.042, 44.895],
[-76.046, 44.889]
]
@@ -684,15 +684,15 @@
[-75.968, 45.279],
[-75.9652, 45.2748],
[-75.964, 45.272],
- [-75.96023636363635, 45.27116363636364],
+ [-75.96023636363637, 45.27116363636364],
[-75.959, 45.269],
- [-75.95039130434782, 45.26708695652174],
+ [-75.95039130434783, 45.26708695652174],
[-75.947, 45.262],
[-75.938, 45.259],
[-75.929, 45.262],
- [-75.92757142857143, 45.26414285714285],
+ [-75.92757142857143, 45.26414285714286],
[-75.922, 45.266],
- [-75.92085714285714, 45.26771428571429],
+ [-75.92085714285714, 45.267714285714284],
[-75.914, 45.27],
[-75.91356521739131, 45.27065217391304],
[-75.912, 45.271],
@@ -700,14 +700,14 @@
[-75.912, 45.284],
[-75.921, 45.287],
[-75.93, 45.284],
- [-75.9304347826087, 45.28334782608695],
+ [-75.9304347826087, 45.28334782608696],
[-75.932, 45.283],
- [-75.93216666666667, 45.2826111111111],
+ [-75.93216666666666, 45.28261111111111],
[-75.934, 45.282],
[-75.93530434782609, 45.28004347826087],
[-75.93912903225807, 45.2791935483871],
[-75.941, 45.282],
- [-75.94435294117646, 45.28311764705882],
+ [-75.94435294117648, 45.28311764705882],
[-75.946, 45.286],
[-75.955, 45.288],
[-75.964, 45.286],
@@ -788,14 +788,14 @@
[-75.928, 45.285],
[-75.919, 45.288],
[-75.915, 45.294],
- [-75.91829411764705, 45.29976470588235],
+ [-75.91829411764706, 45.29976470588235],
[-75.916, 45.299],
- [-75.91257142857143, 45.30014285714285],
+ [-75.91257142857143, 45.30014285714286],
[-75.914, 45.298],
[-75.91, 45.291],
- [-75.90700000000004, 45.29033333333334],
+ [-75.907, 45.290333333333336],
[-75.9, 45.288],
- [-75.895, 45.28966666666666],
+ [-75.895, 45.28966666666667],
[-75.89, 45.288],
[-75.88268, 45.29044],
[-75.88161538461539, 45.288576923076924],
@@ -817,20 +817,20 @@
[-75.895, 45.313],
[-75.892, 45.307],
[-75.8914, 45.3068],
- [-75.89085714285714, 45.30571428571428],
- [-75.89399999999996, 45.304666666666655],
+ [-75.89085714285714, 45.30571428571429],
+ [-75.894, 45.30466666666667],
[-75.901, 45.307],
- [-75.90442857142857, 45.30585714285715],
+ [-75.90442857142857, 45.30585714285714],
[-75.903, 45.308],
[-75.907, 45.315],
- [-75.90880000000001, 45.3156],
+ [-75.9088, 45.3156],
[-75.909, 45.316],
[-75.918, 45.319],
[-75.927, 45.316],
[-75.931, 45.31],
[-75.927, 45.304],
[-75.92594117647059, 45.30364705882353],
- [-75.92521818181818, 45.302381818181814],
+ [-75.92521818181818, 45.30238181818182],
[-75.928, 45.303],
[-75.937, 45.301],
[-75.941, 45.294]
@@ -847,7 +847,7 @@
[
[-75.94, 45.351],
[-75.936, 45.345],
- [-75.92952000000001, 45.342839999999995],
+ [-75.92952, 45.34284],
[-75.93, 45.342],
[-75.926, 45.336],
[-75.92211764705883, 45.33470588235294],
@@ -904,7 +904,7 @@
[-75.84590909090909, 45.39336363636364],
[-75.843, 45.389],
[-75.834, 45.386],
- [-75.8305, 45.38716666666667],
+ [-75.8305, 45.387166666666666],
[-75.83, 45.387],
[-75.821, 45.39],
[-75.817, 45.396],
@@ -922,7 +922,7 @@
[
[-75.84164705882353, 45.40288235294118],
[-75.8406, 45.40253333333333],
- [-75.84135211267605, 45.4023661971831],
+ [-75.84135211267606, 45.4023661971831],
[-75.84164705882353, 45.40288235294118]
]
]
@@ -939,9 +939,9 @@
[-75.85, 45.187],
[-75.841, 45.184],
[-75.832, 45.187],
- [-75.82860869565218, 45.192086956521734],
+ [-75.82860869565218, 45.19208695652174],
[-75.82, 45.194],
- [-75.81873684210525, 45.19694736842105],
+ [-75.81873684210527, 45.19694736842105],
[-75.814, 45.198],
[-75.81, 45.205],
[-75.814, 45.211],
@@ -949,7 +949,7 @@
[-75.832, 45.211],
[-75.83371428571428, 45.20842857142857],
[-75.838, 45.207],
- [-75.84142857142858, 45.201857142857136],
+ [-75.84142857142857, 45.20185714285714],
[-75.85, 45.199],
[-75.854, 45.193]
]
@@ -1008,6 +1008,7 @@
[-75.836, 45.312],
[-75.821, 45.317],
[-75.82042857142856, 45.31785714285714],
+ [-75.82, 45.318],
[-75.811, 45.321],
[-75.807, 45.327],
[-75.811, 45.334],
@@ -1017,7 +1018,7 @@
[-75.83, 45.334],
[-75.83094117647059, 45.332352941176474],
[-75.832, 45.332],
- [-75.83234782608695, 45.33147826086957],
+ [-75.83234782608696, 45.33147826086957],
[-75.839, 45.33],
[-75.83931578947369, 45.32926315789474],
[-75.845, 45.328],
@@ -1097,7 +1098,7 @@
[-75.818, 45.347],
[-75.809, 45.345],
[-75.80038028169014, 45.34691549295775],
- [-75.799, 45.344500000000004],
+ [-75.799, 45.3445],
[-75.801, 45.341],
[-75.797, 45.335],
[-75.788, 45.332],
@@ -1106,7 +1107,7 @@
[-75.777, 45.336],
[-75.77558064516128, 45.33812903225807],
[-75.775, 45.338],
- [-75.76714084507043, 45.339746478873245],
+ [-75.76714084507043, 45.33974647887324],
[-75.765, 45.336],
[-75.76398591549295, 45.33577464788733],
[-75.765, 45.334],
@@ -1119,21 +1120,21 @@
[-75.744, 45.343],
[-75.747, 45.349],
[-75.756, 45.352],
- [-75.76363636363637, 45.34945454545454],
+ [-75.76363636363637, 45.34945454545455],
[-75.766, 45.353],
[-75.775, 45.356],
- [-75.78020000000001, 45.35426666666667],
+ [-75.7802, 45.35426666666667],
[-75.7835, 45.355],
[-75.779, 45.356],
[-75.77629577464789, 45.360732394366195],
[-75.773, 45.36],
[-75.764, 45.362],
- [-75.76067605633803, 45.367816901408446],
+ [-75.76067605633803, 45.36781690140845],
[-75.757, 45.367],
- [-75.75474999999999, 45.3675],
+ [-75.75475, 45.3675],
[-75.74901408450704, 45.36622535211268],
[-75.752, 45.361],
- [-75.74823076923077, 45.35534615384615],
+ [-75.74823076923077, 45.355346153846156],
[-75.749, 45.354],
[-75.745, 45.348],
[-75.743, 45.344],
@@ -1142,7 +1143,7 @@
[-75.739, 45.337],
[-75.735625, 45.335875],
[-75.736, 45.335],
- [-75.73371428571429, 45.33042857142856],
+ [-75.73371428571429, 45.33042857142857],
[-75.734, 45.33],
[-75.73261538461539, 45.327576923076926],
[-75.733, 45.327],
@@ -1155,7 +1156,7 @@
[-75.694, 45.325],
[-75.685, 45.327],
[-75.681, 45.334],
- [-75.68227272727272, 45.33590909090909],
+ [-75.68227272727273, 45.33590909090909],
[-75.682, 45.336],
[-75.68016666666666, 45.33875],
[-75.679, 45.337],
@@ -1176,14 +1177,14 @@
[-75.616, 45.342],
[-75.612, 45.348],
[-75.616, 45.354],
- [-75.6195, 45.35516666666666],
+ [-75.6195, 45.35516666666667],
[-75.611, 45.358],
[-75.607, 45.364],
[-75.611, 45.371],
[-75.61274193548387, 45.37138709677419],
[-75.611, 45.374],
[-75.615, 45.38],
- [-75.6165, 45.380500000000005],
+ [-75.6165, 45.3805],
[-75.61390909090909, 45.38136363636364],
[-75.611, 45.377],
[-75.60909090909091, 45.376363636363635],
@@ -1193,36 +1194,36 @@
[-75.588, 45.368],
[-75.584, 45.375],
[-75.588, 45.381],
- [-75.58990909090909, 45.38163636363637],
+ [-75.58990909090909, 45.38163636363636],
[-75.589, 45.383],
[-75.593, 45.389],
[-75.602, 45.392],
- [-75.60671428571428, 45.39042857142857],
+ [-75.60671428571429, 45.39042857142857],
[-75.609, 45.395],
- [-75.60906122448979, 45.39514285714287],
+ [-75.60906122448979, 45.39514285714286],
[-75.608, 45.397],
[-75.61018181818181, 45.40027272727273],
[-75.608, 45.401],
[-75.60495652173913, 45.405565217391306],
[-75.603, 45.406],
- [-75.60252941176469, 45.40682352941177],
+ [-75.6025294117647, 45.40682352941177],
[-75.596, 45.409],
- [-75.59527272727273, 45.410090909090904],
+ [-75.59527272727273, 45.41009090909091],
[-75.595, 45.41],
[-75.586, 45.413],
[-75.582, 45.419],
[-75.586, 45.425],
- [-75.58666666666667, 45.42522222222222],
+ [-75.58666666666667, 45.425222222222224],
[-75.587, 45.426],
- [-75.59300000000003, 45.42733333333334],
+ [-75.593, 45.42733333333333],
[-75.595, 45.428],
[-75.5954, 45.42786666666667],
[-75.596, 45.428],
[-75.605, 45.426],
- [-75.60520000000001, 45.42593333333333],
- [-75.60640000000001, 45.4262],
+ [-75.6052, 45.42593333333333],
+ [-75.6064, 45.4262],
[-75.604, 45.427],
- [-75.60371428571429, 45.427428571428564],
+ [-75.60371428571429, 45.42742857142857],
[-75.596, 45.43],
[-75.592, 45.436],
[-75.59374647887324, 45.439056338028166],
@@ -1238,42 +1239,42 @@
[-75.595, 45.457],
[-75.604, 45.454],
[-75.608, 45.448],
- [-75.60624, 45.444919999999996],
- [-75.60799999999998, 45.44433333333334],
+ [-75.60624, 45.44492],
+ [-75.608, 45.44433333333333],
[-75.614, 45.443],
[-75.61433333333333, 45.44222222222222],
[-75.615, 45.442],
- [-75.61524999999999, 45.4415],
- [-75.61965217391305, 45.44052173913043],
+ [-75.61525, 45.4415],
+ [-75.61965217391304, 45.44052173913043],
[-75.616, 45.446],
[-75.62, 45.453],
[-75.629, 45.455],
[-75.638, 45.453],
[-75.6388, 45.4516],
[-75.64, 45.452],
- [-75.64084000000001, 45.451719999999995],
+ [-75.64084, 45.45172],
[-75.641, 45.452],
[-75.65, 45.454],
[-75.659, 45.452],
- [-75.66030434782608, 45.448956521739134],
+ [-75.66030434782608, 45.44895652173913],
[-75.661, 45.45],
[-75.67, 45.452],
[-75.679, 45.45],
- [-75.68091304347827, 45.44713043478261],
+ [-75.68091304347826, 45.44713043478261],
[-75.686, 45.446],
[-75.689, 45.439],
[-75.68857142857142, 45.43814285714286],
[-75.689, 45.438],
- [-75.68979999999999, 45.436400000000006],
+ [-75.6898, 45.4364],
[-75.694, 45.435],
[-75.698, 45.429],
- [-75.69683636363636, 45.42696363636363],
+ [-75.69683636363636, 45.42696363636364],
[-75.697, 45.427],
[-75.706, 45.425],
- [-75.70952941176469, 45.41882352941177],
+ [-75.7095294117647, 45.41882352941177],
[-75.715, 45.417],
[-75.719, 45.411],
- [-75.7166923076923, 45.407538461538465],
+ [-75.71669230769231, 45.407538461538465],
[-75.717, 45.407],
[-75.7159090909091, 45.40536363636364],
[-75.717, 45.405],
@@ -1282,28 +1283,29 @@
[-75.739, 45.412],
[-75.7424909090909, 45.40589090909091],
[-75.751, 45.404],
- [-75.75136363636365, 45.403363636363636],
+ [-75.75136363636364, 45.403363636363636],
[-75.753, 45.403],
- [-75.75370588235293, 45.40176470588236],
+ [-75.75370588235295, 45.40176470588235],
+ [-75.759, 45.4],
[-75.762, 45.399],
[-75.766, 45.393],
[-75.762, 45.386],
- [-75.758, 45.385111111111115],
+ [-75.758, 45.38511111111111],
[-75.763, 45.384],
- [-75.76321818181819, 45.383618181818186],
+ [-75.76321818181817, 45.38361818181818],
[-75.766, 45.383],
[-75.76952, 45.37684],
[-75.773, 45.378],
- [-75.77449999999999, 45.377500000000005],
+ [-75.7745, 45.3775],
[-75.782, 45.38],
[-75.791, 45.377],
[-75.79265217391304, 45.37452173913044],
[-75.795, 45.374],
[-75.799, 45.367],
- [-75.79866666666668, 45.366499999999995],
+ [-75.79866666666666, 45.3665],
[-75.801, 45.363],
[-75.797, 45.356],
- [-75.79249999999999, 45.355],
+ [-75.7925, 45.355],
[-75.79612903225807, 45.354193548387094],
[-75.8, 45.36],
[-75.809, 45.363],
@@ -1312,21 +1314,21 @@
],
[
[-75.74034375, 45.38853125],
- [-75.74033333333333, 45.388555555555556],
+ [-75.74033333333334, 45.388555555555556],
[-75.738, 45.38933333333333],
[-75.735, 45.39],
- [-75.73493548387097, 45.390096774193545],
+ [-75.73493548387097, 45.39009677419355],
[-75.73378947368421, 45.389842105263156],
[-75.74034375, 45.38853125]
],
[
- [-75.7371090909091, 45.37130909090909],
+ [-75.73710909090909, 45.371309090909094],
[-75.73617073170732, 45.372951219512196],
[-75.733, 45.372],
[-75.724, 45.375],
[-75.721, 45.381],
[-75.724, 45.388],
- [-75.72925000000001, 45.38916666666667],
+ [-75.72925, 45.38916666666667],
[-75.721, 45.391],
[-75.71904081632653, 45.39557142857143],
[-75.717, 45.392],
@@ -1338,18 +1340,18 @@
[-75.683, 45.403],
[-75.68, 45.41],
[-75.683, 45.416],
- [-75.68385714285714, 45.416285714285706],
- [-75.6845, 45.417249999999996],
+ [-75.68385714285715, 45.41628571428571],
+ [-75.6845, 45.41725],
[-75.684, 45.418],
[-75.68516363636364, 45.42003636363636],
[-75.685, 45.42],
[-75.676, 45.422],
- [-75.67510526315789, 45.42408771929825],
+ [-75.67510526315789, 45.42408771929824],
[-75.6722, 45.424733333333336],
[-75.67, 45.424],
- [-75.669, 45.42433333333333],
+ [-75.669, 45.42433333333334],
[-75.668, 45.424],
- [-75.65972000000001, 45.42676],
+ [-75.65972, 45.42676],
[-75.657, 45.422],
[-75.648, 45.42],
[-75.64683870967743, 45.420258064516126],
@@ -1359,7 +1361,7 @@
[-75.654, 45.411],
[-75.65, 45.405],
[-75.641, 45.402],
- [-75.63854545454546, 45.40281818181818],
+ [-75.63854545454545, 45.40281818181818],
[-75.636, 45.399],
[-75.63327272727273, 45.39809090909091],
[-75.634, 45.397],
@@ -1374,7 +1376,7 @@
[-75.6359090909091, 45.37236363636364],
[-75.63335294117647, 45.368529411764705],
[-75.641, 45.367],
- [-75.64273913043479, 45.36294202898551],
+ [-75.64273913043478, 45.36294202898551],
[-75.643, 45.363],
[-75.6448, 45.3626],
[-75.646, 45.363],
@@ -1385,7 +1387,7 @@
[-75.679, 45.357],
[-75.683, 45.351],
[-75.68033333333334, 45.347],
- [-75.6806153846154, 45.346576923076924],
+ [-75.68061538461538, 45.346576923076924],
[-75.682, 45.349],
[-75.691, 45.351],
[-75.69373913043478, 45.35039130434782],
@@ -1401,7 +1403,7 @@
[-75.713, 45.377],
[-75.717, 45.37],
[-75.713, 45.364],
- [-75.71166666666666, 45.36355555555556],
+ [-75.71166666666667, 45.36355555555556],
[-75.711, 45.362],
[-75.708, 45.361333333333334],
[-75.714, 45.36],
@@ -1409,28 +1411,30 @@
[-75.714, 45.347],
[-75.71244, 45.34648],
[-75.71342253521127, 45.344760563380284],
- [-75.71867272727272, 45.34592727272727],
+ [-75.71867272727273, 45.34592727272727],
+ [-75.721, 45.35],
[-75.72315384615385, 45.35376923076923],
[-75.723, 45.354],
- [-75.72330769230769, 45.35453846153846],
+ [-75.7233076923077, 45.35453846153846],
[-75.723, 45.355],
- [-75.72466666666666, 45.357499999999995],
+ [-75.72466666666666, 45.3575],
+ [-75.723, 45.36],
[-75.721, 45.363],
[-75.725, 45.37],
[-75.734, 45.372],
- [-75.7371090909091, 45.37130909090909]
+ [-75.73710909090909, 45.371309090909094]
],
[
- [-75.63419999999999, 45.43593333333334],
+ [-75.6342, 45.43593333333333],
[-75.631, 45.437],
- [-75.63071428571429, 45.437571428571424],
+ [-75.63071428571429, 45.43757142857143],
[-75.629, 45.437],
[-75.62233333333333, 45.43922222222222],
[-75.62482608695652, 45.43340579710145],
- [-75.629, 45.43433333333334],
- [-75.62976470588235, 45.43458823529412],
+ [-75.629, 45.434333333333335],
+ [-75.62976470588235, 45.434588235294115],
[-75.63, 45.435],
- [-75.63419999999999, 45.43593333333334]
+ [-75.6342, 45.43593333333333]
]
]
}
@@ -1449,7 +1453,7 @@
[-75.796, 45.413],
[-75.79633333333334, 45.4135],
[-75.796, 45.414],
- [-75.79626666666667, 45.41446666666666],
+ [-75.79626666666667, 45.41446666666667],
[-75.795, 45.417],
[-75.798, 45.423],
[-75.807, 45.426],
@@ -1478,7 +1482,7 @@
[-75.795, 45.386],
[-75.798, 45.392],
[-75.807, 45.395],
- [-75.8075, 45.39483333333334],
+ [-75.8075, 45.39483333333333],
[-75.808, 45.395],
[-75.817, 45.392],
[-75.821, 45.386]
@@ -1497,7 +1501,7 @@
[-75.811, 45.263],
[-75.802, 45.26],
[-75.793, 45.263],
- [-75.79265217391304, 45.26352173913044],
+ [-75.79265217391304, 45.26352173913043],
[-75.792, 45.262],
[-75.782, 45.26],
[-75.773, 45.262],
@@ -1505,7 +1509,7 @@
[-75.773, 45.275],
[-75.782, 45.278],
[-75.792, 45.275],
- [-75.79220000000001, 45.2746],
+ [-75.7922, 45.2746],
[-75.793, 45.276],
[-75.802, 45.278],
[-75.811, 45.276],
@@ -1526,7 +1530,7 @@
[-75.786, 45.435],
[-75.77863636363637, 45.43663636363636],
[-75.779, 45.436],
- [-75.77553846153846, 45.43080769230769],
+ [-75.77553846153846, 45.430807692307695],
[-75.776, 45.43],
[-75.77, 45.421],
[-75.761, 45.418],
@@ -1535,7 +1539,7 @@
[-75.746, 45.413],
[-75.737, 45.416],
[-75.733, 45.422],
- [-75.73328571428573, 45.422428571428576],
+ [-75.73328571428571, 45.42242857142857],
[-75.726, 45.42],
[-75.717, 45.423],
[-75.71534782608695, 45.42547826086957],
@@ -1549,18 +1553,18 @@
[-75.722, 45.453],
[-75.7225, 45.452125],
[-75.723, 45.453],
- [-75.72398181818181, 45.45321818181819],
+ [-75.72398181818181, 45.45321818181818],
[-75.725, 45.455],
- [-75.72964516129032, 45.45603225806451],
+ [-75.72964516129032, 45.45603225806452],
[-75.729, 45.457],
- [-75.72935714285714, 45.45762499999999],
+ [-75.72935714285714, 45.457625],
[-75.728, 45.46],
- [-75.72927272727273, 45.461909090909096],
+ [-75.72927272727273, 45.46190909090909],
[-75.729, 45.462],
[-75.725, 45.468],
[-75.7251690140845, 45.468295774647885],
[-75.722, 45.469],
- [-75.71969230769231, 45.47303846153846],
+ [-75.71969230769231, 45.473038461538465],
[-75.717, 45.469],
[-75.71281690140844, 45.46807042253521],
[-75.714, 45.466],
@@ -1572,22 +1576,22 @@
[-75.69, 45.455],
[-75.6882, 45.4592],
[-75.687, 45.461],
- [-75.68724489795918, 45.46142857142857],
+ [-75.68724489795919, 45.46142857142857],
[-75.687, 45.462],
[-75.68857142857142, 45.46514285714286],
[-75.688, 45.466],
[-75.69173333333333, 45.47253333333333],
[-75.689, 45.478],
- [-75.68985714285714, 45.479714285714294],
+ [-75.68985714285714, 45.47971428571429],
[-75.68954545454545, 45.48018181818182],
[-75.689, 45.48],
- [-75.68709090909091, 45.48063636363636],
+ [-75.68709090909091, 45.480636363636364],
[-75.684, 45.476],
[-75.675, 45.473],
[-75.666, 45.476],
[-75.66587096774194, 45.476193548387094],
[-75.665, 45.476],
- [-75.6584, 45.47746666666667],
+ [-75.6584, 45.477466666666665],
[-75.651, 45.475],
[-75.648, 45.476],
[-75.645, 45.475],
@@ -1595,7 +1599,7 @@
[-75.639, 45.475],
[-75.63, 45.478],
[-75.626, 45.484],
- [-75.62969230769231, 45.490461538461545],
+ [-75.62969230769231, 45.49046153846154],
[-75.628, 45.493],
[-75.63092307692308, 45.49811538461538],
[-75.629, 45.501],
@@ -1605,9 +1609,9 @@
[-75.655, 45.501],
[-75.65442857142857, 45.500142857142855],
[-75.657, 45.501],
- [-75.66557142857144, 45.49814285714285],
+ [-75.66557142857143, 45.49814285714286],
[-75.663, 45.502],
- [-75.66392307692307, 45.50361538461539],
+ [-75.66392307692308, 45.50361538461539],
[-75.663, 45.505],
[-75.667, 45.512],
[-75.676, 45.514],
@@ -1618,7 +1622,7 @@
[-75.68586956521739, 45.49730434782609],
[-75.689, 45.498],
[-75.698, 45.496],
- [-75.70128571428572, 45.490249999999996],
+ [-75.70128571428572, 45.49025],
[-75.704, 45.495],
[-75.713, 45.497],
[-75.7148, 45.4966],
@@ -1626,19 +1630,19 @@
[-75.72, 45.49766666666667],
[-75.724, 45.499],
[-75.733, 45.496],
- [-75.73557142857143, 45.492142857142866],
+ [-75.73557142857143, 45.49214285714286],
[-75.737, 45.495],
[-75.747, 45.498],
[-75.756, 45.495],
[-75.76, 45.488],
[-75.756, 45.482],
- [-75.74915999999999, 45.47972],
+ [-75.74916, 45.47972],
[-75.753, 45.473],
[-75.75119354838709, 45.470290322580645],
[-75.757, 45.469],
- [-75.75791836734695, 45.46685714285715],
+ [-75.75791836734695, 45.466857142857144],
[-75.758, 45.467],
- [-75.76294366197183, 45.4680985915493],
+ [-75.76294366197183, 45.46809859154929],
[-75.759, 45.475],
[-75.763, 45.481],
[-75.772, 45.484],
@@ -1651,18 +1655,18 @@
[-75.767, 45.451],
[-75.76372727272727, 45.452090909090906],
[-75.761, 45.448],
- [-75.7567142857143, 45.44657142857143],
+ [-75.75671428571428, 45.44657142857143],
[-75.753, 45.441],
[-75.744, 45.438],
- [-75.74040000000001, 45.4392],
+ [-75.7404, 45.4392],
[-75.738, 45.435],
[-75.73538709677419, 45.43441935483871],
[-75.739, 45.429],
- [-75.7387142857143, 45.42857142857143],
+ [-75.73871428571428, 45.42857142857143],
[-75.746, 45.431],
- [-75.75028571428572, 45.42957142857142],
+ [-75.75028571428571, 45.42957142857143],
[-75.75, 45.43],
- [-75.75323076923077, 45.43565384615384],
+ [-75.75323076923077, 45.43565384615385],
[-75.753, 45.436],
[-75.757, 45.443],
[-75.766, 45.445],
@@ -1674,18 +1678,18 @@
[-75.799, 45.444]
],
[
- [-75.73649999999999, 45.48316666666667],
- [-75.73519999999999, 45.486200000000004],
- [-75.735, 45.48649999999999],
- [-75.73364000000001, 45.48412],
- [-75.73649999999999, 45.48316666666667]
+ [-75.7365, 45.48316666666667],
+ [-75.7352, 45.4862],
+ [-75.735, 45.4865],
+ [-75.73364, 45.48412],
+ [-75.7365, 45.48316666666667]
],
[
- [-75.72095652173913, 45.48043478260869],
+ [-75.72095652173913, 45.4804347826087],
[-75.719, 45.48],
[-75.71801818181818, 45.48021818181818],
[-75.7193076923077, 45.477961538461535],
- [-75.72095652173913, 45.48043478260869]
+ [-75.72095652173913, 45.4804347826087]
]
]
}
@@ -1742,15 +1746,16 @@
[-75.76560869565218, 45.28091304347826],
[-75.765, 45.28],
[-75.7570909090909, 45.27736363636364],
- [-75.75857142857143, 45.27514285714285],
+ [-75.75857142857143, 45.27514285714286],
[-75.759, 45.275],
[-75.763, 45.269],
[-75.759, 45.262],
[-75.75, 45.26],
[-75.741, 45.262],
[-75.73942105263158, 45.26568421052632],
+ [-75.738, 45.266],
[-75.729, 45.268],
- [-75.72788, 45.269960000000005],
+ [-75.72788, 45.26996],
[-75.719, 45.267],
[-75.71168, 45.26944],
[-75.708, 45.263],
@@ -1758,7 +1763,7 @@
[-75.69, 45.263],
[-75.686, 45.27],
[-75.69, 45.276],
- [-75.69879999999998, 45.278933333333335],
+ [-75.6988, 45.278933333333335],
[-75.694, 45.28],
[-75.69, 45.287],
[-75.694, 45.293],
@@ -1766,7 +1771,7 @@
[-75.712, 45.293],
[-75.71366666666667, 45.2905],
[-75.714, 45.291],
- [-75.71523529411765, 45.29141176470588],
+ [-75.71523529411765, 45.291411764705884],
[-75.719, 45.298],
[-75.723, 45.304],
[-75.732, 45.307],
@@ -1780,21 +1785,21 @@
[-75.77, 45.287]
],
[
- [-75.74614285714286, 45.28171428571428],
+ [-75.74614285714286, 45.28171428571429],
[-75.7454, 45.2832],
[-75.743, 45.284],
[-75.73966666666666, 45.289],
[-75.737, 45.285],
- [-75.73576470588236, 45.284588235294116],
+ [-75.73576470588235, 45.284588235294116],
[-75.73482352941177, 45.28294117647059],
[-75.738, 45.284],
- [-75.74549999999999, 45.281499999999994],
- [-75.74614285714286, 45.28171428571428]
+ [-75.7455, 45.2815],
+ [-75.74614285714286, 45.28171428571429]
],
[
[-75.70808695652174, 45.27913043478261],
[-75.703, 45.278],
- [-75.7, 45.27866666666666],
+ [-75.7, 45.278666666666666],
[-75.70636363636363, 45.276545454545456],
[-75.70808695652174, 45.27913043478261]
]
@@ -1929,12 +1934,12 @@
[-75.654, 45.364],
[-75.65, 45.37],
[-75.654, 45.376],
- [-75.65454545454546, 45.37618181818181],
+ [-75.65454545454546, 45.37618181818182],
[-75.654, 45.377],
- [-75.65564285714285, 45.379875000000006],
+ [-75.65564285714285, 45.379875],
[-75.655, 45.381],
[-75.659, 45.387],
- [-75.66416000000001, 45.38872],
+ [-75.66416, 45.38872],
[-75.664, 45.389],
[-75.668, 45.395],
[-75.677, 45.398],
@@ -1978,7 +1983,7 @@
[-75.651, 45.011],
[-75.642, 45.013],
[-75.638, 45.02],
- [-75.63825806451614, 45.02038709677419],
+ [-75.63825806451612, 45.02038709677419],
[-75.631, 45.022],
[-75.63078181818182, 45.02238181818182],
[-75.628, 45.023],
@@ -1986,7 +1991,7 @@
[-75.628, 45.036],
[-75.637, 45.039],
[-75.649, 45.035],
- [-75.65157142857143, 45.031142857142854],
+ [-75.65157142857143, 45.03114285714286],
[-75.658, 45.029],
[-75.65857142857143, 45.02814285714286],
[-75.662, 45.027],
@@ -2066,7 +2071,7 @@
[-75.619, 45.138],
[-75.61, 45.135],
[-75.601, 45.138],
- [-75.60073913043477, 45.13839130434783],
+ [-75.60073913043479, 45.13839130434783],
[-75.598, 45.139],
[-75.594, 45.146],
[-75.598, 45.152],
@@ -2141,7 +2146,7 @@
[-75.594, 45.311],
[-75.585, 45.313],
[-75.581, 45.32],
- [-75.58361538461538, 45.32392307692307],
+ [-75.58361538461538, 45.32392307692308],
[-75.583, 45.325],
[-75.587, 45.331],
[-75.591, 45.338],
@@ -2262,7 +2267,7 @@
[-75.561, 45.462],
[-75.558, 45.455],
[-75.548, 45.453],
- [-75.54575, 45.453500000000005],
+ [-75.54575, 45.4535],
[-75.548, 45.449],
[-75.545, 45.442],
[-75.536, 45.44],
@@ -2273,40 +2278,41 @@
[-75.512, 45.444],
[-75.509, 45.445],
[-75.5, 45.447],
- [-75.49952941176471, 45.44782352941176],
+ [-75.49952941176471, 45.447823529411764],
[-75.496, 45.449],
- [-75.49582608695651, 45.449260869565215],
+ [-75.49582608695653, 45.449260869565215],
[-75.49439130434783, 45.449579710144924],
[-75.492, 45.444],
[-75.483, 45.442],
[-75.474, 45.444],
[-75.47, 45.451],
[-75.474, 45.457],
- [-75.47657142857142, 45.45785714285714],
+ [-75.47657142857143, 45.457857142857144],
[-75.475, 45.461],
[-75.478, 45.468],
[-75.47865454545455, 45.46814545454546],
[-75.482, 45.474],
- [-75.48500000000001, 45.47466666666667],
+ [-75.485, 45.474666666666664],
[-75.492, 45.477],
[-75.501, 45.474],
[-75.504, 45.468],
- [-75.50373333333334, 45.46746666666667],
+ [-75.50373333333333, 45.46746666666667],
[-75.504, 45.467],
- [-75.50272727272727, 45.465090909090904],
+ [-75.50272727272727, 45.46509090909091],
[-75.506, 45.464],
[-75.506125, 45.46375],
[-75.514, 45.462],
- [-75.51447058823528, 45.46117647058824],
+ [-75.5144705882353, 45.461176470588235],
+ [-75.518, 45.46],
[-75.521, 45.459],
- [-75.52372727272727, 45.4549090909091],
+ [-75.52372727272727, 45.45490909090909],
[-75.527, 45.456],
- [-75.52850000000001, 45.4555],
+ [-75.5285, 45.4555],
[-75.5322, 45.45673333333333],
[-75.531, 45.457],
- [-75.53066666666668, 45.45777777777777],
+ [-75.53066666666666, 45.45777777777778],
[-75.53, 45.458],
- [-75.52947826086957, 45.45878260869566],
+ [-75.52947826086957, 45.45878260869565],
[-75.524, 45.46],
[-75.52268421052632, 45.463070175438595],
[-75.514, 45.465],
@@ -2318,15 +2324,15 @@
[-75.503, 45.485],
[-75.513, 45.487],
[-75.522, 45.485],
- [-75.52288524590165, 45.482934426229505],
+ [-75.52288524590163, 45.482934426229505],
[-75.526, 45.482],
- [-75.52615384615385, 45.4816923076923],
+ [-75.52615384615385, 45.481692307692306],
[-75.528, 45.486],
[-75.537, 45.488],
[-75.547, 45.486],
[-75.55, 45.479],
[-75.547, 45.473],
- [-75.54359574468084, 45.471978723404256],
+ [-75.54359574468086, 45.471978723404256],
[-75.548, 45.471],
[-75.558, 45.468],
[-75.561, 45.462]
@@ -2443,13 +2449,13 @@
[
[-75.494, 45.492],
[-75.49, 45.486],
- [-75.48957142857144, 45.48585714285714],
+ [-75.48957142857142, 45.48585714285714],
[-75.489, 45.485],
[-75.48, 45.482],
[-75.471, 45.485],
[-75.467, 45.491],
[-75.471, 45.497],
- [-75.47142857142856, 45.497142857142855],
+ [-75.47142857142858, 45.497142857142855],
[-75.472, 45.498],
[-75.481, 45.501],
[-75.49, 45.498],
@@ -2547,7 +2553,7 @@
[
[-75.456, 45.345],
[-75.453, 45.339],
- [-75.45214285714286, 45.33871428571428],
+ [-75.45214285714286, 45.33871428571429],
[-75.449, 45.334],
[-75.44, 45.331],
[-75.431, 45.334],
@@ -2577,15 +2583,15 @@
[-75.431, 45.533],
[-75.421, 45.536],
[-75.418, 45.542],
- [-75.42016666666667, 45.54705555555555],
+ [-75.42016666666666, 45.54705555555555],
[-75.42, 45.547],
[-75.411, 45.55],
[-75.407, 45.556],
[-75.411, 45.562],
[-75.41276470588235, 45.562588235294115],
[-75.413, 45.563],
- [-75.41600000000003, 45.56366666666668],
- [-75.41614285714286, 45.56371428571429],
+ [-75.416, 45.56366666666667],
+ [-75.41614285714286, 45.56371428571428],
[-75.419, 45.568],
[-75.428, 45.571],
[-75.437, 45.568],
@@ -2658,7 +2664,7 @@
[-75.391, 45.582],
[-75.401, 45.585],
[-75.403, 45.588],
- [-75.41058823529413, 45.590529411764706],
+ [-75.41058823529411, 45.590529411764706],
[-75.412, 45.593],
[-75.421, 45.595],
[-75.43, 45.593],
@@ -2702,7 +2708,7 @@
[-75.401, 45.51],
[-75.397, 45.517],
[-75.401, 45.523],
- [-75.40142857142858, 45.523142857142865],
+ [-75.40142857142857, 45.52314285714286],
[-75.402, 45.524],
[-75.411, 45.527],
[-75.42, 45.524],
@@ -2780,9 +2786,9 @@
[
[-75.359, 45.331],
[-75.356, 45.325],
- [-75.3554705882353, 45.32482352941177],
+ [-75.35547058823529, 45.324823529411766],
[-75.355, 45.324],
- [-75.34899999999996, 45.322666666666656],
+ [-75.349, 45.32266666666667],
[-75.347, 45.322],
[-75.3466, 45.32213333333333],
[-75.346, 45.322],
@@ -2871,12 +2877,12 @@
"coordinates": [
[
[-75.316, 45.546],
- [-75.3133846153846, 45.54207692307692],
+ [-75.31338461538462, 45.54207692307692],
[-75.314, 45.541],
[-75.31, 45.535],
[-75.301, 45.532],
[-75.292, 45.535],
- [-75.29, 45.538000000000004],
+ [-75.29, 45.538],
[-75.287, 45.539],
[-75.283, 45.545],
[-75.2846, 45.5478],
@@ -2884,7 +2890,7 @@
[-75.286, 45.558],
[-75.296, 45.56],
[-75.305, 45.558],
- [-75.30663157894737, 45.55419298245614],
+ [-75.30663157894737, 45.554192982456144],
[-75.312, 45.553],
[-75.316, 45.546]
]
@@ -3029,13 +3035,13 @@
[-75.241, 45.588],
[-75.232, 45.591],
[-75.228, 45.597],
- [-75.2282857142857, 45.5975],
+ [-75.22828571428572, 45.5975],
[-75.228, 45.598],
[-75.232, 45.604],
[-75.241, 45.607],
[-75.25, 45.604],
[-75.254, 45.598],
- [-75.2537142857143, 45.5975],
+ [-75.25371428571428, 45.5975],
[-75.254, 45.597]
]
]
@@ -3075,15 +3081,15 @@
[-75.242, 45.29],
[-75.238, 45.284],
[-75.229, 45.281],
- [-75.22200000000001, 45.283333333333324],
+ [-75.222, 45.28333333333333],
[-75.219, 45.284],
- [-75.21719999999999, 45.28820000000001],
+ [-75.2172, 45.2882],
[-75.216, 45.29],
- [-75.21624489795917, 45.29042857142857],
+ [-75.21624489795919, 45.29042857142857],
[-75.216, 45.291],
[-75.219, 45.297],
[-75.228, 45.3],
- [-75.235, 45.29766666666667],
+ [-75.235, 45.297666666666665],
[-75.238, 45.297],
[-75.242, 45.29]
]
@@ -3202,7 +3208,7 @@
[-75.09447826086956, 45.30721739130435],
[-75.095, 45.306],
[-75.092, 45.3],
- [-75.09152, 45.299839999999996],
+ [-75.09152, 45.29984],
[-75.092, 45.299],
[-75.088, 45.293],
[-75.079, 45.29],
@@ -3211,7 +3217,7 @@
[-75.06907692307692, 45.30438461538461],
[-75.068, 45.306],
[-75.072, 45.313],
- [-75.07643478260869, 45.31398550724637],
+ [-75.0764347826087, 45.31398550724638],
[-75.076, 45.315],
[-75.079, 45.321],
[-75.089, 45.324],
@@ -3298,7 +3304,7 @@
[-74.9975, 45.52616666666667],
[-74.997, 45.526],
[-74.988, 45.529],
- [-74.98514285714285, 45.53328571428571],
+ [-74.98514285714286, 45.53328571428571],
[-74.98, 45.535],
[-74.977, 45.541],
[-74.98, 45.547],
@@ -3306,7 +3312,7 @@
[-74.998, 45.547],
[-75.00052173913043, 45.543217391304346],
[-75.006, 45.542],
- [-75.0064705882353, 45.54117647058823],
+ [-75.00647058823529, 45.54117647058823],
[-75.007, 45.541],
[-75.011, 45.535]
]
@@ -3404,12 +3410,12 @@
[-74.921, 45.543],
[-74.912, 45.541],
[-74.902, 45.543],
- [-74.90178947368422, 45.543491228070174],
+ [-74.9017894736842, 45.543491228070174],
[-74.895, 45.545],
[-74.891, 45.552],
[-74.895, 45.558],
[-74.904, 45.561],
- [-74.91094736842106, 45.558684210526316],
+ [-74.91094736842105, 45.558684210526316],
[-74.912, 45.559],
[-74.921, 45.556],
[-74.924, 45.55]
@@ -3446,7 +3452,7 @@
[
[-74.913, 45.347],
[-74.909, 45.341],
- [-74.90852000000001, 45.34084],
+ [-74.90852, 45.34084],
[-74.909, 45.34],
[-74.905, 45.334],
[-74.896, 45.331],
diff --git a/packages/turf-dissolve/test/out/polysWithoutProperty.geojson b/packages/turf-dissolve/test/out/polysWithoutProperty.geojson
index 4c40c01c9..a25a35080 100644
--- a/packages/turf-dissolve/test/out/polysWithoutProperty.geojson
+++ b/packages/turf-dissolve/test/out/polysWithoutProperty.geojson
@@ -42,7 +42,7 @@
],
[
[0.7659179283564485, 0.10986321392741416],
- [0.851440429687502, 0.2524007161458367],
+ [0.851440429687502, 0.25240071614583665],
[0.851440429687502, 0.10986321392741416],
[0.7659179283564485, 0.10986321392741416]
]
diff --git a/packages/turf-dissolve/test/out/simplified-issue.geojson b/packages/turf-dissolve/test/out/simplified-issue.geojson
index ba38ca1aa..bc18e1fe0 100644
--- a/packages/turf-dissolve/test/out/simplified-issue.geojson
+++ b/packages/turf-dissolve/test/out/simplified-issue.geojson
@@ -12,7 +12,7 @@
[-75.818, 45.347],
[-75.809, 45.345],
[-75.80038028169014, 45.34691549295775],
- [-75.799, 45.344500000000004],
+ [-75.799, 45.3445],
[-75.801, 45.341],
[-75.797, 45.335],
[-75.788, 45.332],
@@ -21,7 +21,7 @@
[-75.777, 45.336],
[-75.77558064516128, 45.33812903225807],
[-75.775, 45.338],
- [-75.76714084507043, 45.339746478873245],
+ [-75.76714084507043, 45.33974647887324],
[-75.765, 45.336],
[-75.76398591549295, 45.33577464788733],
[-75.765, 45.334],
@@ -34,21 +34,21 @@
[-75.744, 45.343],
[-75.747, 45.349],
[-75.756, 45.352],
- [-75.76363636363637, 45.34945454545454],
+ [-75.76363636363637, 45.34945454545455],
[-75.766, 45.353],
[-75.775, 45.356],
- [-75.78020000000001, 45.35426666666667],
+ [-75.7802, 45.35426666666667],
[-75.7835, 45.355],
[-75.779, 45.356],
[-75.77629577464789, 45.360732394366195],
[-75.773, 45.36],
[-75.764, 45.362],
- [-75.76067605633803, 45.367816901408446],
+ [-75.76067605633803, 45.36781690140845],
[-75.757, 45.367],
- [-75.75474999999999, 45.3675],
+ [-75.75475, 45.3675],
[-75.74901408450704, 45.36622535211268],
[-75.752, 45.361],
- [-75.74823076923077, 45.35534615384615],
+ [-75.74823076923077, 45.355346153846156],
[-75.749, 45.354],
[-75.745, 45.348],
[-75.743, 45.344],
@@ -57,7 +57,7 @@
[-75.739, 45.337],
[-75.735625, 45.335875],
[-75.736, 45.335],
- [-75.73371428571429, 45.33042857142856],
+ [-75.73371428571429, 45.33042857142857],
[-75.734, 45.33],
[-75.73261538461539, 45.327576923076926],
[-75.733, 45.327],
@@ -70,7 +70,7 @@
[-75.694, 45.325],
[-75.685, 45.327],
[-75.681, 45.334],
- [-75.68227272727272, 45.33590909090909],
+ [-75.68227272727273, 45.33590909090909],
[-75.682, 45.336],
[-75.68016666666666, 45.33875],
[-75.679, 45.337],
@@ -91,14 +91,14 @@
[-75.616, 45.342],
[-75.612, 45.348],
[-75.616, 45.354],
- [-75.6195, 45.35516666666666],
+ [-75.6195, 45.35516666666667],
[-75.611, 45.358],
[-75.607, 45.364],
[-75.611, 45.371],
[-75.61274193548387, 45.37138709677419],
[-75.611, 45.374],
[-75.615, 45.38],
- [-75.6165, 45.380500000000005],
+ [-75.6165, 45.3805],
[-75.61390909090909, 45.38136363636364],
[-75.611, 45.377],
[-75.60909090909091, 45.376363636363635],
@@ -108,34 +108,34 @@
[-75.588, 45.368],
[-75.584, 45.375],
[-75.588, 45.381],
- [-75.58990909090909, 45.38163636363637],
+ [-75.58990909090909, 45.38163636363636],
[-75.589, 45.383],
[-75.593, 45.389],
[-75.602, 45.392],
- [-75.60671428571428, 45.39042857142857],
+ [-75.60671428571429, 45.39042857142857],
[-75.609, 45.395],
- [-75.60906122448979, 45.39514285714287],
+ [-75.60906122448979, 45.39514285714286],
[-75.608, 45.397],
[-75.61018181818181, 45.40027272727273],
[-75.608, 45.401],
[-75.60495652173913, 45.405565217391306],
[-75.603, 45.406],
- [-75.60252941176469, 45.40682352941177],
+ [-75.6025294117647, 45.40682352941177],
[-75.596, 45.409],
[-75.59527272727273, 45.41009090909091],
[-75.595, 45.41],
[-75.586, 45.413],
[-75.582, 45.419],
[-75.586, 45.425],
- [-75.58666666666667, 45.42522222222222],
+ [-75.58666666666667, 45.425222222222224],
[-75.587, 45.426],
- [-75.59300000000003, 45.42733333333334],
+ [-75.593, 45.42733333333333],
[-75.595, 45.428],
[-75.5954, 45.42786666666667],
[-75.596, 45.428],
[-75.605, 45.426],
- [-75.60520000000001, 45.42593333333333],
- [-75.60640000000001, 45.4262],
+ [-75.6052, 45.42593333333333],
+ [-75.6064, 45.4262],
[-75.604, 45.427],
[-75.60371428571429, 45.42742857142857],
[-75.596, 45.43],
@@ -153,42 +153,42 @@
[-75.595, 45.457],
[-75.604, 45.454],
[-75.608, 45.448],
- [-75.60624, 45.444919999999996],
- [-75.60799999999998, 45.44433333333334],
+ [-75.60624, 45.44492],
+ [-75.608, 45.44433333333333],
[-75.614, 45.443],
[-75.61433333333333, 45.44222222222222],
[-75.615, 45.442],
- [-75.61524999999999, 45.4415],
- [-75.61965217391305, 45.44052173913043],
+ [-75.61525, 45.4415],
+ [-75.61965217391304, 45.44052173913043],
[-75.616, 45.446],
[-75.62, 45.453],
[-75.629, 45.455],
[-75.638, 45.453],
[-75.6388, 45.4516],
[-75.64, 45.452],
- [-75.64084000000001, 45.451719999999995],
+ [-75.64084, 45.45172],
[-75.641, 45.452],
[-75.65, 45.454],
[-75.659, 45.452],
- [-75.66030434782608, 45.448956521739134],
+ [-75.66030434782608, 45.44895652173913],
[-75.661, 45.45],
[-75.67, 45.452],
[-75.679, 45.45],
- [-75.68091304347827, 45.44713043478261],
+ [-75.68091304347826, 45.44713043478261],
[-75.686, 45.446],
[-75.689, 45.439],
[-75.68857142857142, 45.43814285714286],
[-75.689, 45.438],
- [-75.68979999999999, 45.436400000000006],
+ [-75.6898, 45.4364],
[-75.694, 45.435],
[-75.698, 45.429],
- [-75.69683636363636, 45.42696363636363],
+ [-75.69683636363636, 45.42696363636364],
[-75.697, 45.427],
[-75.706, 45.425],
- [-75.70952941176469, 45.41882352941177],
+ [-75.7095294117647, 45.41882352941177],
[-75.715, 45.417],
[-75.719, 45.411],
- [-75.7166923076923, 45.407538461538465],
+ [-75.71669230769231, 45.407538461538465],
[-75.717, 45.407],
[-75.7159090909091, 45.40536363636364],
[-75.717, 45.405],
@@ -197,28 +197,29 @@
[-75.739, 45.412],
[-75.7424909090909, 45.40589090909091],
[-75.751, 45.404],
- [-75.75136363636365, 45.403363636363636],
+ [-75.75136363636364, 45.403363636363636],
[-75.753, 45.403],
- [-75.75370588235293, 45.40176470588236],
+ [-75.75370588235295, 45.40176470588235],
+ [-75.759, 45.4],
[-75.762, 45.399],
[-75.766, 45.393],
[-75.762, 45.386],
- [-75.75800000000001, 45.385111111111115],
+ [-75.758, 45.38511111111111],
[-75.763, 45.384],
- [-75.76321818181819, 45.383618181818186],
+ [-75.76321818181817, 45.38361818181818],
[-75.766, 45.383],
[-75.76952, 45.37684],
[-75.773, 45.378],
- [-75.77449999999999, 45.377500000000005],
+ [-75.7745, 45.3775],
[-75.782, 45.38],
[-75.791, 45.377],
[-75.79265217391304, 45.37452173913044],
[-75.795, 45.374],
[-75.799, 45.367],
- [-75.79866666666668, 45.366499999999995],
+ [-75.79866666666666, 45.3665],
[-75.801, 45.363],
[-75.797, 45.356],
- [-75.79249999999999, 45.355],
+ [-75.7925, 45.355],
[-75.79612903225807, 45.354193548387094],
[-75.8, 45.36],
[-75.809, 45.363],
@@ -227,21 +228,21 @@
],
[
[-75.74034375, 45.38853125],
- [-75.74033333333333, 45.388555555555556],
+ [-75.74033333333334, 45.388555555555556],
[-75.738, 45.38933333333333],
[-75.735, 45.39],
- [-75.73493548387097, 45.390096774193545],
+ [-75.73493548387097, 45.39009677419355],
[-75.73378947368421, 45.389842105263156],
[-75.74034375, 45.38853125]
],
[
- [-75.7371090909091, 45.37130909090909],
+ [-75.73710909090909, 45.371309090909094],
[-75.73617073170732, 45.372951219512196],
[-75.733, 45.372],
[-75.724, 45.375],
[-75.721, 45.381],
[-75.724, 45.388],
- [-75.72925000000001, 45.38916666666667],
+ [-75.72925, 45.38916666666667],
[-75.721, 45.391],
[-75.71904081632653, 45.39557142857143],
[-75.717, 45.392],
@@ -253,18 +254,18 @@
[-75.683, 45.403],
[-75.68, 45.41],
[-75.683, 45.416],
- [-75.68385714285714, 45.416285714285706],
- [-75.6845, 45.417249999999996],
+ [-75.68385714285715, 45.41628571428571],
+ [-75.6845, 45.41725],
[-75.684, 45.418],
[-75.68516363636364, 45.42003636363636],
[-75.685, 45.42],
[-75.676, 45.422],
- [-75.67510526315789, 45.42408771929825],
+ [-75.67510526315789, 45.42408771929824],
[-75.6722, 45.424733333333336],
[-75.67, 45.424],
- [-75.66900000000001, 45.42433333333333],
+ [-75.669, 45.42433333333334],
[-75.668, 45.424],
- [-75.65972000000001, 45.42676],
+ [-75.65972, 45.42676],
[-75.657, 45.422],
[-75.648, 45.42],
[-75.64683870967743, 45.420258064516126],
@@ -289,7 +290,7 @@
[-75.6359090909091, 45.37236363636364],
[-75.63335294117647, 45.368529411764705],
[-75.641, 45.367],
- [-75.64273913043479, 45.36294202898551],
+ [-75.64273913043478, 45.36294202898551],
[-75.643, 45.363],
[-75.6448, 45.3626],
[-75.646, 45.363],
@@ -300,7 +301,7 @@
[-75.679, 45.357],
[-75.683, 45.351],
[-75.68033333333334, 45.347],
- [-75.6806153846154, 45.346576923076924],
+ [-75.68061538461538, 45.346576923076924],
[-75.682, 45.349],
[-75.691, 45.351],
[-75.69373913043478, 45.35039130434782],
@@ -316,7 +317,7 @@
[-75.713, 45.377],
[-75.717, 45.37],
[-75.713, 45.364],
- [-75.71166666666666, 45.36355555555556],
+ [-75.71166666666667, 45.36355555555556],
[-75.711, 45.362],
[-75.708, 45.361333333333334],
[-75.714, 45.36],
@@ -324,28 +325,30 @@
[-75.714, 45.347],
[-75.71244, 45.34648],
[-75.71342253521127, 45.344760563380284],
- [-75.71867272727272, 45.34592727272727],
+ [-75.71867272727273, 45.34592727272727],
+ [-75.721, 45.35],
[-75.72315384615385, 45.35376923076923],
[-75.723, 45.354],
- [-75.72330769230769, 45.35453846153846],
+ [-75.7233076923077, 45.35453846153846],
[-75.723, 45.355],
- [-75.72466666666666, 45.357499999999995],
+ [-75.72466666666666, 45.3575],
+ [-75.723, 45.36],
[-75.721, 45.363],
[-75.725, 45.37],
[-75.734, 45.372],
- [-75.7371090909091, 45.37130909090909]
+ [-75.73710909090909, 45.371309090909094]
],
[
- [-75.63419999999999, 45.43593333333334],
+ [-75.6342, 45.43593333333333],
[-75.631, 45.437],
- [-75.63071428571429, 45.437571428571424],
+ [-75.63071428571429, 45.43757142857143],
[-75.629, 45.437],
[-75.62233333333333, 45.43922222222222],
[-75.62482608695652, 45.43340579710145],
- [-75.629, 45.43433333333334],
- [-75.62976470588235, 45.43458823529412],
+ [-75.629, 45.434333333333335],
+ [-75.62976470588235, 45.434588235294115],
[-75.63, 45.435],
- [-75.63419999999999, 45.43593333333334]
+ [-75.6342, 45.43593333333333]
]
]
}
diff --git a/packages/turf-distance-weight/index.ts b/packages/turf-distance-weight/index.ts
index cdac777c7..bb966dd2b 100644
--- a/packages/turf-distance-weight/index.ts
+++ b/packages/turf-distance-weight/index.ts
@@ -5,6 +5,8 @@ import { featureEach } from "@turf/meta";
/**
* calcualte the Minkowski p-norm distance between two features.
+ *
+ * @function
* @param feature1 point feature
* @param feature2 point feature
* @param p p-norm 1=} fc FeatureCollection.
* @param {Object} [options] option object.
* @param {number} [options.threshold=10000] If the distance between neighbor and
diff --git a/packages/turf-distance-weight/package.json b/packages/turf-distance-weight/package.json
index 0aa0e1d81..90bc6892b 100644
--- a/packages/turf-distance-weight/package.json
+++ b/packages/turf-distance-weight/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/distance-weight",
- "version": "7.0.0",
- "description": "turf distance-weight module",
+ "version": "7.2.0",
+ "description": "Calculate the influence or weight of points over an area based on their distances.",
"author": "Turf Authors",
"contributors": [
"Haoming Zhuang <@zhuang-hao-ming>"
@@ -53,22 +53,22 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/centroid": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/centroid": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-distance/README.md b/packages/turf-distance/README.md
index f521aa5f8..9b0aee7bd 100644
--- a/packages/turf-distance/README.md
+++ b/packages/turf-distance/README.md
@@ -13,7 +13,7 @@ This uses the [Haversine formula][2] to account for global curvature.
* `to` **[Coord][1]** destination coordinate
* `options` **[Object][3]** Optional parameters (optional, default `{}`)
- * `options.units` **[string][4]** can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`)
+ * `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`)
### Examples
@@ -38,7 +38,7 @@ Returns **[number][5]** distance between the two coordinates
[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[4]: https://turfjs.org/docs/api/types/Units
[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
diff --git a/packages/turf-distance/index.ts b/packages/turf-distance/index.ts
index 3c19e6a2f..1d6b34ee3 100644
--- a/packages/turf-distance/index.ts
+++ b/packages/turf-distance/index.ts
@@ -8,11 +8,11 @@ import { radiansToLength, degreesToRadians, Coord, Units } from "@turf/helpers";
* Calculates the distance between two {@link Coord|coordinates} in degrees, radians, miles, or kilometers.
* This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature.
*
- * @name distance
+ * @function
* @param {Coord} from origin coordinate
* @param {Coord} to destination coordinate
* @param {Object} [options={}] Optional parameters
- * @param {string} [options.units='kilometers'] can be degrees, radians, miles, or kilometers
+ * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.
* @returns {number} distance between the two coordinates
* @example
* var from = turf.point([-75.343, 39.984]);
diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json
index 9f19ac50a..14ececd37 100644
--- a/packages/turf-distance/package.json
+++ b/packages/turf-distance/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/distance",
- "version": "7.0.0",
- "description": "turf distance module",
+ "version": "7.2.0",
+ "description": "Measures the straight-line distance between two points, like cities or landmarks.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -52,20 +52,20 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-ellipse/README.md b/packages/turf-ellipse/README.md
index cb49376e9..0d14f78d4 100644
--- a/packages/turf-ellipse/README.md
+++ b/packages/turf-ellipse/README.md
@@ -16,7 +16,7 @@ Takes a [Point][1] and calculates the ellipse polygon given two semi-axes expres
* `options.angle` **[number][3]** angle of rotation in decimal degrees, positive clockwise (optional, default `0`)
* `options.pivot` **[Coord][2]** point around which any rotation will be performed (optional, default `center`)
* `options.steps` **[number][3]** number of steps (optional, default `64`)
- * `options.units` **[string][5]** unit of measurement for axes (optional, default `'kilometers'`)
+ * `options.units` **Units** unit of measurement for axes. Supports all valid Turf [Units][5] (optional, default `'kilometers'`)
* `options.properties` **[Object][4]** properties (optional, default `{}`)
### Examples
@@ -41,7 +41,7 @@ Returns **[Feature][6]<[Polygon][7]>** ellipse polygon
[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[5]: https://turfjs.org/docs/api/types/Units
[6]: https://tools.ietf.org/html/rfc7946#section-3.2
diff --git a/packages/turf-ellipse/index.ts b/packages/turf-ellipse/index.ts
index 06182b972..22d678d80 100644
--- a/packages/turf-ellipse/index.ts
+++ b/packages/turf-ellipse/index.ts
@@ -1,15 +1,16 @@
import {
- degreesToRadians,
polygon,
isObject,
isNumber,
Coord,
Units,
+ point,
+ radiansToDegrees,
} from "@turf/helpers";
-import { rhumbDestination } from "@turf/rhumb-destination";
+import { destination } from "@turf/destination";
import { transformRotate } from "@turf/transform-rotate";
import { getCoord } from "@turf/invariant";
-import { GeoJsonProperties, Feature, Polygon } from "geojson";
+import { GeoJsonProperties, Feature, Polygon, Position } from "geojson";
/**
* Takes a {@link Point} and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.
@@ -21,7 +22,7 @@ import { GeoJsonProperties, Feature, Polygon } from "geojson";
* @param {number} [options.angle=0] angle of rotation in decimal degrees, positive clockwise
* @param {Coord} [options.pivot=center] point around which any rotation will be performed
* @param {number} [options.steps=64] number of steps
- * @param {string} [options.units='kilometers'] unit of measurement for axes
+ * @param {Units} [options.units='kilometers'] unit of measurement for axes. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}
* @param {Object} [options.properties={}] properties
* @returns {Feature} ellipse polygon
* @example
@@ -47,12 +48,11 @@ function ellipse(
): Feature {
// Optional params
options = options || {};
- const steps = options.steps || 64;
+ let steps = options.steps || 64;
const units = options.units || "kilometers";
- const angle = options.angle || 0;
+ let angle = options.angle || 0;
const pivot = options.pivot || center;
const properties = options.properties || {};
-
// validation
if (!center) throw new Error("center is required");
if (!xSemiAxis) throw new Error("xSemiAxis is required");
@@ -61,62 +61,99 @@ function ellipse(
if (!isNumber(steps)) throw new Error("steps must be a number");
if (!isNumber(angle)) throw new Error("angle must be a number");
- const centerCoords = getCoord(center);
- if (units !== "degrees") {
- const xDest = rhumbDestination(center, xSemiAxis, 90, { units });
- const yDest = rhumbDestination(center, ySemiAxis, 0, { units });
- xSemiAxis = getCoord(xDest)[0] - centerCoords[0];
- ySemiAxis = getCoord(yDest)[1] - centerCoords[1];
- }
+ const centerCoords = getCoord(
+ transformRotate(point(getCoord(center)), angle, { pivot })
+ );
- const coordinates: number[][] = [];
- for (let i = 0; i < steps; i += 1) {
- const stepAngle = (i * -360) / steps;
- let x =
- (xSemiAxis * ySemiAxis) /
- Math.sqrt(
- Math.pow(ySemiAxis, 2) +
- Math.pow(xSemiAxis, 2) * Math.pow(getTanDeg(stepAngle), 2)
- );
- let y =
- (xSemiAxis * ySemiAxis) /
- Math.sqrt(
- Math.pow(xSemiAxis, 2) +
- Math.pow(ySemiAxis, 2) / Math.pow(getTanDeg(stepAngle), 2)
- );
+ angle = -90 + angle;
- if (stepAngle < -90 && stepAngle >= -270) x = -x;
- if (stepAngle < -180 && stepAngle >= -360) y = -y;
- if (units === "degrees") {
- const angleRad = degreesToRadians(angle);
- const newx = x * Math.cos(angleRad) + y * Math.sin(angleRad);
- const newy = y * Math.cos(angleRad) - x * Math.sin(angleRad);
- x = newx;
- y = newy;
+ // Divide steps by 4 for one quadrant
+ steps = Math.ceil(steps / 4);
+
+ let quadrantParameters = [];
+ let parameters = [];
+
+ const a = xSemiAxis;
+ const b = ySemiAxis;
+
+ // Gradient x intersect
+ const c = b;
+
+ // Gradient of line
+ const m = (a - b) / (Math.PI / 2);
+
+ // Area under line
+ const A = ((a + b) * Math.PI) / 4;
+
+ // Weighting function
+ const v = 0.5;
+
+ const k = steps;
+
+ let w = 0;
+ let x = 0;
+
+ for (let i = 0; i < steps; i++) {
+ x += w;
+
+ if (m === 0) {
+ // It's a circle, so use simplified c*w - A/k == 0
+ w = A / k / c;
+ } else {
+ // Otherwise, use full (v*m)*w^2 + (m*x+c)*w - A/k == 0
+ // Solve as quadratic ax^2 + bx + c = 0
+ w =
+ (-(m * x + c) +
+ Math.sqrt(Math.pow(m * x + c, 2) - 4 * (v * m) * -(A / k))) /
+ (2 * (v * m));
+ }
+ if (x != 0) {
+ // easier to add it later to avoid having twice the same point
+ quadrantParameters.push(x);
}
-
- coordinates.push([x + centerCoords[0], y + centerCoords[1]]);
}
- coordinates.push(coordinates[0]);
- if (units === "degrees") {
- return polygon([coordinates], properties);
- } else {
- return transformRotate(polygon([coordinates], properties), angle, {
- pivot,
- });
- }
-}
-/**
- * Get Tan Degrees
- *
- * @private
- * @param {number} deg Degrees
- * @returns {number} Tan Degrees
- */
-function getTanDeg(deg: number) {
- const rad = (deg * Math.PI) / 180;
- return Math.tan(rad);
+ //NE
+ parameters.push(0);
+ for (let i = 0; i < quadrantParameters.length; i++) {
+ parameters.push(quadrantParameters[i]);
+ }
+ //NW
+ parameters.push(Math.PI / 2);
+ for (let i = 0; i < quadrantParameters.length; i++) {
+ parameters.push(
+ Math.PI - quadrantParameters[quadrantParameters.length - i - 1]
+ );
+ }
+ //SW
+ parameters.push(Math.PI);
+ for (let i = 0; i < quadrantParameters.length; i++) {
+ parameters.push(Math.PI + quadrantParameters[i]);
+ }
+ //SE
+ parameters.push((3 * Math.PI) / 2);
+ for (let i = 0; i < quadrantParameters.length; i++) {
+ parameters.push(
+ 2 * Math.PI - quadrantParameters[quadrantParameters.length - i - 1]
+ );
+ }
+ parameters.push(0);
+
+ // We can now construct the ellipse
+ const coords: Position[] = [];
+ for (const param of parameters) {
+ const theta = Math.atan2(b * Math.sin(param), a * Math.cos(param));
+ const r = Math.sqrt(
+ (Math.pow(a, 2) * Math.pow(b, 2)) /
+ (Math.pow(a * Math.sin(theta), 2) + Math.pow(b * Math.cos(theta), 2))
+ );
+ coords.push(
+ destination(centerCoords, r, angle + radiansToDegrees(theta), {
+ units: units,
+ }).geometry.coordinates
+ );
+ }
+ return polygon([coords], properties);
}
export { ellipse };
diff --git a/packages/turf-ellipse/package.json b/packages/turf-ellipse/package.json
index ea2b1e369..cdacca6e8 100644
--- a/packages/turf-ellipse/package.json
+++ b/packages/turf-ellipse/package.json
@@ -1,10 +1,11 @@
{
"name": "@turf/ellipse",
- "version": "7.0.0",
- "description": "turf ellipse module",
+ "version": "7.2.0",
+ "description": "Takes a Point and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.",
"author": "Turf Authors",
"contributors": [
- "Moacir P. de SΓ‘ Pereira <@muziejus>"
+ "Moacir P. de SΓ‘ Pereira <@muziejus>",
+ "Pavel Rozvora <@prozvora>"
],
"license": "MIT",
"bugs": {
@@ -53,28 +54,30 @@
},
"devDependencies": {
"@placemarkio/check-geojson": "^0.1.12",
- "@turf/bbox-polygon": "workspace:^",
- "@turf/circle": "workspace:^",
- "@turf/destination": "workspace:^",
- "@turf/truncate": "workspace:^",
+ "@turf/area": "workspace:*",
+ "@turf/bbox-polygon": "workspace:*",
+ "@turf/circle": "workspace:*",
+ "@turf/intersect": "workspace:*",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^10.3.10",
+ "glob": "^11.0.2",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/rhumb-destination": "workspace:^",
- "@turf/transform-rotate": "workspace:^",
+ "@turf/destination": "workspace:*",
+ "@turf/distance": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/transform-rotate": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-ellipse/test.ts b/packages/turf-ellipse/test.ts
index 62d206533..12cdee9c2 100644
--- a/packages/turf-ellipse/test.ts
+++ b/packages/turf-ellipse/test.ts
@@ -1,5 +1,4 @@
import test from "tape";
-import { glob } from "glob";
import path from "path";
import { fileURLToPath } from "url";
import { loadJsonFileSync } from "load-json-file";
@@ -7,124 +6,101 @@ import { writeJsonFileSync } from "write-json-file";
import { circle } from "@turf/circle";
import { truncate } from "@turf/truncate";
import { check } from "@placemarkio/check-geojson";
-import { bboxPolygon } from "@turf/bbox-polygon";
-import { rhumbDestination } from "@turf/rhumb-destination";
-// import { destination } from '@turf/destination';
import { featureCollection } from "@turf/helpers";
+import { intersect } from "@turf/intersect";
+import { area } from "@turf/area";
import { ellipse } from "./index.js";
+import fs from "fs";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
+const directories = {
+ in: path.join(__dirname, "test", "in") + path.sep,
+ out: path.join(__dirname, "test", "out") + path.sep,
+};
+
+const fixtures = fs.readdirSync(directories.in).map((filename) => {
+ return {
+ filename,
+ name: path.parse(filename).name,
+ geojson: loadJsonFileSync(directories.in + filename),
+ };
+});
+
test("turf-ellipse", (t) => {
- glob
- .sync(path.join(__dirname, "test", "in", "*.json"))
- .forEach((filepath) => {
- // Define params
- const { name } = path.parse(filepath);
- const geojson = loadJsonFileSync(filepath);
- const center = geojson.geometry.coordinates;
- let { xSemiAxis, ySemiAxis, steps, angle, units } = geojson.properties;
- angle = angle || 0;
- const options = { steps, angle, units };
- const maxAxis = Math.max(xSemiAxis, ySemiAxis);
+ fixtures.forEach((fixture) => {
+ console.log(fixture.filename);
+ const filename = fixture.filename;
+ const name = fixture.name;
+ const geojson = fixture.geojson;
+ const center = geojson.geometry.coordinates;
+ let { xSemiAxis, ySemiAxis, steps, angle, units, accuracy } =
+ geojson.properties;
+ angle = angle || 0;
+ const options = {
+ steps: steps,
+ angle: angle,
+ units: units,
+ accuracy: accuracy,
+ };
+ const maxAxis = Math.max(xSemiAxis, ySemiAxis);
- // Styled results
- const maxDestination0 = rhumbDestination(center, maxAxis, angle, {
- units,
- });
- const maxDestination90 = rhumbDestination(center, maxAxis, angle + 90, {
- units,
- });
- const maxDestination180 = rhumbDestination(center, maxAxis, angle + 180, {
- units,
- });
- const maxDestination270 = rhumbDestination(center, maxAxis, angle + 270, {
- units,
- });
+ const results = featureCollection([
+ geojson,
+ truncate(colorize(circle(center, maxAxis, options), "#F00")),
+ truncate(
+ colorize(ellipse(center, xSemiAxis, ySemiAxis, options), "#00F")
+ ),
+ truncate(
+ colorize(
+ ellipse(center, xSemiAxis, ySemiAxis, {
+ steps,
+ angle: angle + 90,
+ units,
+ accuracy: accuracy,
+ }),
+ "#0F0"
+ )
+ ),
+ ]);
- const xDestination0 = rhumbDestination(center, xSemiAxis, angle, {
- units,
- });
- const xDestination90 = rhumbDestination(center, xSemiAxis, angle + 90, {
- units,
- });
- const xDestination180 = rhumbDestination(center, xSemiAxis, angle + 180, {
- units,
- });
- const xDestination270 = rhumbDestination(center, xSemiAxis, angle + 270, {
- units,
- });
+ // Save to file
+ const out = path.join(directories.out, filename);
+ if (process.env.REGEN) writeJsonFileSync(out, results);
+ t.deepEqual(results, loadJsonFileSync(out), name);
+ });
+ t.end();
+});
- const yDestination0 = rhumbDestination(center, ySemiAxis, angle, {
- units,
- });
- const yDestination90 = rhumbDestination(center, ySemiAxis, angle + 90, {
- units,
- });
- const yDestination180 = rhumbDestination(center, ySemiAxis, angle + 180, {
- units,
- });
- const yDestination270 = rhumbDestination(center, ySemiAxis, angle + 270, {
- units,
- });
+test("turf-ellipse -- circle consistency", (t) => {
+ const ellipseGeom = truncate(ellipse([0, 60], 2000, 2000, { steps: 300 }));
+ const circleGeom = truncate(circle([0, 60], 2000, { steps: 300 }));
+ const intersectionGeom = intersect(
+ featureCollection([ellipseGeom, circleGeom])
+ );
+ const areaIntersection =
+ intersectionGeom != null ? area(intersectionGeom.geometry) : 0;
+ const areaCircle = circleGeom != null ? area(circleGeom.geometry) : 0;
+ t.true(
+ Math.abs(areaIntersection - areaCircle) / areaCircle < 0.00001,
+ "both areas are equal"
+ );
+ t.end();
+});
- const bboxX = colorize(
- bboxPolygon([
- xDestination270.geometry.coordinates[0],
- yDestination180.geometry.coordinates[1],
- xDestination90.geometry.coordinates[0],
- yDestination0.geometry.coordinates[1],
- ]),
- "#FFF"
- );
- const bboxY = colorize(
- bboxPolygon([
- yDestination270.geometry.coordinates[0],
- xDestination180.geometry.coordinates[1],
- yDestination90.geometry.coordinates[0],
- xDestination0.geometry.coordinates[1],
- ]),
- "#666"
- );
- const bboxMax = colorize(
- bboxPolygon([
- maxDestination270.geometry.coordinates[0],
- maxDestination180.geometry.coordinates[1],
- maxDestination90.geometry.coordinates[0],
- maxDestination0.geometry.coordinates[1],
- ]),
- "#000"
- );
-
- const results = featureCollection([
- bboxX,
- bboxY,
- bboxMax,
- geojson,
- truncate(colorize(circle(center, maxAxis, options), "#F00")),
- truncate(
- colorize(ellipse(center, xSemiAxis, ySemiAxis, options), "#00F")
- ),
- truncate(
- colorize(
- ellipse(center, xSemiAxis, ySemiAxis, {
- steps,
- angle: angle + 90,
- units,
- }),
- "#0F0"
- )
- ),
- ]);
-
- // Save to file
- const out = filepath.replace(
- path.join("test", "in"),
- path.join("test", "out")
- );
- if (process.env.REGEN) writeJsonFileSync(out, results);
- t.deepEqual(results, loadJsonFileSync(out), name);
- });
+test("turf-ellipse -- rotation consistency", (t) => {
+ const ellipseGeom = ellipse([0, 60], 2000, 2000, { angle: 0 });
+ const ellipseTurnedGeom = ellipse([0, 60], 2000, 2000, { angle: 90 });
+ const intersectionGeom = intersect(
+ featureCollection([ellipseGeom, ellipseTurnedGeom])
+ );
+ const areaIntersection =
+ intersectionGeom != null ? area(intersectionGeom.geometry) : 0;
+ const areaEllipse = ellipseGeom != null ? area(ellipseGeom.geometry) : 0;
+ t.true(
+ Math.abs(areaIntersection - areaEllipse) / areaEllipse < 0.00001,
+ "both areas are equal"
+ );
t.end();
});
diff --git a/packages/turf-ellipse/test/in/rotation-degrees.json b/packages/turf-ellipse/test/in/rotation-degrees.json
index 496e8da0a..2effdb4b9 100644
--- a/packages/turf-ellipse/test/in/rotation-degrees.json
+++ b/packages/turf-ellipse/test/in/rotation-degrees.json
@@ -4,7 +4,7 @@
"units": "degrees",
"xSemiAxis": 0.125,
"ySemiAxis": 0.025,
- "angle": 45
+ "angle": 30
},
"geometry": {
"type": "Point",
diff --git a/packages/turf-ellipse/test/in/rotation.json b/packages/turf-ellipse/test/in/rotation.json
index bcb5f8806..bd2778680 100644
--- a/packages/turf-ellipse/test/in/rotation.json
+++ b/packages/turf-ellipse/test/in/rotation.json
@@ -3,7 +3,7 @@
"properties": {
"xSemiAxis": 5,
"ySemiAxis": 1,
- "angle": 45
+ "angle": 30
},
"geometry": {
"type": "Point",
diff --git a/packages/turf-ellipse/test/in/simple-with-elevation.json b/packages/turf-ellipse/test/in/simple-with-elevation.json
new file mode 100644
index 000000000..9092acee0
--- /dev/null
+++ b/packages/turf-ellipse/test/in/simple-with-elevation.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "properties": {
+ "xSemiAxis": 5,
+ "ySemiAxis": 1
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9975, 40.730833, 120]
+ }
+}
diff --git a/packages/turf-ellipse/test/out/anti-meridian-degrees.json b/packages/turf-ellipse/test/out/anti-meridian-degrees.json
index 9dc93cef4..4a2824aa2 100644
--- a/packages/turf-ellipse/test/out/anti-meridian-degrees.json
+++ b/packages/turf-ellipse/test/out/anti-meridian-degrees.json
@@ -1,72 +1,6 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [-232.28458782435735, -27, -127.71541217564265, -7.000000000000003],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-232.28458782435735, -27],
- [-127.71541217564265, -27],
- [-127.71541217564265, -7.000000000000003],
- [-232.28458782435735, -7.000000000000003],
- [-232.28458782435735, -27]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [-190.4569175648715, -66.99999999999999, -169.5430824351285, 33],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-190.4569175648715, -66.99999999999999],
- [-169.5430824351285, -66.99999999999999],
- [-169.5430824351285, 33],
- [-190.4569175648715, 33],
- [-190.4569175648715, -66.99999999999999]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [-232.28458782435735, -66.99999999999999, -127.71541217564265, 33],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-232.28458782435735, -66.99999999999999],
- [-127.71541217564265, -66.99999999999999],
- [-127.71541217564265, 33],
- [-232.28458782435735, 33],
- [-232.28458782435735, -66.99999999999999]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
@@ -172,71 +106,71 @@
"type": "Polygon",
"coordinates": [
[
- [-130, -17],
- [-135.144121, -12.582082],
- [-144.548397, -9.948238],
- [-152.477908, -8.651265],
- [-158.259476, -7.99478],
- [-162.477758, -7.634166],
- [-165.662441, -7.419949],
- [-168.161441, -7.284346],
- [-170.194193, -7.194193],
- [-171.901575, -7.132041],
- [-173.37709, -7.088114],
- [-174.685172, -7.056655],
- [-175.872005, -7.034139],
- [-176.972101, -7.018353],
- [-178.012448, -7.007904],
- [-179.015277, -7.00194],
+ [-231.255224, -10.832176],
+ [-229.537115, -9.171208],
+ [-226.785333, -8.318289],
+ [-223.616357, -7.809288],
+ [-220.237616, -7.490076],
+ [-216.750783, -7.287067],
+ [-213.215132, -7.158857],
+ [-209.668909, -7.079876],
+ [-206.138464, -7.033411],
+ [-202.642783, -7.008151],
+ [-199.195982, -6.996301],
+ [-195.808785, -6.992459],
+ [-192.489461, -6.992913],
+ [-189.24444, -6.99517],
+ [-186.078735, -6.997636],
+ [-182.996251, -6.999388],
[-180, -7],
- [-180.984723, -7.00194],
- [-181.987552, -7.007904],
- [-183.027899, -7.018353],
- [-184.127995, -7.034139],
- [-185.314828, -7.056655],
- [-186.62291, -7.088114],
- [-188.098425, -7.132041],
- [-189.805807, -7.194193],
- [-191.838559, -7.284346],
- [-194.337559, -7.419949],
- [-197.522242, -7.634166],
- [-201.740524, -7.99478],
- [-207.522092, -8.651265],
- [-215.451603, -9.948238],
- [-224.855879, -12.582082],
- [-230, -17],
- [-224.855879, -21.417918],
- [-215.451603, -24.051762],
- [-207.522092, -25.348735],
- [-201.740524, -26.00522],
- [-197.522242, -26.365834],
- [-194.337559, -26.580051],
- [-191.838559, -26.715654],
- [-189.805807, -26.805807],
- [-188.098425, -26.867959],
- [-186.62291, -26.911886],
- [-185.314828, -26.943345],
- [-184.127995, -26.965861],
- [-183.027899, -26.981647],
- [-181.987552, -26.992096],
- [-180.984723, -26.99806],
+ [-177.003749, -6.999388],
+ [-173.921265, -6.997636],
+ [-170.75556, -6.99517],
+ [-167.510539, -6.992913],
+ [-164.191215, -6.992459],
+ [-160.804018, -6.996301],
+ [-157.357217, -7.008151],
+ [-153.861536, -7.033411],
+ [-150.331091, -7.079876],
+ [-146.784868, -7.158857],
+ [-143.249217, -7.287067],
+ [-139.762384, -7.490076],
+ [-136.383643, -7.809288],
+ [-133.214667, -8.318289],
+ [-130.462885, -9.171208],
+ [-128.744776, -10.832176],
+ [-129.549848, -13.068509],
+ [-131.704315, -15.006667],
+ [-134.457899, -16.764622],
+ [-137.558403, -18.370546],
+ [-140.881596, -19.832788],
+ [-144.353404, -21.153602],
+ [-147.923695, -22.333485],
+ [-151.555203, -23.372894],
+ [-155.218208, -24.273002],
+ [-158.887798, -25.036029],
+ [-162.542409, -25.665364],
+ [-166.163061, -26.16555],
+ [-169.732965, -26.542201],
+ [-173.237347, -26.80186],
+ [-176.663352, -26.951832],
[-180, -27],
- [-179.015277, -26.99806],
- [-178.012448, -26.992096],
- [-176.972101, -26.981647],
- [-175.872005, -26.965861],
- [-174.685172, -26.943345],
- [-173.37709, -26.911886],
- [-171.901575, -26.867959],
- [-170.194193, -26.805807],
- [-168.161441, -26.715654],
- [-165.662441, -26.580051],
- [-162.477758, -26.365834],
- [-158.259476, -26.00522],
- [-152.477908, -25.348735],
- [-144.548397, -24.051762],
- [-135.144121, -21.417918],
- [-130, -17]
+ [-183.336648, -26.951832],
+ [-186.762653, -26.80186],
+ [-190.267035, -26.542201],
+ [-193.836939, -26.16555],
+ [-197.457591, -25.665364],
+ [-201.112202, -25.036029],
+ [-204.781792, -24.273002],
+ [-208.444797, -23.372894],
+ [-212.076305, -22.333485],
+ [-215.646596, -21.153602],
+ [-219.118404, -19.832788],
+ [-222.441597, -18.370546],
+ [-225.542101, -16.764622],
+ [-228.295685, -15.006667],
+ [-230.450152, -13.068509],
+ [-231.255224, -10.832176]
]
]
}
@@ -253,71 +187,71 @@
"type": "Polygon",
"coordinates": [
[
- [-180, -67],
- [-175.582082, -61.855879],
- [-172.948238, -52.451603],
- [-171.651265, -44.522092],
- [-170.99478, -38.740524],
- [-170.634166, -34.522242],
- [-170.419949, -31.337559],
- [-170.284346, -28.838559],
- [-170.194193, -26.805807],
- [-170.132041, -25.098425],
- [-170.088114, -23.62291],
- [-170.056655, -22.314828],
- [-170.034139, -21.127995],
- [-170.018353, -20.027899],
- [-170.007904, -18.987552],
- [-170.00194, -17.984723],
- [-170, -17],
- [-170.00194, -16.015277],
- [-170.007904, -15.012448],
- [-170.018353, -13.972101],
- [-170.034139, -12.872005],
- [-170.056655, -11.685172],
- [-170.088114, -10.37709],
- [-170.132041, -8.901575],
- [-170.194193, -7.194193],
- [-170.284346, -5.161441],
- [-170.419949, -2.662441],
- [-170.634166, 0.522242],
- [-170.99478, 4.740524],
- [-171.651265, 10.522092],
- [-172.948238, 18.451603],
- [-175.582082, 27.855879],
[-180, 33],
- [-184.417918, 27.855879],
- [-187.051762, 18.451603],
- [-188.348735, 10.522092],
- [-189.00522, 4.740524],
- [-189.365834, 0.522242],
- [-189.580051, -2.662441],
- [-189.715654, -5.161441],
- [-189.805807, -7.194193],
- [-189.867959, -8.901575],
- [-189.911886, -10.37709],
- [-189.943345, -11.685172],
- [-189.965861, -12.872005],
- [-189.981647, -13.972101],
- [-189.992096, -15.012448],
- [-189.99806, -16.015277],
- [-190, -17],
- [-189.99806, -17.984723],
- [-189.992096, -18.987552],
- [-189.981647, -20.027899],
- [-189.965861, -21.127995],
- [-189.943345, -22.314828],
- [-189.911886, -23.62291],
- [-189.867959, -25.098425],
- [-189.805807, -26.805807],
- [-189.715654, -28.838559],
- [-189.580051, -31.337559],
- [-189.365834, -34.522242],
- [-189.00522, -38.740524],
- [-188.348735, -44.522092],
- [-187.051762, -52.451603],
- [-184.417918, -61.855879],
- [-180, -67]
+ [-177.649663, 31.703957],
+ [-176.075902, 29.197049],
+ [-174.899856, 26.193732],
+ [-173.977415, 22.936144],
+ [-173.23134, 19.54281],
+ [-172.614036, 16.082418],
+ [-172.093927, 12.598902],
+ [-171.649083, 9.122233],
+ [-171.263795, 5.673775],
+ [-170.926553, 2.269246],
+ [-170.628782, -1.079531],
+ [-170.364019, -4.363529],
+ [-170.127356, -7.575789],
+ [-169.915059, -10.710919],
+ [-169.724292, -13.764747],
+ [-169.55293, -16.734064],
+ [-169.394938, -19.704191],
+ [-169.246345, -22.760568],
+ [-169.109071, -25.900205],
+ [-168.985952, -29.119223],
+ [-168.881153, -32.41262],
+ [-168.800816, -35.773947],
+ [-168.754065, -39.194852],
+ [-168.754629, -42.664405],
+ [-168.823498, -46.168062],
+ [-168.993438, -49.685982],
+ [-169.316859, -53.190124],
+ [-169.880034, -56.638822],
+ [-170.829705, -59.965537],
+ [-172.425015, -63.051999],
+ [-175.146105, -65.648285],
+ [-180, -67],
+ [-184.853895, -65.648285],
+ [-187.574985, -63.051999],
+ [-189.170295, -59.965537],
+ [-190.119966, -56.638822],
+ [-190.683141, -53.190124],
+ [-191.006562, -49.685982],
+ [-191.176502, -46.168062],
+ [-191.245371, -42.664405],
+ [-191.245935, -39.194852],
+ [-191.199184, -35.773947],
+ [-191.118847, -32.41262],
+ [-191.014048, -29.119223],
+ [-190.890929, -25.900205],
+ [-190.753655, -22.760568],
+ [-190.605062, -19.704191],
+ [-190.44707, -16.734064],
+ [-190.275708, -13.764747],
+ [-190.084941, -10.710919],
+ [-189.872644, -7.575789],
+ [-189.635981, -4.363529],
+ [-189.371218, -1.079531],
+ [-189.073447, 2.269246],
+ [-188.736205, 5.673775],
+ [-188.350917, 9.122233],
+ [-187.906073, 12.598902],
+ [-187.385964, 16.082418],
+ [-186.76866, 19.54281],
+ [-186.022585, 22.936144],
+ [-185.100144, 26.193732],
+ [-183.924098, 29.197049],
+ [-182.350337, 31.703957],
+ [-180, 33]
]
]
}
diff --git a/packages/turf-ellipse/test/out/anti-meridian.json b/packages/turf-ellipse/test/out/anti-meridian.json
index affda5a80..68b1e8c35 100644
--- a/packages/turf-ellipse/test/out/anti-meridian.json
+++ b/packages/turf-ellipse/test/out/anti-meridian.json
@@ -1,78 +1,6 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [
- -180.4702059453939, -17.089932036372456, -179.5297940546061, -16.910067963627547
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-180.4702059453939, -17.089932036372456],
- [-179.5297940546061, -17.089932036372456],
- [-179.5297940546061, -16.910067963627547],
- [-180.4702059453939, -16.910067963627547],
- [-180.4702059453939, -17.089932036372456]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -180.09404118907878, -17.44966018186227, -179.90595881092122, -16.55033981813773
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-180.09404118907878, -17.44966018186227],
- [-179.90595881092122, -17.44966018186227],
- [-179.90595881092122, -16.55033981813773],
- [-180.09404118907878, -16.55033981813773],
- [-180.09404118907878, -17.44966018186227]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -180.4702059453939, -17.44966018186227, -179.5297940546061, -16.55033981813773
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-180.4702059453939, -17.44966018186227],
- [-179.5297940546061, -17.44966018186227],
- [-179.5297940546061, -16.55033981813773],
- [-180.4702059453939, -16.55033981813773],
- [-180.4702059453939, -17.44966018186227]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
@@ -177,71 +105,71 @@
"type": "Polygon",
"coordinates": [
[
- [-179.529794, -17],
- [-179.581966, -16.958827],
- [-179.674097, -16.935174],
- [-179.749219, -16.923927],
- [-179.802884, -16.918352],
- [-179.841585, -16.915326],
- [-179.870604, -16.91354],
- [-179.893277, -16.912415],
- [-179.911669, -16.911669],
- [-179.927087, -16.911156],
- [-179.940394, -16.910793],
- [-179.95218, -16.910534],
- [-179.962865, -16.910349],
- [-179.972765, -16.910219],
- [-179.982124, -16.910133],
- [-179.991144, -16.910084],
+ [-180.470205, -16.999461],
+ [-180.457964, -16.979142],
+ [-180.434333, -16.965124],
+ [-180.406011, -16.954269],
+ [-180.375269, -16.945497],
+ [-180.343224, -16.938267],
+ [-180.310525, -16.932253],
+ [-180.277591, -16.927239],
+ [-180.244707, -16.923072],
+ [-180.21208, -16.919634],
+ [-180.17986, -16.916835],
+ [-180.148164, -16.9146],
+ [-180.117078, -16.91287],
+ [-180.086671, -16.911592],
+ [-180.056997, -16.910724],
+ [-180.028096, -16.910227],
[-180, -16.910068],
- [-180.008856, -16.910084],
- [-180.017876, -16.910133],
- [-180.027235, -16.910219],
- [-180.037135, -16.910349],
- [-180.04782, -16.910534],
- [-180.059606, -16.910793],
- [-180.072913, -16.911156],
- [-180.088331, -16.911669],
- [-180.106723, -16.912415],
- [-180.129396, -16.91354],
- [-180.158415, -16.915326],
- [-180.197116, -16.918352],
- [-180.250781, -16.923927],
- [-180.325903, -16.935174],
- [-180.418034, -16.958827],
- [-180.470206, -17],
- [-180.418034, -17.041173],
- [-180.325903, -17.064826],
- [-180.250781, -17.076073],
- [-180.197116, -17.081648],
- [-180.158415, -17.084674],
- [-180.129396, -17.08646],
- [-180.106723, -17.087585],
- [-180.088331, -17.088331],
- [-180.072913, -17.088844],
- [-180.059606, -17.089207],
- [-180.04782, -17.089466],
- [-180.037135, -17.089651],
- [-180.027235, -17.089781],
- [-180.017876, -17.089867],
- [-180.008856, -17.089916],
+ [-179.971904, -16.910227],
+ [-179.943003, -16.910724],
+ [-179.913329, -16.911592],
+ [-179.882922, -16.91287],
+ [-179.851836, -16.9146],
+ [-179.82014, -16.916835],
+ [-179.78792, -16.919634],
+ [-179.755293, -16.923072],
+ [-179.722409, -16.927239],
+ [-179.689475, -16.932253],
+ [-179.656776, -16.938267],
+ [-179.624731, -16.945497],
+ [-179.593989, -16.954269],
+ [-179.565667, -16.965124],
+ [-179.542036, -16.979142],
+ [-179.529795, -16.999461],
+ [-179.541936, -17.019834],
+ [-179.565507, -17.033955],
+ [-179.593793, -17.044926],
+ [-179.624514, -17.053815],
+ [-179.656551, -17.061158],
+ [-179.689251, -17.067276],
+ [-179.722194, -17.072384],
+ [-179.755092, -17.076635],
+ [-179.787739, -17.080146],
+ [-179.81998, -17.083007],
+ [-179.851701, -17.085293],
+ [-179.882813, -17.087063],
+ [-179.913247, -17.088371],
+ [-179.942949, -17.08926],
+ [-179.971877, -17.089769],
[-180, -17.089932],
- [-179.991144, -17.089916],
- [-179.982124, -17.089867],
- [-179.972765, -17.089781],
- [-179.962865, -17.089651],
- [-179.95218, -17.089466],
- [-179.940394, -17.089207],
- [-179.927087, -17.088844],
- [-179.911669, -17.088331],
- [-179.893277, -17.087585],
- [-179.870604, -17.08646],
- [-179.841585, -17.084674],
- [-179.802884, -17.081648],
- [-179.749219, -17.076073],
- [-179.674097, -17.064826],
- [-179.581966, -17.041173],
- [-179.529794, -17]
+ [-180.028123, -17.089769],
+ [-180.057051, -17.08926],
+ [-180.086753, -17.088371],
+ [-180.117187, -17.087063],
+ [-180.148299, -17.085293],
+ [-180.18002, -17.083007],
+ [-180.212261, -17.080146],
+ [-180.244908, -17.076635],
+ [-180.277806, -17.072384],
+ [-180.310749, -17.067276],
+ [-180.343449, -17.061158],
+ [-180.375486, -17.053815],
+ [-180.406207, -17.044926],
+ [-180.434493, -17.033955],
+ [-180.458064, -17.019834],
+ [-180.470205, -16.999461]
]
]
}
@@ -258,71 +186,71 @@
"type": "Polygon",
"coordinates": [
[
- [-180, -17.44966],
- [-179.9569, -17.399812],
- [-179.932155, -17.311716],
- [-179.920399, -17.239871],
- [-179.914578, -17.188544],
- [-179.911421, -17.151527],
- [-179.90956, -17.123771],
- [-179.908388, -17.102083],
- [-179.907612, -17.084491],
- [-179.907079, -17.069743],
- [-179.906703, -17.057015],
- [-179.906435, -17.045742],
- [-179.906244, -17.035521],
- [-179.90611, -17.026051],
- [-179.906023, -17.017099],
- [-179.905973, -17.008471],
- [-179.905959, -17],
- [-179.905978, -16.991529],
- [-179.906031, -16.982901],
- [-179.906123, -16.973949],
- [-179.906261, -16.964479],
- [-179.906458, -16.954258],
- [-179.906732, -16.942985],
- [-179.907114, -16.930257],
- [-179.907654, -16.915509],
- [-179.908438, -16.897917],
- [-179.90962, -16.876229],
- [-179.911492, -16.848473],
- [-179.914664, -16.811456],
- [-179.920501, -16.760129],
- [-179.932268, -16.688284],
- [-179.956992, -16.600188],
[-180, -16.55034],
- [-180.043009, -16.600276],
- [-180.067732, -16.688391],
- [-180.079499, -16.760226],
- [-180.085336, -16.811538],
- [-180.088508, -16.848541],
- [-180.09038, -16.876286],
- [-180.091562, -16.897965],
- [-180.092346, -16.915549],
- [-180.092886, -16.93029],
- [-180.093268, -16.943012],
- [-180.093542, -16.95428],
- [-180.093739, -16.964496],
- [-180.093877, -16.973961],
- [-180.093969, -16.98291],
- [-180.094022, -16.991533],
- [-180.094041, -17],
- [-180.094027, -17.008467],
- [-180.093977, -17.01709],
- [-180.09389, -17.026039],
- [-180.093756, -17.035504],
- [-180.093565, -17.04572],
- [-180.093297, -17.056988],
- [-180.092921, -17.06971],
- [-180.092388, -17.084451],
- [-180.091612, -17.102035],
- [-180.09044, -17.123714],
- [-180.088579, -17.151459],
- [-180.085422, -17.188462],
- [-180.079601, -17.239774],
- [-180.067845, -17.311609],
- [-180.0431, -17.399724],
- [-180, -17.44966]
+ [-179.978774, -16.561997],
+ [-179.964091, -16.584565],
+ [-179.952697, -16.61163],
+ [-179.943474, -16.641017],
+ [-179.935858, -16.671656],
+ [-179.929514, -16.702924],
+ [-179.924218, -16.734422],
+ [-179.91981, -16.765874],
+ [-179.916167, -16.797083],
+ [-179.913197, -16.827904],
+ [-179.910821, -16.858226],
+ [-179.908978, -16.887966],
+ [-179.907613, -16.917056],
+ [-179.90668, -16.945447],
+ [-179.90614, -16.973098],
+ [-179.905959, -16.999978],
+ [-179.906114, -17.026859],
+ [-179.906626, -17.054511],
+ [-179.907531, -17.082902],
+ [-179.908869, -17.111994],
+ [-179.910686, -17.141735],
+ [-179.913037, -17.172059],
+ [-179.915986, -17.202882],
+ [-179.919609, -17.234095],
+ [-179.924003, -17.26555],
+ [-179.92929, -17.297052],
+ [-179.935633, -17.328324],
+ [-179.943257, -17.358968],
+ [-179.952501, -17.388359],
+ [-179.963931, -17.415429],
+ [-179.978674, -17.438],
+ [-180, -17.44966],
+ [-180.021326, -17.438],
+ [-180.036069, -17.415429],
+ [-180.047499, -17.388359],
+ [-180.056743, -17.358968],
+ [-180.064367, -17.328324],
+ [-180.07071, -17.297052],
+ [-180.075997, -17.26555],
+ [-180.080391, -17.234095],
+ [-180.084014, -17.202882],
+ [-180.086963, -17.172059],
+ [-180.089314, -17.141735],
+ [-180.091131, -17.111994],
+ [-180.092469, -17.082902],
+ [-180.093374, -17.054511],
+ [-180.093886, -17.026859],
+ [-180.094041, -16.999978],
+ [-180.09386, -16.973098],
+ [-180.09332, -16.945447],
+ [-180.092387, -16.917056],
+ [-180.091022, -16.887966],
+ [-180.089179, -16.858226],
+ [-180.086803, -16.827904],
+ [-180.083833, -16.797083],
+ [-180.08019, -16.765874],
+ [-180.075782, -16.734422],
+ [-180.070486, -16.702924],
+ [-180.064142, -16.671656],
+ [-180.056526, -16.641017],
+ [-180.047303, -16.61163],
+ [-180.035909, -16.584565],
+ [-180.021226, -16.561997],
+ [-180, -16.55034]
]
]
}
diff --git a/packages/turf-ellipse/test/out/northern-latitudes-degrees.json b/packages/turf-ellipse/test/out/northern-latitudes-degrees.json
index d68fce32b..6f56b7636 100644
--- a/packages/turf-ellipse/test/out/northern-latitudes-degrees.json
+++ b/packages/turf-ellipse/test/out/northern-latitudes-degrees.json
@@ -1,72 +1,6 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [-112.1397763927165, 73, -75.8602236072835, 75.00000000000001],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-112.1397763927165, 73],
- [-75.8602236072835, 73],
- [-75.8602236072835, 75.00000000000001],
- [-112.1397763927165, 75.00000000000001],
- [-112.1397763927165, 73]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [-97.62795527854331, 69.00000000000001, -90.37204472145669, 79],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-97.62795527854331, 69.00000000000001],
- [-90.37204472145669, 69.00000000000001],
- [-90.37204472145669, 79],
- [-97.62795527854331, 79],
- [-97.62795527854331, 69.00000000000001]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [-112.1397763927165, 69.00000000000001, -75.8602236072835, 79],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-112.1397763927165, 69.00000000000001],
- [-75.8602236072835, 69.00000000000001],
- [-75.8602236072835, 79],
- [-112.1397763927165, 79],
- [-112.1397763927165, 69.00000000000001]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
@@ -172,71 +106,71 @@
"type": "Polygon",
"coordinates": [
[
- [-89, 74],
- [-89.514412, 74.441792],
- [-90.45484, 74.705176],
- [-91.247791, 74.834874],
- [-91.825948, 74.900522],
- [-92.247776, 74.936583],
- [-92.566244, 74.958005],
- [-92.816144, 74.971565],
- [-93.019419, 74.980581],
- [-93.190158, 74.986796],
- [-93.337709, 74.991189],
- [-93.468517, 74.994334],
- [-93.587201, 74.996586],
- [-93.69721, 74.998165],
- [-93.801245, 74.99921],
- [-93.901528, 74.999806],
+ [-111.609696, 73.256451],
+ [-111.404311, 73.510243],
+ [-110.70689, 73.730954],
+ [-109.783251, 73.928702],
+ [-108.725348, 74.106339],
+ [-107.580194, 74.2652],
+ [-106.376848, 74.406176],
+ [-105.135467, 74.53002],
+ [-103.871136, 74.637455],
+ [-102.595732, 74.729222],
+ [-101.318919, 74.806086],
+ [-100.04873, 74.86884],
+ [-98.79192, 74.918302],
+ [-97.554199, 74.955305],
+ [-96.340385, 74.980693],
+ [-95.154529, 74.995312],
[-94, 75],
- [-94.098472, 74.999806],
- [-94.198755, 74.99921],
- [-94.30279, 74.998165],
- [-94.412799, 74.996586],
- [-94.531483, 74.994334],
- [-94.662291, 74.991189],
- [-94.809842, 74.986796],
- [-94.980581, 74.980581],
- [-95.183856, 74.971565],
- [-95.433756, 74.958005],
- [-95.752224, 74.936583],
- [-96.174052, 74.900522],
- [-96.752209, 74.834874],
- [-97.54516, 74.705176],
- [-98.485588, 74.441792],
- [-99, 74],
- [-98.485588, 73.558208],
- [-97.54516, 73.294824],
- [-96.752209, 73.165126],
- [-96.174052, 73.099478],
- [-95.752224, 73.063417],
- [-95.433756, 73.041995],
- [-95.183856, 73.028435],
- [-94.980581, 73.019419],
- [-94.809842, 73.013204],
- [-94.662291, 73.008811],
- [-94.531483, 73.005666],
- [-94.412799, 73.003414],
- [-94.30279, 73.001835],
- [-94.198755, 73.00079],
- [-94.098472, 73.000194],
+ [-92.845471, 74.995312],
+ [-91.659615, 74.980693],
+ [-90.445801, 74.955305],
+ [-89.20808, 74.918302],
+ [-87.95127, 74.86884],
+ [-86.681081, 74.806086],
+ [-85.404268, 74.729222],
+ [-84.128864, 74.637455],
+ [-82.864533, 74.53002],
+ [-81.623152, 74.406176],
+ [-80.419806, 74.2652],
+ [-79.274652, 74.106339],
+ [-78.216749, 73.928702],
+ [-77.29311, 73.730954],
+ [-76.595689, 73.510243],
+ [-76.390304, 73.256451],
+ [-77.042091, 73.076913],
+ [-78.015528, 72.994911],
+ [-79.115088, 72.954647],
+ [-80.276835, 72.936876],
+ [-81.469995, 72.932154],
+ [-82.676747, 72.935073],
+ [-83.885546, 72.942272],
+ [-85.088332, 72.951565],
+ [-86.279178, 72.9615],
+ [-87.45357, 72.971111],
+ [-88.607982, 72.979764],
+ [-89.73962, 72.987065],
+ [-90.846251, 72.992792],
+ [-91.92609, 72.996848],
+ [-92.977713, 72.999229],
[-94, 73],
- [-93.901528, 73.000194],
- [-93.801245, 73.00079],
- [-93.69721, 73.001835],
- [-93.587201, 73.003414],
- [-93.468517, 73.005666],
- [-93.337709, 73.008811],
- [-93.190158, 73.013204],
- [-93.019419, 73.019419],
- [-92.816144, 73.028435],
- [-92.566244, 73.041995],
- [-92.247776, 73.063417],
- [-91.825948, 73.099478],
- [-91.247791, 73.165126],
- [-90.45484, 73.294824],
- [-89.514412, 73.558208],
- [-89, 74]
+ [-95.022287, 72.999229],
+ [-96.07391, 72.996848],
+ [-97.153749, 72.992792],
+ [-98.26038, 72.987065],
+ [-99.392018, 72.979764],
+ [-100.54643, 72.971111],
+ [-101.720822, 72.9615],
+ [-102.911668, 72.951565],
+ [-104.114454, 72.942272],
+ [-105.323253, 72.935073],
+ [-106.530005, 72.932154],
+ [-107.723165, 72.936876],
+ [-108.884912, 72.954647],
+ [-109.984472, 72.994911],
+ [-110.957909, 73.076913],
+ [-111.609696, 73.256451]
]
]
}
@@ -253,71 +187,71 @@
"type": "Polygon",
"coordinates": [
[
- [-94, 69],
- [-93.558208, 69.514412],
- [-93.294824, 70.45484],
- [-93.165126, 71.247791],
- [-93.099478, 71.825948],
- [-93.063417, 72.247776],
- [-93.041995, 72.566244],
- [-93.028435, 72.816144],
- [-93.019419, 73.019419],
- [-93.013204, 73.190158],
- [-93.008811, 73.337709],
- [-93.005666, 73.468517],
- [-93.003414, 73.587201],
- [-93.001835, 73.69721],
- [-93.00079, 73.801245],
- [-93.000194, 73.901528],
- [-93, 74],
- [-93.000194, 74.098472],
- [-93.00079, 74.198755],
- [-93.001835, 74.30279],
- [-93.003414, 74.412799],
- [-93.005666, 74.531483],
- [-93.008811, 74.662291],
- [-93.013204, 74.809842],
- [-93.019419, 74.980581],
- [-93.028435, 75.183856],
- [-93.041995, 75.433756],
- [-93.063417, 75.752224],
- [-93.099478, 76.174052],
- [-93.165126, 76.752209],
- [-93.294824, 77.54516],
- [-93.558208, 78.485588],
[-94, 79],
- [-94.441792, 78.485588],
- [-94.705176, 77.54516],
- [-94.834874, 76.752209],
- [-94.900522, 76.174052],
- [-94.936583, 75.752224],
- [-94.958005, 75.433756],
- [-94.971565, 75.183856],
- [-94.980581, 74.980581],
- [-94.986796, 74.809842],
- [-94.991189, 74.662291],
- [-94.994334, 74.531483],
- [-94.996586, 74.412799],
- [-94.998165, 74.30279],
- [-94.99921, 74.198755],
- [-94.999806, 74.098472],
- [-95, 74],
- [-94.999806, 73.901528],
- [-94.99921, 73.801245],
- [-94.998165, 73.69721],
- [-94.996586, 73.587201],
- [-94.994334, 73.468517],
- [-94.991189, 73.337709],
- [-94.986796, 73.190158],
- [-94.980581, 73.019419],
- [-94.971565, 72.816144],
- [-94.958005, 72.566244],
- [-94.936583, 72.247776],
- [-94.900522, 71.825948],
- [-94.834874, 71.247791],
- [-94.705176, 70.45484],
- [-94.441792, 69.514412],
- [-94, 69]
+ [-92.829533, 78.868122],
+ [-92.063446, 78.613133],
+ [-91.514439, 78.307836],
+ [-91.1101, 77.976934],
+ [-90.810522, 77.632522],
+ [-90.590161, 77.281607],
+ [-90.431305, 76.928659],
+ [-90.321068, 76.576722],
+ [-90.249767, 76.227955],
+ [-90.209956, 75.883941],
+ [-90.195813, 75.545863],
+ [-90.202719, 75.21462],
+ [-90.226974, 74.890901],
+ [-90.265581, 74.575235],
+ [-90.316097, 74.26803],
+ [-90.376515, 73.969595],
+ [-90.447416, 73.671357],
+ [-90.530789, 73.364764],
+ [-90.627066, 73.050162],
+ [-90.736781, 72.727995],
+ [-90.860599, 72.398831],
+ [-90.999361, 72.063398],
+ [-91.154149, 71.722628],
+ [-91.326376, 71.377739],
+ [-91.517927, 71.030336],
+ [-91.731383, 70.682588],
+ [-91.970405, 70.337519],
+ [-92.240431, 69.999537],
+ [-92.550102, 69.675491],
+ [-92.914615, 69.377145],
+ [-93.365745, 69.128445],
+ [-94, 69],
+ [-94.634255, 69.128445],
+ [-95.085385, 69.377145],
+ [-95.449898, 69.675491],
+ [-95.759569, 69.999537],
+ [-96.029595, 70.337519],
+ [-96.268617, 70.682588],
+ [-96.482073, 71.030336],
+ [-96.673624, 71.377739],
+ [-96.845851, 71.722628],
+ [-97.000639, 72.063398],
+ [-97.139401, 72.398831],
+ [-97.263219, 72.727995],
+ [-97.372934, 73.050162],
+ [-97.469211, 73.364764],
+ [-97.552584, 73.671357],
+ [-97.623485, 73.969595],
+ [-97.683903, 74.26803],
+ [-97.734419, 74.575235],
+ [-97.773026, 74.890901],
+ [-97.797281, 75.21462],
+ [-97.804187, 75.545863],
+ [-97.790044, 75.883941],
+ [-97.750233, 76.227955],
+ [-97.678932, 76.576722],
+ [-97.568695, 76.928659],
+ [-97.409839, 77.281607],
+ [-97.189478, 77.632522],
+ [-96.8899, 77.976934],
+ [-96.485561, 78.307836],
+ [-95.936554, 78.613133],
+ [-95.170467, 78.868122],
+ [-94, 79]
]
]
}
diff --git a/packages/turf-ellipse/test/out/northern-latitudes.json b/packages/turf-ellipse/test/out/northern-latitudes.json
index 451887bfa..135b4e6cd 100644
--- a/packages/turf-ellipse/test/out/northern-latitudes.json
+++ b/packages/turf-ellipse/test/out/northern-latitudes.json
@@ -1,78 +1,6 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [
- -95.63134703033796, 73.91006796362754, -92.36865296966204, 74.08993203637246
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-95.63134703033796, 73.91006796362754],
- [-92.36865296966204, 73.91006796362754],
- [-92.36865296966204, 74.08993203637246],
- [-95.63134703033796, 74.08993203637246],
- [-95.63134703033796, 73.91006796362754]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -94.32626940606758, 73.55033981813773, -93.67373059393242, 74.44966018186227
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-94.32626940606758, 73.55033981813773],
- [-93.67373059393242, 73.55033981813773],
- [-93.67373059393242, 74.44966018186227],
- [-94.32626940606758, 74.44966018186227],
- [-94.32626940606758, 73.55033981813773]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -95.63134703033796, 73.55033981813773, -92.36865296966204, 74.44966018186227
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-95.63134703033796, 73.55033981813773],
- [-92.36865296966204, 73.55033981813773],
- [-92.36865296966204, 74.44966018186227],
- [-95.63134703033796, 74.44966018186227],
- [-95.63134703033796, 73.55033981813773]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
@@ -242,135 +170,135 @@
"type": "Polygon",
"coordinates": [
[
- [-92.368653, 74],
- [-92.782084, 74.059832],
- [-93.203223, 74.078476],
- [-93.431704, 74.084299],
- [-93.564304, 74.086665],
- [-93.649362, 74.08783],
- [-93.708311, 74.088483],
- [-93.751588, 74.088883],
- [-93.784783, 74.089146],
- [-93.811133, 74.089327],
- [-93.832637, 74.089458],
- [-93.850588, 74.089554],
- [-93.865863, 74.089628],
- [-93.879074, 74.089685],
- [-93.890664, 74.08973],
- [-93.900958, 74.089766],
- [-93.910204, 74.089796],
- [-93.918592, 74.08982],
- [-93.92627, 74.08984],
- [-93.933358, 74.089857],
- [-93.93995, 74.089871],
- [-93.946126, 74.089883],
- [-93.951951, 74.089893],
- [-93.95748, 74.089901],
- [-93.962759, 74.089909],
- [-93.967828, 74.089915],
- [-93.972723, 74.089919],
- [-93.977475, 74.089923],
- [-93.982112, 74.089927],
- [-93.98666, 74.089929],
- [-93.991143, 74.089931],
- [-93.995582, 74.089932],
+ [-95.63094, 73.993848],
+ [-95.618974, 74.005314],
+ [-95.590643, 74.014501],
+ [-95.553238, 74.022313],
+ [-95.510009, 74.029153],
+ [-95.462755, 74.035244],
+ [-95.412603, 74.040726],
+ [-95.360317, 74.045697],
+ [-95.306446, 74.050225],
+ [-95.2514, 74.054363],
+ [-95.195495, 74.058153],
+ [-95.138982, 74.061628],
+ [-95.082063, 74.064815],
+ [-95.024904, 74.067738],
+ [-94.967645, 74.070417],
+ [-94.910401, 74.072868],
+ [-94.853272, 74.075106],
+ [-94.796343, 74.077145],
+ [-94.739687, 74.078997],
+ [-94.683367, 74.080672],
+ [-94.62744, 74.082181],
+ [-94.571954, 74.083531],
+ [-94.516951, 74.084732],
+ [-94.462469, 74.08579],
+ [-94.408542, 74.086713],
+ [-94.3552, 74.087507],
+ [-94.302467, 74.088179],
+ [-94.250367, 74.088734],
+ [-94.198921, 74.089177],
+ [-94.148146, 74.089514],
+ [-94.098058, 74.089749],
+ [-94.048672, 74.089887],
[-94, 74.089932],
- [-94.004418, 74.089932],
- [-94.008857, 74.089931],
- [-94.01334, 74.089929],
- [-94.017888, 74.089927],
- [-94.022525, 74.089923],
- [-94.027277, 74.089919],
- [-94.032172, 74.089915],
- [-94.037241, 74.089909],
- [-94.04252, 74.089901],
- [-94.048049, 74.089893],
- [-94.053874, 74.089883],
- [-94.06005, 74.089871],
- [-94.066642, 74.089857],
- [-94.07373, 74.08984],
- [-94.081408, 74.08982],
- [-94.089796, 74.089796],
- [-94.099042, 74.089766],
- [-94.109336, 74.08973],
- [-94.120926, 74.089685],
- [-94.134137, 74.089628],
- [-94.149412, 74.089554],
- [-94.167363, 74.089458],
- [-94.188867, 74.089327],
- [-94.215217, 74.089146],
- [-94.248412, 74.088883],
- [-94.291689, 74.088483],
- [-94.350638, 74.08783],
- [-94.435696, 74.086665],
- [-94.568296, 74.084299],
- [-94.796777, 74.078476],
- [-95.217916, 74.059832],
- [-95.631347, 74],
- [-95.217916, 73.940168],
- [-94.796777, 73.921524],
- [-94.568296, 73.915701],
- [-94.435696, 73.913335],
- [-94.350638, 73.91217],
- [-94.291689, 73.911517],
- [-94.248412, 73.911117],
- [-94.215217, 73.910854],
- [-94.188867, 73.910673],
- [-94.167363, 73.910542],
- [-94.149412, 73.910446],
- [-94.134137, 73.910372],
- [-94.120926, 73.910315],
- [-94.109336, 73.91027],
- [-94.099042, 73.910234],
- [-94.089796, 73.910204],
- [-94.081408, 73.91018],
- [-94.07373, 73.91016],
- [-94.066642, 73.910143],
- [-94.06005, 73.910129],
- [-94.053874, 73.910117],
- [-94.048049, 73.910107],
- [-94.04252, 73.910099],
- [-94.037241, 73.910091],
- [-94.032172, 73.910085],
- [-94.027277, 73.910081],
- [-94.022525, 73.910077],
- [-94.017888, 73.910073],
- [-94.01334, 73.910071],
- [-94.008857, 73.910069],
- [-94.004418, 73.910068],
+ [-93.951328, 74.089887],
+ [-93.901942, 74.089749],
+ [-93.851854, 74.089514],
+ [-93.801079, 74.089177],
+ [-93.749633, 74.088734],
+ [-93.697533, 74.088179],
+ [-93.6448, 74.087507],
+ [-93.591458, 74.086713],
+ [-93.537531, 74.08579],
+ [-93.483049, 74.084732],
+ [-93.428046, 74.083531],
+ [-93.37256, 74.082181],
+ [-93.316633, 74.080672],
+ [-93.260313, 74.078997],
+ [-93.203657, 74.077145],
+ [-93.146728, 74.075106],
+ [-93.089599, 74.072868],
+ [-93.032355, 74.070417],
+ [-92.975096, 74.067738],
+ [-92.917937, 74.064815],
+ [-92.861018, 74.061628],
+ [-92.804505, 74.058153],
+ [-92.7486, 74.054363],
+ [-92.693554, 74.050225],
+ [-92.639683, 74.045697],
+ [-92.587397, 74.040726],
+ [-92.537245, 74.035244],
+ [-92.489991, 74.029153],
+ [-92.446762, 74.022313],
+ [-92.409357, 74.014501],
+ [-92.381026, 74.005314],
+ [-92.36906, 73.993848],
+ [-92.383264, 73.982578],
+ [-92.41329, 73.973824],
+ [-92.452023, 73.966565],
+ [-92.496301, 73.960344],
+ [-92.544379, 73.954908],
+ [-92.595167, 73.950095],
+ [-92.647929, 73.945796],
+ [-92.702136, 73.941933],
+ [-92.757398, 73.938445],
+ [-92.813412, 73.935286],
+ [-92.86994, 73.932419],
+ [-92.926792, 73.929814],
+ [-92.98381, 73.927445],
+ [-93.040864, 73.925291],
+ [-93.097847, 73.923334],
+ [-93.154665, 73.921558],
+ [-93.21124, 73.91995],
+ [-93.267504, 73.918497],
+ [-93.323399, 73.91719],
+ [-93.378874, 73.916017],
+ [-93.433884, 73.914972],
+ [-93.488392, 73.914045],
+ [-93.542363, 73.913231],
+ [-93.595766, 73.912523],
+ [-93.648577, 73.911915],
+ [-93.70077, 73.911402],
+ [-93.752327, 73.910979],
+ [-93.803229, 73.910642],
+ [-93.853461, 73.910386],
+ [-93.903008, 73.910207],
+ [-93.951857, 73.910102],
[-94, 73.910068],
- [-93.995582, 73.910068],
- [-93.991143, 73.910069],
- [-93.98666, 73.910071],
- [-93.982112, 73.910073],
- [-93.977475, 73.910077],
- [-93.972723, 73.910081],
- [-93.967828, 73.910085],
- [-93.962759, 73.910091],
- [-93.95748, 73.910099],
- [-93.951951, 73.910107],
- [-93.946126, 73.910117],
- [-93.93995, 73.910129],
- [-93.933358, 73.910143],
- [-93.92627, 73.91016],
- [-93.918592, 73.91018],
- [-93.910204, 73.910204],
- [-93.900958, 73.910234],
- [-93.890664, 73.91027],
- [-93.879074, 73.910315],
- [-93.865863, 73.910372],
- [-93.850588, 73.910446],
- [-93.832637, 73.910542],
- [-93.811133, 73.910673],
- [-93.784783, 73.910854],
- [-93.751588, 73.911117],
- [-93.708311, 73.911517],
- [-93.649362, 73.91217],
- [-93.564304, 73.913335],
- [-93.431704, 73.915701],
- [-93.203223, 73.921524],
- [-92.782084, 73.940168],
- [-92.368653, 74]
+ [-94.048143, 73.910102],
+ [-94.096992, 73.910207],
+ [-94.146539, 73.910386],
+ [-94.196771, 73.910642],
+ [-94.247673, 73.910979],
+ [-94.29923, 73.911402],
+ [-94.351423, 73.911915],
+ [-94.404234, 73.912523],
+ [-94.457637, 73.913231],
+ [-94.511608, 73.914045],
+ [-94.566116, 73.914972],
+ [-94.621126, 73.916017],
+ [-94.676601, 73.91719],
+ [-94.732496, 73.918497],
+ [-94.78876, 73.91995],
+ [-94.845335, 73.921558],
+ [-94.902153, 73.923334],
+ [-94.959136, 73.925291],
+ [-95.01619, 73.927445],
+ [-95.073208, 73.929814],
+ [-95.13006, 73.932419],
+ [-95.186588, 73.935286],
+ [-95.242602, 73.938445],
+ [-95.297864, 73.941933],
+ [-95.352071, 73.945796],
+ [-95.404833, 73.950095],
+ [-95.455621, 73.954908],
+ [-95.503699, 73.960344],
+ [-95.547977, 73.966565],
+ [-95.58671, 73.973824],
+ [-95.616736, 73.982578],
+ [-95.63094, 73.993848]
]
]
}
@@ -387,135 +315,135 @@
"type": "Polygon",
"coordinates": [
[
- [-94, 73.55034],
- [-93.785114, 73.664909],
- [-93.717175, 73.780904],
- [-93.695613, 73.843759],
- [-93.686723, 73.880223],
- [-93.682287, 73.90361],
- [-93.679769, 73.919816],
- [-93.678204, 73.931714],
- [-93.677163, 73.940839],
- [-93.676435, 73.948083],
- [-93.675906, 73.953994],
- [-93.675507, 73.958929],
- [-93.6752, 73.963128],
- [-93.674957, 73.966759],
- [-93.674762, 73.969945],
- [-93.674602, 73.972775],
- [-93.67447, 73.975317],
- [-93.674359, 73.977622],
- [-93.674265, 73.979733],
- [-93.674185, 73.981681],
- [-93.674115, 73.983493],
- [-93.674055, 73.985191],
- [-93.674003, 73.986792],
- [-93.673957, 73.988312],
- [-93.673917, 73.989763],
- [-93.673882, 73.991157],
- [-93.673851, 73.992502],
- [-93.673823, 73.993808],
- [-93.673799, 73.995083],
- [-93.673778, 73.996333],
- [-93.67376, 73.997565],
- [-93.673744, 73.998786],
- [-93.673731, 74],
- [-93.67372, 74.001214],
- [-93.673711, 74.002435],
- [-93.673705, 74.003667],
- [-93.673701, 74.004917],
- [-93.6737, 74.006192],
- [-93.673702, 74.007498],
- [-93.673706, 74.008843],
- [-93.673714, 74.010237],
- [-93.673725, 74.011688],
- [-93.673741, 74.013208],
- [-93.673761, 74.014809],
- [-93.673788, 74.016507],
- [-93.673821, 74.018319],
- [-93.673863, 74.020267],
- [-93.673915, 74.022378],
- [-93.67398, 74.024683],
- [-93.674062, 74.027225],
- [-93.674166, 74.030055],
- [-93.674299, 74.033241],
- [-93.67447, 74.036872],
- [-93.674695, 74.041071],
- [-93.674997, 74.046006],
- [-93.675411, 74.051917],
- [-93.675999, 74.059161],
- [-93.676863, 74.068286],
- [-93.678202, 74.080184],
- [-93.680418, 74.09639],
- [-93.68443, 74.119777],
- [-93.692704, 74.156241],
- [-93.713378, 74.219096],
- [-93.780685, 74.335091],
[-94, 74.44966],
- [-94.219323, 74.336314],
- [-94.286632, 74.220145],
- [-94.307304, 74.157045],
- [-94.315576, 74.12041],
- [-94.319587, 74.096907],
- [-94.321802, 74.080617],
- [-94.32314, 74.068657],
- [-94.324005, 74.059483],
- [-94.324591, 74.0522],
- [-94.325006, 74.046257],
- [-94.325307, 74.041296],
- [-94.325532, 74.037074],
- [-94.325703, 74.033423],
- [-94.325836, 74.030219],
- [-94.325939, 74.027374],
- [-94.326021, 74.024819],
- [-94.326086, 74.0225],
- [-94.326138, 74.020378],
- [-94.32618, 74.018419],
- [-94.326213, 74.016597],
- [-94.326239, 74.01489],
- [-94.32626, 74.01328],
- [-94.326275, 74.011752],
- [-94.326287, 74.010293],
- [-94.326294, 74.008892],
- [-94.326299, 74.007539],
- [-94.3263, 74.006226],
- [-94.326299, 74.004944],
- [-94.326295, 74.003687],
- [-94.326289, 74.002448],
- [-94.32628, 74.001221],
- [-94.326269, 74],
- [-94.326256, 73.998779],
- [-94.32624, 73.997552],
- [-94.326222, 73.996313],
- [-94.326201, 73.995056],
- [-94.326177, 73.993774],
- [-94.326149, 73.992461],
- [-94.326118, 73.991108],
- [-94.326082, 73.989707],
- [-94.326042, 73.988248],
- [-94.325996, 73.98672],
- [-94.325944, 73.98511],
- [-94.325884, 73.983403],
- [-94.325814, 73.981581],
- [-94.325734, 73.979622],
- [-94.32564, 73.9775],
- [-94.325529, 73.975181],
- [-94.325397, 73.972626],
- [-94.325237, 73.969781],
- [-94.325041, 73.966577],
- [-94.324798, 73.962926],
- [-94.32449, 73.958704],
- [-94.324092, 73.953743],
- [-94.323562, 73.9478],
- [-94.322834, 73.940517],
- [-94.321793, 73.931343],
- [-94.320227, 73.919383],
- [-94.317708, 73.903093],
- [-94.313271, 73.87959],
- [-94.30438, 73.842955],
- [-94.282816, 73.779855],
- [-94.214878, 73.663686],
- [-94, 73.55034]
+ [-93.95759, 74.446047],
+ [-93.924163, 74.437989],
+ [-93.896135, 74.427476],
+ [-93.871901, 74.415395],
+ [-93.850567, 74.402234],
+ [-93.831566, 74.3883],
+ [-93.814511, 74.373801],
+ [-93.799121, 74.358884],
+ [-93.785183, 74.343661],
+ [-93.772529, 74.328217],
+ [-93.761024, 74.312619],
+ [-93.750558, 74.296922],
+ [-93.741037, 74.281171],
+ [-93.732384, 74.265401],
+ [-93.724528, 74.249645],
+ [-93.717412, 74.233928],
+ [-93.710983, 74.218274],
+ [-93.705195, 74.202701],
+ [-93.700005, 74.187227],
+ [-93.695378, 74.171865],
+ [-93.691278, 74.156629],
+ [-93.687675, 74.141531],
+ [-93.684541, 74.126578],
+ [-93.68185, 74.111782],
+ [-93.679578, 74.097148],
+ [-93.677703, 74.082684],
+ [-93.676204, 74.068396],
+ [-93.675063, 74.054289],
+ [-93.674262, 74.040367],
+ [-93.673784, 74.026635],
+ [-93.673612, 74.013096],
+ [-93.673734, 73.999754],
+ [-93.674142, 73.986412],
+ [-93.674849, 73.972874],
+ [-93.675868, 73.959145],
+ [-93.677213, 73.945226],
+ [-93.678898, 73.931123],
+ [-93.68094, 73.91684],
+ [-93.683354, 73.902383],
+ [-93.686158, 73.887756],
+ [-93.689373, 73.872968],
+ [-93.693018, 73.858026],
+ [-93.697116, 73.842938],
+ [-93.701692, 73.827715],
+ [-93.706773, 73.812367],
+ [-93.712388, 73.796907],
+ [-93.718569, 73.78135],
+ [-93.725353, 73.765713],
+ [-93.73278, 73.750015],
+ [-93.740897, 73.734278],
+ [-93.749757, 73.71853],
+ [-93.759418, 73.7028],
+ [-93.769952, 73.687126],
+ [-93.781443, 73.671553],
+ [-93.793988, 73.656134],
+ [-93.807712, 73.640937],
+ [-93.822766, 73.626047],
+ [-93.839345, 73.611574],
+ [-93.85771, 73.597668],
+ [-93.878219, 73.584533],
+ [-93.901403, 73.572476],
+ [-93.928101, 73.561986],
+ [-93.959832, 73.553946],
+ [-94, 73.55034],
+ [-94.040168, 73.553946],
+ [-94.071899, 73.561986],
+ [-94.098597, 73.572476],
+ [-94.121781, 73.584533],
+ [-94.14229, 73.597668],
+ [-94.160655, 73.611574],
+ [-94.177234, 73.626047],
+ [-94.192288, 73.640937],
+ [-94.206012, 73.656134],
+ [-94.218557, 73.671553],
+ [-94.230048, 73.687126],
+ [-94.240582, 73.7028],
+ [-94.250243, 73.71853],
+ [-94.259103, 73.734278],
+ [-94.26722, 73.750015],
+ [-94.274647, 73.765713],
+ [-94.281431, 73.78135],
+ [-94.287612, 73.796907],
+ [-94.293227, 73.812367],
+ [-94.298308, 73.827715],
+ [-94.302884, 73.842938],
+ [-94.306982, 73.858026],
+ [-94.310627, 73.872968],
+ [-94.313842, 73.887756],
+ [-94.316646, 73.902383],
+ [-94.31906, 73.91684],
+ [-94.321102, 73.931123],
+ [-94.322787, 73.945226],
+ [-94.324132, 73.959145],
+ [-94.325151, 73.972874],
+ [-94.325858, 73.986412],
+ [-94.326266, 73.999754],
+ [-94.326388, 74.013096],
+ [-94.326216, 74.026635],
+ [-94.325738, 74.040367],
+ [-94.324937, 74.054289],
+ [-94.323796, 74.068396],
+ [-94.322297, 74.082684],
+ [-94.320422, 74.097148],
+ [-94.31815, 74.111782],
+ [-94.315459, 74.126578],
+ [-94.312325, 74.141531],
+ [-94.308722, 74.156629],
+ [-94.304622, 74.171865],
+ [-94.299995, 74.187227],
+ [-94.294805, 74.202701],
+ [-94.289017, 74.218274],
+ [-94.282588, 74.233928],
+ [-94.275472, 74.249645],
+ [-94.267616, 74.265401],
+ [-94.258963, 74.281171],
+ [-94.249442, 74.296922],
+ [-94.238976, 74.312619],
+ [-94.227471, 74.328217],
+ [-94.214817, 74.343661],
+ [-94.200879, 74.358884],
+ [-94.185489, 74.373801],
+ [-94.168434, 74.3883],
+ [-94.149433, 74.402234],
+ [-94.128099, 74.415395],
+ [-94.103865, 74.427476],
+ [-94.075837, 74.437989],
+ [-94.04241, 74.446047],
+ [-94, 74.44966]
]
]
}
diff --git a/packages/turf-ellipse/test/out/rotation-degrees.json b/packages/turf-ellipse/test/out/rotation-degrees.json
index 1a5e7432a..f8e32d846 100644
--- a/packages/turf-ellipse/test/out/rotation-degrees.json
+++ b/packages/turf-ellipse/test/out/rotation-degrees.json
@@ -1,85 +1,13 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [
- -74.11421824800942, 40.71315533047033, -73.8809366917385, 40.748510669529665
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.11421824800942, 40.71315533047033],
- [-73.8809366917385, 40.71315533047033],
- [-73.8809366917385, 40.748510669529665],
- [-74.11421824800942, 40.748510669529665],
- [-74.11421824800942, 40.71315533047033]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -74.02083123236167, 40.64244465235168, -73.97417496521712, 40.819221347648316
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.02083123236167, 40.64244465235168],
- [-73.97417496521712, 40.64244465235168],
- [-73.97417496521712, 40.819221347648316],
- [-74.02083123236167, 40.819221347648316],
- [-74.02083123236167, 40.64244465235168]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -74.11421824800942, 40.64244465235168, -73.8809366917385, 40.819221347648316
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.11421824800942, 40.64244465235168],
- [-73.8809366917385, 40.64244465235168],
- [-73.8809366917385, 40.819221347648316],
- [-74.11421824800942, 40.819221347648316],
- [-74.11421824800942, 40.64244465235168]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
"units": "degrees",
"xSemiAxis": 0.125,
"ySemiAxis": 0.025,
- "angle": 45
+ "angle": 30
},
"geometry": {
"type": "Point",
@@ -179,71 +107,71 @@
"type": "Polygon",
"coordinates": [
[
- [-73.909112, 40.642445],
- [-73.910395, 40.659348],
- [-73.922364, 40.680629],
- [-73.934089, 40.696939],
- [-73.943149, 40.70832],
- [-73.949968, 40.716414],
- [-73.955219, 40.722423],
- [-73.959397, 40.72708],
- [-73.962831, 40.730833],
- [-73.96574, 40.733961],
- [-73.96827, 40.736647],
- [-73.970527, 40.739015],
- [-73.972585, 40.741153],
- [-73.974502, 40.743126],
- [-73.976323, 40.744983],
- [-73.978085, 40.746766],
- [-73.979822, 40.748511],
- [-73.981567, 40.750248],
- [-73.98335, 40.75201],
- [-73.985207, 40.753831],
- [-73.98718, 40.755748],
- [-73.989318, 40.757806],
- [-73.991686, 40.760063],
- [-73.994372, 40.762593],
- [-73.9975, 40.765502],
- [-74.001253, 40.768936],
- [-74.00591, 40.773114],
- [-74.011919, 40.778365],
- [-74.020013, 40.785184],
- [-74.031394, 40.794244],
- [-74.047704, 40.805969],
- [-74.068985, 40.817938],
- [-74.085888, 40.819221],
- [-74.084605, 40.802318],
- [-74.072636, 40.781037],
- [-74.060911, 40.764727],
- [-74.051851, 40.753346],
- [-74.045032, 40.745252],
- [-74.039781, 40.739243],
- [-74.035603, 40.734586],
- [-74.032169, 40.730833],
- [-74.02926, 40.727705],
- [-74.02673, 40.725019],
- [-74.024473, 40.722651],
- [-74.022415, 40.720513],
- [-74.020498, 40.71854],
- [-74.018677, 40.716683],
- [-74.016915, 40.7149],
- [-74.015178, 40.713155],
- [-74.013433, 40.711418],
- [-74.01165, 40.709656],
- [-74.009793, 40.707835],
- [-74.00782, 40.705918],
- [-74.005682, 40.70386],
- [-74.003314, 40.701603],
- [-74.000628, 40.699073],
- [-73.9975, 40.696164],
- [-73.993747, 40.69273],
- [-73.98909, 40.688552],
- [-73.983081, 40.683301],
- [-73.974987, 40.676482],
- [-73.963606, 40.667422],
- [-73.947296, 40.655697],
- [-73.926015, 40.643728],
- [-73.909112, 40.642445]
+ [-74.140489, 40.793245],
+ [-74.133053, 40.796531],
+ [-74.123293, 40.796793],
+ [-74.11268, 40.795669],
+ [-74.10171, 40.79372],
+ [-74.090624, 40.791225],
+ [-74.079564, 40.788347],
+ [-74.068615, 40.785194],
+ [-74.057839, 40.781842],
+ [-74.047275, 40.778345],
+ [-74.036954, 40.774747],
+ [-74.026898, 40.771079],
+ [-74.017122, 40.767369],
+ [-74.007637, 40.763638],
+ [-73.998451, 40.759903],
+ [-73.989571, 40.756181],
+ [-73.980999, 40.752482],
+ [-73.972487, 40.748706],
+ [-73.963795, 40.744739],
+ [-73.954937, 40.740579],
+ [-73.945934, 40.73622],
+ [-73.93681, 40.731661],
+ [-73.927596, 40.726897],
+ [-73.91833, 40.721925],
+ [-73.909059, 40.716744],
+ [-73.899849, 40.711352],
+ [-73.890781, 40.705747],
+ [-73.881973, 40.699932],
+ [-73.87359, 40.69391],
+ [-73.865889, 40.687691],
+ [-73.859309, 40.681293],
+ [-73.854737, 40.674764],
+ [-73.854779, 40.668245],
+ [-73.862215, 40.664976],
+ [-73.871956, 40.664737],
+ [-73.882545, 40.665883],
+ [-73.893487, 40.667852],
+ [-73.904545, 40.670366],
+ [-73.915578, 40.673261],
+ [-73.926501, 40.676428],
+ [-73.937254, 40.679793],
+ [-73.947796, 40.683299],
+ [-73.958098, 40.686906],
+ [-73.968137, 40.69058],
+ [-73.9779, 40.694294],
+ [-73.987373, 40.698027],
+ [-73.99655, 40.701763],
+ [-74.005423, 40.705485],
+ [-74.01399, 40.709181],
+ [-74.022499, 40.712955],
+ [-74.031191, 40.716917],
+ [-74.040051, 40.721072],
+ [-74.049058, 40.725423],
+ [-74.058188, 40.729973],
+ [-74.067412, 40.734727],
+ [-74.076692, 40.739687],
+ [-74.085978, 40.744854],
+ [-74.095208, 40.750232],
+ [-74.104299, 40.755821],
+ [-74.113135, 40.761619],
+ [-74.121548, 40.767623],
+ [-74.129281, 40.773826],
+ [-74.135896, 40.780208],
+ [-74.140503, 40.786726],
+ [-74.140489, 40.793245]
]
]
}
@@ -260,71 +188,71 @@
"type": "Polygon",
"coordinates": [
[
- [-74.085888, 40.642445],
- [-74.068985, 40.643728],
- [-74.047704, 40.655697],
- [-74.031394, 40.667422],
- [-74.020013, 40.676482],
- [-74.011919, 40.683301],
- [-74.00591, 40.688552],
- [-74.001253, 40.69273],
- [-73.9975, 40.696164],
- [-73.994372, 40.699073],
- [-73.991686, 40.701603],
- [-73.989318, 40.70386],
- [-73.98718, 40.705918],
- [-73.985207, 40.707835],
- [-73.98335, 40.709656],
- [-73.981567, 40.711418],
- [-73.979822, 40.713155],
- [-73.978085, 40.7149],
- [-73.976323, 40.716683],
- [-73.974502, 40.71854],
- [-73.972585, 40.720513],
- [-73.970527, 40.722651],
- [-73.96827, 40.725019],
- [-73.96574, 40.727705],
- [-73.962831, 40.730833],
- [-73.959397, 40.734586],
- [-73.955219, 40.739243],
- [-73.949968, 40.745252],
- [-73.943149, 40.753346],
- [-73.934089, 40.764727],
- [-73.922364, 40.781037],
- [-73.910395, 40.802318],
- [-73.909112, 40.819221],
- [-73.926015, 40.817938],
- [-73.947296, 40.805969],
- [-73.963606, 40.794244],
- [-73.974987, 40.785184],
- [-73.983081, 40.778365],
- [-73.98909, 40.773114],
- [-73.993747, 40.768936],
- [-73.9975, 40.765502],
- [-74.000628, 40.762593],
- [-74.003314, 40.760063],
- [-74.005682, 40.757806],
- [-74.00782, 40.755748],
- [-74.009793, 40.753831],
- [-74.01165, 40.75201],
- [-74.013433, 40.750248],
- [-74.015178, 40.748511],
- [-74.016915, 40.746766],
- [-74.018677, 40.744983],
- [-74.020498, 40.743126],
- [-74.022415, 40.741153],
- [-74.024473, 40.739015],
- [-74.02673, 40.736647],
- [-74.02926, 40.733961],
- [-74.032169, 40.730833],
- [-74.035603, 40.72708],
- [-74.039781, 40.722423],
- [-74.045032, 40.716414],
- [-74.051851, 40.70832],
- [-74.060911, 40.696939],
- [-74.072636, 40.680629],
- [-74.084605, 40.659348],
- [-74.085888, 40.642445]
+ [-73.914888, 40.839057],
+ [-73.910563, 40.833419],
+ [-73.910242, 40.82603],
+ [-73.911752, 40.817997],
+ [-73.914351, 40.809697],
+ [-73.917671, 40.80131],
+ [-73.921493, 40.792941],
+ [-73.925676, 40.784657],
+ [-73.93012, 40.776502],
+ [-73.934751, 40.768508],
+ [-73.939515, 40.760697],
+ [-73.944367, 40.753085],
+ [-73.949273, 40.745684],
+ [-73.954204, 40.738503],
+ [-73.959137, 40.731547],
+ [-73.964053, 40.724822],
+ [-73.968934, 40.718329],
+ [-73.973917, 40.711882],
+ [-73.979149, 40.705295],
+ [-73.984635, 40.698583],
+ [-73.99038, 40.69176],
+ [-73.996387, 40.684844],
+ [-74.002662, 40.677858],
+ [-74.009209, 40.67083],
+ [-74.016029, 40.663799],
+ [-74.023126, 40.65681],
+ [-74.0305, 40.649928],
+ [-74.038149, 40.643241],
+ [-74.046069, 40.636874],
+ [-74.054249, 40.631022],
+ [-74.062663, 40.626018],
+ [-74.071255, 40.622535],
+ [-74.079844, 40.622551],
+ [-74.084169, 40.628182],
+ [-74.084508, 40.635571],
+ [-74.083023, 40.643605],
+ [-74.080452, 40.65191],
+ [-74.07716, 40.660302],
+ [-74.073365, 40.668675],
+ [-74.069208, 40.676965],
+ [-74.064788, 40.685125],
+ [-74.060178, 40.693124],
+ [-74.055433, 40.70094],
+ [-74.050597, 40.708557],
+ [-74.045705, 40.715962],
+ [-74.040786, 40.723147],
+ [-74.035862, 40.730106],
+ [-74.030953, 40.736834],
+ [-74.026076, 40.743329],
+ [-74.021096, 40.74978],
+ [-74.015865, 40.756368],
+ [-74.010377, 40.763081],
+ [-74.004629, 40.769906],
+ [-73.998614, 40.776822],
+ [-73.992329, 40.783808],
+ [-73.98577, 40.790834],
+ [-73.978934, 40.797865],
+ [-73.971817, 40.80485],
+ [-73.96442, 40.811729],
+ [-73.956744, 40.818411],
+ [-73.948793, 40.824772],
+ [-73.940581, 40.830616],
+ [-73.932131, 40.835611],
+ [-73.923504, 40.839084],
+ [-73.914888, 40.839057]
]
]
}
diff --git a/packages/turf-ellipse/test/out/rotation.json b/packages/turf-ellipse/test/out/rotation.json
index 66fc3f205..96502ca98 100644
--- a/packages/turf-ellipse/test/out/rotation.json
+++ b/packages/turf-ellipse/test/out/rotation.json
@@ -1,84 +1,12 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [
- -74.03946895975423, 40.724473844723505, -73.95555109008865, 40.73719215527649
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.03946895975423, 40.724473844723505],
- [-73.95555109008865, 40.724473844723505],
- [-73.95555109008865, 40.73719215527649],
- [-74.03946895975423, 40.73719215527649],
- [-74.03946895975423, 40.724473844723505]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -74.00589218693665, 40.69903722361756, -73.98910861505686, 40.76262877638244
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.00589218693665, 40.69903722361756],
- [-73.98910861505686, 40.69903722361756],
- [-73.98910861505686, 40.76262877638244],
- [-74.00589218693665, 40.76262877638244],
- [-74.00589218693665, 40.69903722361756]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -74.03946895975423, 40.69903722361756, -73.95555109008865, 40.76262877638244
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.03946895975423, 40.69903722361756],
- [-73.95555109008865, 40.69903722361756],
- [-73.95555109008865, 40.76262877638244],
- [-74.03946895975423, 40.76262877638244],
- [-74.03946895975423, 40.69903722361756]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
"xSemiAxis": 5,
"ySemiAxis": 1,
- "angle": 45
+ "angle": 30
},
"geometry": {
"type": "Point",
@@ -178,71 +106,71 @@
"type": "Polygon",
"coordinates": [
[
- [-73.955551, 40.699037],
- [-73.957753, 40.707639],
- [-73.9654, 40.716622],
- [-73.971243, 40.722312],
- [-73.975203, 40.72588],
- [-73.977982, 40.728278],
- [-73.980035, 40.730002],
- [-73.981628, 40.731313],
- [-73.982916, 40.732356],
- [-73.983994, 40.733219],
- [-73.984923, 40.733957],
- [-73.985748, 40.734604],
- [-73.986496, 40.735188],
- [-73.98719, 40.735725],
- [-73.987847, 40.736231],
- [-73.988483, 40.736717],
- [-73.989108, 40.737192],
- [-73.989735, 40.737666],
- [-73.990376, 40.738147],
- [-73.991044, 40.738646],
- [-73.991753, 40.739172],
- [-73.992523, 40.739739],
- [-73.993378, 40.740363],
- [-73.994351, 40.741068],
- [-73.99549, 40.741884],
- [-73.996867, 40.74286],
- [-73.998597, 40.744067],
- [-74.000872, 40.745624],
- [-74.004037, 40.74773],
- [-74.008747, 40.750732],
- [-74.016256, 40.75516],
- [-74.028115, 40.760958],
- [-74.039469, 40.762629],
- [-74.037263, 40.754029],
- [-74.029609, 40.745046],
- [-74.023763, 40.739356],
- [-74.0198, 40.735787],
- [-74.017021, 40.733389],
- [-74.014966, 40.731665],
- [-74.013373, 40.730354],
- [-74.012085, 40.72931],
- [-74.011007, 40.728447],
- [-74.010077, 40.72771],
- [-74.009252, 40.727062],
- [-74.008504, 40.726479],
- [-74.00781, 40.725941],
- [-74.007152, 40.725435],
- [-74.006517, 40.724949],
- [-74.005891, 40.724474],
- [-74.005264, 40.724],
- [-74.004623, 40.723519],
- [-74.003955, 40.72302],
- [-74.003246, 40.722494],
- [-74.002476, 40.721927],
- [-74.001621, 40.721303],
- [-74.000648, 40.720598],
- [-73.999509, 40.719781],
- [-73.998132, 40.718805],
- [-73.996402, 40.717598],
- [-73.994127, 40.716041],
- [-73.990963, 40.713935],
- [-73.986254, 40.710933],
- [-73.978748, 40.706504],
- [-73.966896, 40.700706],
- [-73.955551, 40.699037]
+ [-74.048906, 40.753305],
+ [-74.046231, 40.754485],
+ [-74.042723, 40.754576],
+ [-74.038908, 40.754169],
+ [-74.034964, 40.753466],
+ [-74.03098, 40.752566],
+ [-74.027004, 40.751529],
+ [-74.023069, 40.750393],
+ [-74.019195, 40.749186],
+ [-74.015397, 40.747927],
+ [-74.011687, 40.746631],
+ [-74.008071, 40.745311],
+ [-74.004556, 40.743976],
+ [-74.001145, 40.742634],
+ [-73.997842, 40.74129],
+ [-73.994648, 40.739951],
+ [-73.991565, 40.738621],
+ [-73.988504, 40.737263],
+ [-73.985377, 40.735837],
+ [-73.98219, 40.734341],
+ [-73.978951, 40.732774],
+ [-73.975668, 40.731134],
+ [-73.972353, 40.729422],
+ [-73.969018, 40.727635],
+ [-73.965681, 40.725773],
+ [-73.962365, 40.723834],
+ [-73.959101, 40.72182],
+ [-73.955929, 40.71973],
+ [-73.95291, 40.717566],
+ [-73.950136, 40.715331],
+ [-73.947765, 40.713031],
+ [-73.946117, 40.710684],
+ [-73.946128, 40.708339],
+ [-73.948803, 40.707161],
+ [-73.95231, 40.707072],
+ [-73.956122, 40.707482],
+ [-73.960061, 40.708188],
+ [-73.964042, 40.70909],
+ [-73.968014, 40.710129],
+ [-73.971946, 40.711267],
+ [-73.975817, 40.712476],
+ [-73.979612, 40.713736],
+ [-73.98332, 40.715033],
+ [-73.986933, 40.716354],
+ [-73.990447, 40.717689],
+ [-73.993856, 40.719032],
+ [-73.997158, 40.720376],
+ [-74.000351, 40.721715],
+ [-74.003433, 40.723045],
+ [-74.006494, 40.724402],
+ [-74.009621, 40.725828],
+ [-74.012808, 40.727323],
+ [-74.016048, 40.728889],
+ [-74.019331, 40.730527],
+ [-74.022648, 40.732239],
+ [-74.025985, 40.734024],
+ [-74.029324, 40.735885],
+ [-74.032642, 40.737821],
+ [-74.035909, 40.739833],
+ [-74.039085, 40.741921],
+ [-74.042108, 40.744083],
+ [-74.044886, 40.746316],
+ [-74.047261, 40.748613],
+ [-74.048915, 40.75096],
+ [-74.048906, 40.753305]
]
]
}
@@ -259,71 +187,71 @@
"type": "Polygon",
"coordinates": [
[
- [-74.039449, 40.699037],
- [-74.028101, 40.700708],
- [-74.01625, 40.706506],
- [-74.008743, 40.710934],
- [-74.004035, 40.713936],
- [-74.000871, 40.716042],
- [-73.998597, 40.717599],
- [-73.996867, 40.718806],
- [-73.99549, 40.719782],
- [-73.994351, 40.720598],
- [-73.993378, 40.721303],
- [-73.992524, 40.721927],
- [-73.991754, 40.722494],
- [-73.991044, 40.72302],
- [-73.990377, 40.723519],
- [-73.989736, 40.724],
- [-73.989109, 40.724474],
- [-73.988483, 40.724949],
- [-73.987848, 40.725435],
- [-73.987191, 40.725941],
- [-73.986496, 40.726478],
- [-73.985748, 40.727062],
- [-73.984924, 40.727709],
- [-73.983994, 40.728447],
- [-73.982916, 40.72931],
- [-73.981629, 40.730353],
- [-73.980035, 40.731664],
- [-73.977981, 40.733388],
- [-73.975202, 40.735786],
- [-73.971239, 40.739354],
- [-73.965394, 40.745044],
- [-73.957739, 40.754027],
- [-73.955531, 40.762629],
- [-73.966882, 40.76096],
- [-73.978741, 40.755162],
- [-73.986251, 40.750733],
- [-73.990961, 40.747731],
- [-73.994126, 40.745625],
- [-73.996402, 40.744068],
- [-73.998132, 40.742861],
- [-73.999509, 40.741885],
- [-74.000649, 40.741068],
- [-74.001622, 40.740363],
- [-74.002477, 40.739739],
- [-74.003247, 40.739172],
- [-74.003956, 40.738646],
- [-74.004624, 40.738147],
- [-74.005265, 40.737666],
- [-74.005892, 40.737192],
- [-74.006518, 40.736717],
- [-74.007153, 40.736231],
- [-74.00781, 40.735725],
- [-74.008505, 40.735187],
- [-74.009253, 40.734604],
- [-74.010077, 40.733956],
- [-74.011007, 40.733219],
- [-74.012085, 40.732356],
- [-74.013373, 40.731312],
- [-74.014966, 40.730001],
- [-74.01702, 40.728277],
- [-74.019798, 40.725879],
- [-74.02376, 40.72231],
- [-74.029602, 40.71662],
- [-74.037249, 40.707637],
- [-74.039449, 40.699037]
+ [-73.967813, 40.769771],
+ [-73.966257, 40.767744],
+ [-73.96614, 40.765085],
+ [-73.96668, 40.762196],
+ [-73.967612, 40.759209],
+ [-73.968803, 40.756192],
+ [-73.970174, 40.753181],
+ [-73.971676, 40.7502],
+ [-73.973272, 40.747266],
+ [-73.974936, 40.74439],
+ [-73.976647, 40.741579],
+ [-73.978391, 40.73884],
+ [-73.980154, 40.736178],
+ [-73.981926, 40.733594],
+ [-73.9837, 40.731091],
+ [-73.985467, 40.728672],
+ [-73.987223, 40.726336],
+ [-73.989015, 40.724016],
+ [-73.990897, 40.721647],
+ [-73.992871, 40.719232],
+ [-73.994938, 40.716777],
+ [-73.9971, 40.714289],
+ [-73.999358, 40.711776],
+ [-74.001714, 40.709248],
+ [-74.00417, 40.706719],
+ [-74.006725, 40.704205],
+ [-74.00938, 40.70173],
+ [-74.012135, 40.699325],
+ [-74.014987, 40.697036],
+ [-74.017934, 40.694931],
+ [-74.020965, 40.693132],
+ [-74.024059, 40.691881],
+ [-74.027152, 40.691887],
+ [-74.028708, 40.693914],
+ [-74.028828, 40.696572],
+ [-74.028291, 40.699462],
+ [-74.027363, 40.702449],
+ [-74.026176, 40.705467],
+ [-74.024807, 40.708479],
+ [-74.023309, 40.71146],
+ [-74.021716, 40.714395],
+ [-74.020055, 40.717272],
+ [-74.018346, 40.720083],
+ [-74.016605, 40.722822],
+ [-74.014843, 40.725486],
+ [-74.013072, 40.72807],
+ [-74.0113, 40.730573],
+ [-74.009533, 40.732993],
+ [-74.007778, 40.735329],
+ [-74.005987, 40.737649],
+ [-74.004105, 40.740019],
+ [-74.002131, 40.742434],
+ [-74.000063, 40.744889],
+ [-73.997901, 40.747377],
+ [-73.995641, 40.74989],
+ [-73.993283, 40.752417],
+ [-73.990825, 40.754946],
+ [-73.988268, 40.75746],
+ [-73.98561, 40.759934],
+ [-73.982851, 40.762339],
+ [-73.979995, 40.764628],
+ [-73.977044, 40.766731],
+ [-73.974009, 40.768529],
+ [-73.970909, 40.769779],
+ [-73.967813, 40.769771]
]
]
}
diff --git a/packages/turf-ellipse/test/out/simple-degrees.json b/packages/turf-ellipse/test/out/simple-degrees.json
index 56edf01da..1fc0881a2 100644
--- a/packages/turf-ellipse/test/out/simple-degrees.json
+++ b/packages/turf-ellipse/test/out/simple-degrees.json
@@ -1,72 +1,6 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [-80.59569231663727, 39.730833, -67.39930768336274, 41.730833],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-80.59569231663727, 39.730833],
- [-67.39930768336274, 39.730833],
- [-67.39930768336274, 41.730833],
- [-80.59569231663727, 41.730833],
- [-80.59569231663727, 39.730833]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [-75.31713846332747, 35.730833, -72.67786153667254, 45.730833],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-75.31713846332747, 35.730833],
- [-72.67786153667254, 35.730833],
- [-72.67786153667254, 45.730833],
- [-75.31713846332747, 45.730833],
- [-75.31713846332747, 35.730833]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [-80.59569231663727, 35.730833, -67.39930768336274, 45.730833],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-80.59569231663727, 35.730833],
- [-67.39930768336274, 35.730833],
- [-67.39930768336274, 45.730833],
- [-80.59569231663727, 45.730833],
- [-80.59569231663727, 35.730833]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
@@ -172,71 +106,71 @@
"type": "Polygon",
"coordinates": [
[
- [-68.9975, 40.730833],
- [-69.511912, 41.172625],
- [-70.45234, 41.436009],
- [-71.245291, 41.565707],
- [-71.823448, 41.631355],
- [-72.245276, 41.667416],
- [-72.563744, 41.688838],
- [-72.813644, 41.702398],
- [-73.016919, 41.711414],
- [-73.187658, 41.717629],
- [-73.335209, 41.722022],
- [-73.466017, 41.725167],
- [-73.584701, 41.727419],
- [-73.69471, 41.728998],
- [-73.798745, 41.730043],
- [-73.899028, 41.730639],
+ [-80.583334, 40.543359],
+ [-80.434982, 40.778295],
+ [-80.118789, 40.952109],
+ [-79.731663, 41.0934],
+ [-79.306767, 41.211904],
+ [-78.860567, 41.312527],
+ [-78.402775, 41.398261],
+ [-77.939728, 41.471161],
+ [-77.475834, 41.532755],
+ [-77.014306, 41.584252],
+ [-76.557557, 41.626646],
+ [-76.10744, 41.660784],
+ [-75.6654, 41.687402],
+ [-75.232575, 41.707154],
+ [-74.809867, 41.720628],
+ [-74.397988, 41.728358],
[-73.9975, 41.730833],
- [-74.095972, 41.730639],
- [-74.196255, 41.730043],
- [-74.30029, 41.728998],
- [-74.410299, 41.727419],
- [-74.528983, 41.725167],
- [-74.659791, 41.722022],
- [-74.807342, 41.717629],
- [-74.978081, 41.711414],
- [-75.181356, 41.702398],
- [-75.431256, 41.688838],
- [-75.749724, 41.667416],
- [-76.171552, 41.631355],
- [-76.749709, 41.565707],
- [-77.54266, 41.436009],
- [-78.483088, 41.172625],
- [-78.9975, 40.730833],
- [-78.483088, 40.289041],
- [-77.54266, 40.025657],
- [-76.749709, 39.895959],
- [-76.171552, 39.830311],
- [-75.749724, 39.79425],
- [-75.431256, 39.772828],
- [-75.181356, 39.759268],
- [-74.978081, 39.750252],
- [-74.807342, 39.744037],
- [-74.659791, 39.739644],
- [-74.528983, 39.736499],
- [-74.410299, 39.734247],
- [-74.30029, 39.732668],
- [-74.196255, 39.731623],
- [-74.095972, 39.731027],
+ [-73.597012, 41.728358],
+ [-73.185133, 41.720628],
+ [-72.762425, 41.707154],
+ [-72.3296, 41.687402],
+ [-71.88756, 41.660784],
+ [-71.437443, 41.626646],
+ [-70.980694, 41.584252],
+ [-70.519166, 41.532755],
+ [-70.055272, 41.471161],
+ [-69.592225, 41.398261],
+ [-69.134433, 41.312527],
+ [-68.688233, 41.211904],
+ [-68.263337, 41.0934],
+ [-67.876211, 40.952109],
+ [-67.560018, 40.778295],
+ [-67.411666, 40.543359],
+ [-67.603386, 40.327569],
+ [-67.945847, 40.189403],
+ [-68.349157, 40.088399],
+ [-68.783101, 40.010585],
+ [-69.232966, 39.948999],
+ [-69.690255, 39.899533],
+ [-70.149548, 39.859515],
+ [-70.607154, 39.827093],
+ [-71.060448, 39.800922],
+ [-71.507502, 39.779994],
+ [-71.946867, 39.763537],
+ [-72.377441, 39.750943],
+ [-72.798375, 39.74173],
+ [-73.209014, 39.73551],
+ [-73.608852, 39.731964],
[-73.9975, 39.730833],
- [-73.899028, 39.731027],
- [-73.798745, 39.731623],
- [-73.69471, 39.732668],
- [-73.584701, 39.734247],
- [-73.466017, 39.736499],
- [-73.335209, 39.739644],
- [-73.187658, 39.744037],
- [-73.016919, 39.750252],
- [-72.813644, 39.759268],
- [-72.563744, 39.772828],
- [-72.245276, 39.79425],
- [-71.823448, 39.830311],
- [-71.245291, 39.895959],
- [-70.45234, 40.025657],
- [-69.511912, 40.289041],
- [-68.9975, 40.730833]
+ [-74.386148, 39.731964],
+ [-74.785986, 39.73551],
+ [-75.196625, 39.74173],
+ [-75.617559, 39.750943],
+ [-76.048133, 39.763537],
+ [-76.487498, 39.779994],
+ [-76.934552, 39.800922],
+ [-77.387846, 39.827093],
+ [-77.845452, 39.859515],
+ [-78.304745, 39.899533],
+ [-78.762034, 39.948999],
+ [-79.211899, 40.010585],
+ [-79.645843, 40.088399],
+ [-80.049153, 40.189403],
+ [-80.391614, 40.327569],
+ [-80.583334, 40.543359]
]
]
}
@@ -253,71 +187,71 @@
"type": "Polygon",
"coordinates": [
[
- [-73.9975, 35.730833],
- [-73.555708, 36.245245],
- [-73.292324, 37.185673],
- [-73.162626, 37.978624],
- [-73.096978, 38.556781],
- [-73.060917, 38.978609],
- [-73.039495, 39.297077],
- [-73.025935, 39.546977],
- [-73.016919, 39.750252],
- [-73.010704, 39.920991],
- [-73.006311, 40.068542],
- [-73.003166, 40.19935],
- [-73.000914, 40.318034],
- [-72.999335, 40.428043],
- [-72.99829, 40.532078],
- [-72.997694, 40.632361],
- [-72.9975, 40.730833],
- [-72.997694, 40.829305],
- [-72.99829, 40.929588],
- [-72.999335, 41.033623],
- [-73.000914, 41.143632],
- [-73.003166, 41.262316],
- [-73.006311, 41.393124],
- [-73.010704, 41.540675],
- [-73.016919, 41.711414],
- [-73.025935, 41.914689],
- [-73.039495, 42.164589],
- [-73.060917, 42.483057],
- [-73.096978, 42.904885],
- [-73.162626, 43.483042],
- [-73.292324, 44.275993],
- [-73.555708, 45.216421],
[-73.9975, 45.730833],
- [-74.439292, 45.216421],
- [-74.702676, 44.275993],
- [-74.832374, 43.483042],
- [-74.898022, 42.904885],
- [-74.934083, 42.483057],
- [-74.955505, 42.164589],
- [-74.969065, 41.914689],
- [-74.978081, 41.711414],
- [-74.984296, 41.540675],
- [-74.988689, 41.393124],
- [-74.991834, 41.262316],
- [-74.994086, 41.143632],
- [-74.995665, 41.033623],
- [-74.99671, 40.929588],
- [-74.997306, 40.829305],
- [-74.9975, 40.730833],
- [-74.997306, 40.632361],
- [-74.99671, 40.532078],
- [-74.995665, 40.428043],
- [-74.994086, 40.318034],
- [-74.991834, 40.19935],
- [-74.988689, 40.068542],
- [-74.984296, 39.920991],
- [-74.978081, 39.750252],
- [-74.969065, 39.546977],
- [-74.955505, 39.297077],
- [-74.934083, 38.978609],
- [-74.898022, 38.556781],
- [-74.832374, 37.978624],
- [-74.702676, 37.185673],
- [-74.439292, 36.245245],
- [-73.9975, 35.730833]
+ [-73.674533, 45.600765],
+ [-73.453563, 45.349008],
+ [-73.284769, 45.04715],
+ [-73.150635, 44.719483],
+ [-73.042184, 44.377943],
+ [-72.953933, 44.029476],
+ [-72.882164, 43.678549],
+ [-72.824183, 43.328221],
+ [-72.777941, 42.980686],
+ [-72.741824, 42.637559],
+ [-72.714527, 42.300063],
+ [-72.694972, 41.969133],
+ [-72.682254, 41.645492],
+ [-72.675606, 41.329702],
+ [-72.674366, 41.022199],
+ [-72.677961, 40.723319],
+ [-72.686198, 40.424493],
+ [-72.699476, 40.117156],
+ [-72.718202, 39.801652],
+ [-72.742835, 39.478429],
+ [-72.773905, 39.148055],
+ [-72.812033, 38.81126],
+ [-72.857956, 38.468986],
+ [-72.912575, 38.122458],
+ [-72.977017, 37.773294],
+ [-73.052734, 37.423681],
+ [-73.141681, 37.076667],
+ [-73.246627, 36.736695],
+ [-73.371792, 36.410667],
+ [-73.524324, 36.110436],
+ [-73.718686, 35.860124],
+ [-73.9975, 35.730833],
+ [-74.276314, 35.860124],
+ [-74.470676, 36.110436],
+ [-74.623208, 36.410667],
+ [-74.748373, 36.736695],
+ [-74.853319, 37.076667],
+ [-74.942266, 37.423681],
+ [-75.017983, 37.773294],
+ [-75.082425, 38.122458],
+ [-75.137044, 38.468986],
+ [-75.182967, 38.81126],
+ [-75.221095, 39.148055],
+ [-75.252165, 39.478429],
+ [-75.276798, 39.801652],
+ [-75.295524, 40.117156],
+ [-75.308802, 40.424493],
+ [-75.317039, 40.723319],
+ [-75.320634, 41.022199],
+ [-75.319394, 41.329702],
+ [-75.312746, 41.645492],
+ [-75.300028, 41.969133],
+ [-75.280473, 42.300063],
+ [-75.253176, 42.637559],
+ [-75.217059, 42.980686],
+ [-75.170817, 43.328221],
+ [-75.112836, 43.678549],
+ [-75.041067, 44.029476],
+ [-74.952816, 44.377943],
+ [-74.844365, 44.719483],
+ [-74.710231, 45.04715],
+ [-74.541437, 45.349008],
+ [-74.320467, 45.600765],
+ [-73.9975, 45.730833]
]
]
}
diff --git a/packages/turf-ellipse/test/out/simple-with-elevation.json b/packages/turf-ellipse/test/out/simple-with-elevation.json
new file mode 100644
index 000000000..7316bb4b2
--- /dev/null
+++ b/packages/turf-ellipse/test/out/simple-with-elevation.json
@@ -0,0 +1,259 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "xSemiAxis": 5,
+ "ySemiAxis": 1
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9975, 40.730833, 120]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "stroke-width": 6,
+ "stroke": "#F00",
+ "fill": "#F00",
+ "fill-opacity": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.9975, 40.775799, 120],
+ [-74.00332, 40.775582, 120],
+ [-74.009084, 40.774934, 120],
+ [-74.014736, 40.773862, 120],
+ [-74.020222, 40.772374, 120],
+ [-74.025489, 40.770486, 120],
+ [-74.030485, 40.768216, 120],
+ [-74.035164, 40.765586, 120],
+ [-74.039479, 40.762621, 120],
+ [-74.043389, 40.75935, 120],
+ [-74.046857, 40.755804, 120],
+ [-74.049849, 40.752018, 120],
+ [-74.052336, 40.748028, 120],
+ [-74.054295, 40.743872, 120],
+ [-74.055706, 40.739591, 120],
+ [-74.056557, 40.735225, 120],
+ [-74.056839, 40.730818, 120],
+ [-74.056549, 40.726411, 120],
+ [-74.055691, 40.722046, 120],
+ [-74.054273, 40.717766, 120],
+ [-74.052308, 40.713612, 120],
+ [-74.049816, 40.709624, 120],
+ [-74.04682, 40.705841, 120],
+ [-74.04335, 40.702298, 120],
+ [-74.039439, 40.69903, 120],
+ [-74.035125, 40.696068, 120],
+ [-74.030448, 40.69344, 120],
+ [-74.025456, 40.691173, 120],
+ [-74.020194, 40.689288, 120],
+ [-74.014714, 40.687802, 120],
+ [-74.009069, 40.68673, 120],
+ [-74.003312, 40.686083, 120],
+ [-73.9975, 40.685867, 120],
+ [-73.991688, 40.686083, 120],
+ [-73.985931, 40.68673, 120],
+ [-73.980286, 40.687802, 120],
+ [-73.974806, 40.689288, 120],
+ [-73.969544, 40.691173, 120],
+ [-73.964552, 40.69344, 120],
+ [-73.959875, 40.696068, 120],
+ [-73.955561, 40.69903, 120],
+ [-73.95165, 40.702298, 120],
+ [-73.94818, 40.705841, 120],
+ [-73.945184, 40.709624, 120],
+ [-73.942692, 40.713612, 120],
+ [-73.940727, 40.717766, 120],
+ [-73.939309, 40.722046, 120],
+ [-73.938451, 40.726411, 120],
+ [-73.938161, 40.730818, 120],
+ [-73.938443, 40.735225, 120],
+ [-73.939294, 40.739591, 120],
+ [-73.940705, 40.743872, 120],
+ [-73.942664, 40.748028, 120],
+ [-73.945151, 40.752018, 120],
+ [-73.948143, 40.755804, 120],
+ [-73.951611, 40.75935, 120],
+ [-73.955521, 40.762621, 120],
+ [-73.959836, 40.765586, 120],
+ [-73.964515, 40.768216, 120],
+ [-73.969511, 40.770486, 120],
+ [-73.974778, 40.772374, 120],
+ [-73.980264, 40.773862, 120],
+ [-73.985916, 40.774934, 120],
+ [-73.99168, 40.775582, 120],
+ [-73.9975, 40.775799, 120]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "stroke-width": 6,
+ "stroke": "#00F",
+ "fill": "#00F",
+ "fill-opacity": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.056839, 40.730818, 120],
+ [-74.055302, 40.732853, 120],
+ [-74.052325, 40.734262, 120],
+ [-74.048754, 40.735355, 120],
+ [-74.044876, 40.736239, 120],
+ [-74.040832, 40.73697, 120],
+ [-74.036706, 40.737578, 120],
+ [-74.032549, 40.738085, 120],
+ [-74.028398, 40.738507, 120],
+ [-74.024279, 40.738856, 120],
+ [-74.020211, 40.739139, 120],
+ [-74.016209, 40.739366, 120],
+ [-74.012284, 40.739542, 120],
+ [-74.008444, 40.739671, 120],
+ [-74.004697, 40.73976, 120],
+ [-74.001048, 40.73981, 120],
+ [-73.9975, 40.739826, 120],
+ [-73.993952, 40.73981, 120],
+ [-73.990303, 40.73976, 120],
+ [-73.986556, 40.739671, 120],
+ [-73.982716, 40.739542, 120],
+ [-73.978791, 40.739366, 120],
+ [-73.974789, 40.739139, 120],
+ [-73.970721, 40.738856, 120],
+ [-73.966602, 40.738507, 120],
+ [-73.962451, 40.738085, 120],
+ [-73.958294, 40.737578, 120],
+ [-73.954168, 40.73697, 120],
+ [-73.950124, 40.736239, 120],
+ [-73.946246, 40.735355, 120],
+ [-73.942675, 40.734262, 120],
+ [-73.939698, 40.732853, 120],
+ [-73.938161, 40.730818, 120],
+ [-73.939701, 40.728784, 120],
+ [-73.942681, 40.727378, 120],
+ [-73.946253, 40.726289, 120],
+ [-73.950132, 40.725407, 120],
+ [-73.954176, 40.72468, 120],
+ [-73.958302, 40.724075, 120],
+ [-73.962459, 40.72357, 120],
+ [-73.966609, 40.723151, 120],
+ [-73.970728, 40.722804, 120],
+ [-73.974795, 40.722522, 120],
+ [-73.978796, 40.722297, 120],
+ [-73.98272, 40.722122, 120],
+ [-73.986559, 40.721994, 120],
+ [-73.990305, 40.721906, 120],
+ [-73.993953, 40.721856, 120],
+ [-73.9975, 40.72184, 120],
+ [-74.001047, 40.721856, 120],
+ [-74.004695, 40.721906, 120],
+ [-74.008441, 40.721994, 120],
+ [-74.01228, 40.722122, 120],
+ [-74.016204, 40.722297, 120],
+ [-74.020205, 40.722522, 120],
+ [-74.024272, 40.722804, 120],
+ [-74.028391, 40.723151, 120],
+ [-74.032541, 40.72357, 120],
+ [-74.036698, 40.724075, 120],
+ [-74.040824, 40.72468, 120],
+ [-74.044868, 40.725407, 120],
+ [-74.048747, 40.726289, 120],
+ [-74.052319, 40.727378, 120],
+ [-74.055299, 40.728784, 120],
+ [-74.056839, 40.730818, 120]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "stroke-width": 6,
+ "stroke": "#0F0",
+ "fill": "#0F0",
+ "fill-opacity": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.9975, 40.775799, 120],
+ [-73.994813, 40.774633, 120],
+ [-73.992956, 40.772376, 120],
+ [-73.991515, 40.769669, 120],
+ [-73.990349, 40.76673, 120],
+ [-73.989387, 40.763666, 120],
+ [-73.988587, 40.760539, 120],
+ [-73.987919, 40.757389, 120],
+ [-73.987364, 40.754244, 120],
+ [-73.986906, 40.751122, 120],
+ [-73.986533, 40.74804, 120],
+ [-73.986235, 40.745008, 120],
+ [-73.986004, 40.742034, 120],
+ [-73.985834, 40.739125, 120],
+ [-73.985719, 40.736286, 120],
+ [-73.985653, 40.73352, 120],
+ [-73.985632, 40.730832, 120],
+ [-73.985654, 40.728144, 120],
+ [-73.985721, 40.725379, 120],
+ [-73.985837, 40.72254, 120],
+ [-73.986008, 40.719631, 120],
+ [-73.98624, 40.716657, 120],
+ [-73.986538, 40.713625, 120],
+ [-73.986912, 40.710543, 120],
+ [-73.987371, 40.707422, 120],
+ [-73.987927, 40.704276, 120],
+ [-73.988595, 40.701126, 120],
+ [-73.989395, 40.697999, 120],
+ [-73.990357, 40.694935, 120],
+ [-73.991522, 40.691996, 120],
+ [-73.992961, 40.68929, 120],
+ [-73.994817, 40.687033, 120],
+ [-73.9975, 40.685867, 120],
+ [-74.000183, 40.687033, 120],
+ [-74.002039, 40.68929, 120],
+ [-74.003478, 40.691996, 120],
+ [-74.004643, 40.694935, 120],
+ [-74.005605, 40.697999, 120],
+ [-74.006405, 40.701126, 120],
+ [-74.007073, 40.704276, 120],
+ [-74.007629, 40.707422, 120],
+ [-74.008088, 40.710543, 120],
+ [-74.008462, 40.713625, 120],
+ [-74.00876, 40.716657, 120],
+ [-74.008992, 40.719631, 120],
+ [-74.009163, 40.72254, 120],
+ [-74.009279, 40.725379, 120],
+ [-74.009346, 40.728144, 120],
+ [-74.009368, 40.730832, 120],
+ [-74.009347, 40.73352, 120],
+ [-74.009281, 40.736286, 120],
+ [-74.009166, 40.739125, 120],
+ [-74.008996, 40.742034, 120],
+ [-74.008765, 40.745008, 120],
+ [-74.008467, 40.74804, 120],
+ [-74.008094, 40.751122, 120],
+ [-74.007636, 40.754244, 120],
+ [-74.007081, 40.757389, 120],
+ [-74.006413, 40.760539, 120],
+ [-74.005613, 40.763666, 120],
+ [-74.004651, 40.76673, 120],
+ [-74.003485, 40.769669, 120],
+ [-74.002044, 40.772376, 120],
+ [-74.000187, 40.774633, 120],
+ [-73.9975, 40.775799, 120]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-ellipse/test/out/simple.json b/packages/turf-ellipse/test/out/simple.json
index 5f440dcd4..0f743d136 100644
--- a/packages/turf-ellipse/test/out/simple.json
+++ b/packages/turf-ellipse/test/out/simple.json
@@ -1,78 +1,6 @@
{
"type": "FeatureCollection",
"features": [
- {
- "type": "Feature",
- "bbox": [
- -74.05683888714123, 40.72183979636275, -73.93816111285878, 40.73982620363724
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#FFF",
- "fill": "#FFF",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.05683888714123, 40.72183979636275],
- [-73.93816111285878, 40.72183979636275],
- [-73.93816111285878, 40.73982620363724],
- [-74.05683888714123, 40.73982620363724],
- [-74.05683888714123, 40.72183979636275]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -74.00936777742822, 40.68586698181377, -73.98563222257178, 40.77579901818623
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#666",
- "fill": "#666",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.00936777742822, 40.68586698181377],
- [-73.98563222257178, 40.68586698181377],
- [-73.98563222257178, 40.77579901818623],
- [-74.00936777742822, 40.77579901818623],
- [-74.00936777742822, 40.68586698181377]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "bbox": [
- -74.05683888714123, 40.68586698181377, -73.93816111285878, 40.77579901818623
- ],
- "properties": {
- "stroke-width": 6,
- "stroke": "#000",
- "fill": "#000",
- "fill-opacity": 0
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-74.05683888714123, 40.68586698181377],
- [-73.93816111285878, 40.68586698181377],
- [-73.93816111285878, 40.77579901818623],
- [-74.05683888714123, 40.77579901818623],
- [-74.05683888714123, 40.68586698181377]
- ]
- ]
- }
- },
{
"type": "Feature",
"properties": {
@@ -177,71 +105,71 @@
"type": "Polygon",
"coordinates": [
[
- [-73.938161, 40.730833],
- [-73.947745, 40.735733],
- [-73.961537, 40.737986],
- [-73.970979, 40.738878],
- [-73.97711, 40.739279],
- [-73.981313, 40.739485],
- [-73.984374, 40.739603],
- [-73.986724, 40.739677],
- [-73.988608, 40.739725],
- [-73.990176, 40.739757],
- [-73.991522, 40.73978],
- [-73.992709, 40.739797],
- [-73.993782, 40.739809],
- [-73.994775, 40.739817],
- [-73.995712, 40.739822],
- [-73.996614, 40.739825],
+ [-74.056839, 40.730818],
+ [-74.055302, 40.732853],
+ [-74.052325, 40.734262],
+ [-74.048754, 40.735355],
+ [-74.044876, 40.736239],
+ [-74.040832, 40.73697],
+ [-74.036706, 40.737578],
+ [-74.032549, 40.738085],
+ [-74.028398, 40.738507],
+ [-74.024279, 40.738856],
+ [-74.020211, 40.739139],
+ [-74.016209, 40.739366],
+ [-74.012284, 40.739542],
+ [-74.008444, 40.739671],
+ [-74.004697, 40.73976],
+ [-74.001048, 40.73981],
[-73.9975, 40.739826],
- [-73.998386, 40.739825],
- [-73.999288, 40.739822],
- [-74.000225, 40.739817],
- [-74.001218, 40.739809],
- [-74.002291, 40.739797],
- [-74.003478, 40.73978],
- [-74.004824, 40.739757],
- [-74.006392, 40.739725],
- [-74.008276, 40.739677],
- [-74.010626, 40.739603],
- [-74.013687, 40.739485],
- [-74.01789, 40.739279],
- [-74.024021, 40.738878],
- [-74.033463, 40.737986],
- [-74.047255, 40.735733],
- [-74.056839, 40.730833],
- [-74.047255, 40.725933],
- [-74.033463, 40.72368],
- [-74.024021, 40.722788],
- [-74.01789, 40.722387],
- [-74.013687, 40.722181],
- [-74.010626, 40.722063],
- [-74.008276, 40.721989],
- [-74.006392, 40.721941],
- [-74.004824, 40.721909],
- [-74.003478, 40.721886],
- [-74.002291, 40.721869],
- [-74.001218, 40.721857],
- [-74.000225, 40.721849],
- [-73.999288, 40.721844],
- [-73.998386, 40.721841],
+ [-73.993952, 40.73981],
+ [-73.990303, 40.73976],
+ [-73.986556, 40.739671],
+ [-73.982716, 40.739542],
+ [-73.978791, 40.739366],
+ [-73.974789, 40.739139],
+ [-73.970721, 40.738856],
+ [-73.966602, 40.738507],
+ [-73.962451, 40.738085],
+ [-73.958294, 40.737578],
+ [-73.954168, 40.73697],
+ [-73.950124, 40.736239],
+ [-73.946246, 40.735355],
+ [-73.942675, 40.734262],
+ [-73.939698, 40.732853],
+ [-73.938161, 40.730818],
+ [-73.939701, 40.728784],
+ [-73.942681, 40.727378],
+ [-73.946253, 40.726289],
+ [-73.950132, 40.725407],
+ [-73.954176, 40.72468],
+ [-73.958302, 40.724075],
+ [-73.962459, 40.72357],
+ [-73.966609, 40.723151],
+ [-73.970728, 40.722804],
+ [-73.974795, 40.722522],
+ [-73.978796, 40.722297],
+ [-73.98272, 40.722122],
+ [-73.986559, 40.721994],
+ [-73.990305, 40.721906],
+ [-73.993953, 40.721856],
[-73.9975, 40.72184],
- [-73.996614, 40.721841],
- [-73.995712, 40.721844],
- [-73.994775, 40.721849],
- [-73.993782, 40.721857],
- [-73.992709, 40.721869],
- [-73.991522, 40.721886],
- [-73.990176, 40.721909],
- [-73.988608, 40.721941],
- [-73.986724, 40.721989],
- [-73.984374, 40.722063],
- [-73.981313, 40.722181],
- [-73.97711, 40.722387],
- [-73.970979, 40.722788],
- [-73.961537, 40.72368],
- [-73.947745, 40.725933],
- [-73.938161, 40.730833]
+ [-74.001047, 40.721856],
+ [-74.004695, 40.721906],
+ [-74.008441, 40.721994],
+ [-74.01228, 40.722122],
+ [-74.016204, 40.722297],
+ [-74.020205, 40.722522],
+ [-74.024272, 40.722804],
+ [-74.028391, 40.723151],
+ [-74.032541, 40.72357],
+ [-74.036698, 40.724075],
+ [-74.040824, 40.72468],
+ [-74.044868, 40.725407],
+ [-74.048747, 40.726289],
+ [-74.052319, 40.727378],
+ [-74.055299, 40.728784],
+ [-74.056839, 40.730818]
]
]
}
@@ -258,71 +186,71 @@
"type": "Polygon",
"coordinates": [
[
- [-73.9975, 40.685867],
- [-73.991035, 40.693131],
- [-73.988062, 40.703583],
- [-73.986885, 40.710737],
- [-73.986356, 40.715383],
- [-73.986083, 40.718568],
- [-73.985927, 40.720887],
- [-73.98583, 40.722668],
- [-73.985767, 40.724095],
- [-73.985723, 40.725283],
- [-73.985693, 40.726303],
- [-73.985671, 40.727202],
- [-73.985656, 40.728016],
- [-73.985645, 40.728768],
- [-73.985638, 40.729478],
- [-73.985634, 40.730162],
- [-73.985632, 40.730833],
- [-73.985633, 40.731504],
- [-73.985637, 40.732188],
- [-73.985645, 40.732898],
- [-73.985655, 40.73365],
- [-73.985671, 40.734464],
- [-73.985692, 40.735363],
- [-73.985722, 40.736383],
- [-73.985766, 40.737571],
- [-73.985829, 40.738998],
- [-73.985925, 40.740779],
- [-73.986081, 40.743098],
- [-73.986354, 40.746283],
- [-73.986882, 40.750929],
- [-73.988058, 40.758083],
- [-73.991031, 40.768535],
[-73.9975, 40.775799],
- [-74.003969, 40.768538],
- [-74.006942, 40.758086],
- [-74.008118, 40.750931],
- [-74.008646, 40.746285],
- [-74.008919, 40.7431],
- [-74.009075, 40.74078],
- [-74.009171, 40.738999],
- [-74.009234, 40.737571],
- [-74.009278, 40.736383],
- [-74.009308, 40.735364],
- [-74.009329, 40.734464],
- [-74.009345, 40.73365],
- [-74.009355, 40.732898],
- [-74.009363, 40.732188],
- [-74.009367, 40.731504],
- [-74.009368, 40.730833],
- [-74.009366, 40.730162],
- [-74.009362, 40.729478],
- [-74.009355, 40.728768],
- [-74.009344, 40.728016],
- [-74.009329, 40.727202],
- [-74.009307, 40.726302],
- [-74.009277, 40.725283],
- [-74.009233, 40.724095],
- [-74.00917, 40.722667],
- [-74.009073, 40.720886],
- [-74.008917, 40.718566],
- [-74.008644, 40.715381],
- [-74.008115, 40.710735],
- [-74.006938, 40.70358],
- [-74.003965, 40.693128],
- [-73.9975, 40.685867]
+ [-73.994813, 40.774633],
+ [-73.992956, 40.772376],
+ [-73.991515, 40.769669],
+ [-73.990349, 40.76673],
+ [-73.989387, 40.763666],
+ [-73.988587, 40.760539],
+ [-73.987919, 40.757389],
+ [-73.987364, 40.754244],
+ [-73.986906, 40.751122],
+ [-73.986533, 40.74804],
+ [-73.986235, 40.745008],
+ [-73.986004, 40.742034],
+ [-73.985834, 40.739125],
+ [-73.985719, 40.736286],
+ [-73.985653, 40.73352],
+ [-73.985632, 40.730832],
+ [-73.985654, 40.728144],
+ [-73.985721, 40.725379],
+ [-73.985837, 40.72254],
+ [-73.986008, 40.719631],
+ [-73.98624, 40.716657],
+ [-73.986538, 40.713625],
+ [-73.986912, 40.710543],
+ [-73.987371, 40.707422],
+ [-73.987927, 40.704276],
+ [-73.988595, 40.701126],
+ [-73.989395, 40.697999],
+ [-73.990357, 40.694935],
+ [-73.991522, 40.691996],
+ [-73.992961, 40.68929],
+ [-73.994817, 40.687033],
+ [-73.9975, 40.685867],
+ [-74.000183, 40.687033],
+ [-74.002039, 40.68929],
+ [-74.003478, 40.691996],
+ [-74.004643, 40.694935],
+ [-74.005605, 40.697999],
+ [-74.006405, 40.701126],
+ [-74.007073, 40.704276],
+ [-74.007629, 40.707422],
+ [-74.008088, 40.710543],
+ [-74.008462, 40.713625],
+ [-74.00876, 40.716657],
+ [-74.008992, 40.719631],
+ [-74.009163, 40.72254],
+ [-74.009279, 40.725379],
+ [-74.009346, 40.728144],
+ [-74.009368, 40.730832],
+ [-74.009347, 40.73352],
+ [-74.009281, 40.736286],
+ [-74.009166, 40.739125],
+ [-74.008996, 40.742034],
+ [-74.008765, 40.745008],
+ [-74.008467, 40.74804],
+ [-74.008094, 40.751122],
+ [-74.007636, 40.754244],
+ [-74.007081, 40.757389],
+ [-74.006413, 40.760539],
+ [-74.005613, 40.763666],
+ [-74.004651, 40.76673],
+ [-74.003485, 40.769669],
+ [-74.002044, 40.772376],
+ [-74.000187, 40.774633],
+ [-73.9975, 40.775799]
]
]
}
diff --git a/packages/turf-envelope/index.ts b/packages/turf-envelope/index.ts
index 1db373e12..d8536289d 100644
--- a/packages/turf-envelope/index.ts
+++ b/packages/turf-envelope/index.ts
@@ -6,7 +6,7 @@ import { bboxPolygon } from "@turf/bbox-polygon";
/**
* Takes any number of features and returns a rectangular {@link Polygon} that encompasses all vertices.
*
- * @name envelope
+ * @function
* @param {GeoJSON} geojson input features
* @returns {Feature} a rectangular Polygon feature that encompasses all vertices
* @example
diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json
index 80d78aedd..dc34fe5cc 100644
--- a/packages/turf-envelope/package.json
+++ b/packages/turf-envelope/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/envelope",
- "version": "7.0.0",
- "description": "turf envelope module",
+ "version": "7.2.0",
+ "description": "Takes any number of features and returns a rectangular Polygon that encompasses all vertices.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -53,20 +53,20 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3"
},
"dependencies": {
- "@turf/bbox": "workspace:^",
- "@turf/bbox-polygon": "workspace:^",
- "@turf/helpers": "workspace:^",
+ "@turf/bbox": "workspace:*",
+ "@turf/bbox-polygon": "workspace:*",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-explode/index.ts b/packages/turf-explode/index.ts
index 2ca866bb6..407593269 100644
--- a/packages/turf-explode/index.ts
+++ b/packages/turf-explode/index.ts
@@ -6,7 +6,7 @@ import type { Feature, FeatureCollection, Point } from "geojson";
/**
* Takes a feature or set of features and returns all positions as {@link Point|points}.
*
- * @name explode
+ * @function
* @param {GeoJSON} geojson input features
* @returns {FeatureCollection} points representing the exploded input features
* @throws {Error} if it encounters an unknown geometry type
diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json
index cdf412625..b2de98d1b 100644
--- a/packages/turf-explode/package.json
+++ b/packages/turf-explode/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/explode",
- "version": "7.0.0",
- "description": "turf explode module",
+ "version": "7.2.0",
+ "description": "Takes a feature or set of features and returns all positions as points.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -52,20 +52,20 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-flatten/index.ts b/packages/turf-flatten/index.ts
index 3ed12e7aa..d2af980a4 100644
--- a/packages/turf-flatten/index.ts
+++ b/packages/turf-flatten/index.ts
@@ -15,7 +15,7 @@ import type {
/**
* Flattens any {@link GeoJSON} to a {@link FeatureCollection} inspired by [geojson-flatten](https://github.com/tmcw/geojson-flatten).
*
- * @name flatten
+ * @function
* @param {GeoJSON} geojson any valid GeoJSON Object
* @returns {FeatureCollection} all Multi-Geometries are flattened into single Features
* @example
diff --git a/packages/turf-flatten/package.json b/packages/turf-flatten/package.json
index 2f67d865b..a0a8a4214 100644
--- a/packages/turf-flatten/package.json
+++ b/packages/turf-flatten/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/flatten",
- "version": "7.0.0",
- "description": "turf flatten module",
+ "version": "7.2.0",
+ "description": "Flattens any GeoJSON to a FeatureCollection",
"author": "Turf Authors",
"contributors": [
"Tom MacWright <@tmcw>",
@@ -58,20 +58,20 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-flip/index.ts b/packages/turf-flip/index.ts
index a5e84bf35..ba53101a2 100644
--- a/packages/turf-flip/index.ts
+++ b/packages/turf-flip/index.ts
@@ -5,7 +5,7 @@ import { clone } from "@turf/clone";
/**
* Takes input features and flips all of their coordinates from `[x, y]` to `[y, x]`.
*
- * @name flip
+ * @function
* @param {GeoJSON} geojson input features
* @param {Object} [options={}] Optional parameters
* @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)
diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json
index abb93b2ad..d1d1a06c7 100644
--- a/packages/turf-flip/package.json
+++ b/packages/turf-flip/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/flip",
- "version": "7.0.0",
- "description": "turf flip module",
+ "version": "7.2.0",
+ "description": "Takes input features and flips all of their coordinates.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -53,21 +53,21 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/clone": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/clone": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-geojson-rbush/index.js b/packages/turf-geojson-rbush/index.js
index 55945bbf2..bae88b283 100644
--- a/packages/turf-geojson-rbush/index.js
+++ b/packages/turf-geojson-rbush/index.js
@@ -10,7 +10,7 @@ import { bbox as turfBBox } from "@turf/bbox";
/**
* GeoJSON implementation of [RBush](https://github.com/mourner/rbush#rbush) spatial index.
*
- * @name rbush
+ * @function rbush
* @param {number} [maxEntries=9] defines the maximum number of entries in a tree node. 9 (used by default) is a
* reasonable choice for most applications. Higher value means faster insertion and slower search, and vice versa.
* @returns {RBush} GeoJSON RBush
diff --git a/packages/turf-geojson-rbush/package.json b/packages/turf-geojson-rbush/package.json
index 0f26b3616..b4bebee21 100644
--- a/packages/turf-geojson-rbush/package.json
+++ b/packages/turf-geojson-rbush/package.json
@@ -1,6 +1,6 @@
{
"name": "@turf/geojson-rbush",
- "version": "7.0.0",
+ "version": "7.2.0",
"description": "GeoJSON implementation of RBush",
"author": "Turf Authors",
"contributors": [
@@ -58,23 +58,23 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/bbox-polygon": "workspace:^",
- "@turf/random": "workspace:^",
+ "@turf/bbox-polygon": "workspace:*",
+ "@turf/random": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/bbox": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/bbox": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
"rbush": "^3.0.1"
}
diff --git a/packages/turf-great-circle/README.md b/packages/turf-great-circle/README.md
index 8703e2577..30eae73ae 100644
--- a/packages/turf-great-circle/README.md
+++ b/packages/turf-great-circle/README.md
@@ -6,7 +6,8 @@
Calculate great circles routes as [LineString][1] or [MultiLineString][2].
If the `start` and `end` points span the antimeridian, the resulting feature will
-be split into a `MultiLineString`.
+be split into a `MultiLineString`. If the `start` and `end` positions are the same
+then a `LineString` will be returned with duplicate coordinates the length of the `npoints` option.
### Parameters
diff --git a/packages/turf-great-circle/index.js b/packages/turf-great-circle/index.js
index 8cbbeaeae..c7d36243e 100644
--- a/packages/turf-great-circle/index.js
+++ b/packages/turf-great-circle/index.js
@@ -1,12 +1,14 @@
+import { lineString } from "@turf/helpers";
import { getCoord } from "@turf/invariant";
import { GreatCircle } from "./lib/arc.js";
/**
* Calculate great circles routes as {@link LineString} or {@link MultiLineString}.
* If the `start` and `end` points span the antimeridian, the resulting feature will
- * be split into a `MultiLineString`.
+ * be split into a `MultiLineString`. If the `start` and `end` positions are the same
+ * then a `LineString` will be returned with duplicate coordinates the length of the `npoints` option.
*
- * @name greatCircle
+ * @function
* @param {Coord} start source point feature
* @param {Coord} end destination point feature
* @param {Object} [options={}] Optional parameters
@@ -34,8 +36,16 @@ function greatCircle(start, end, options) {
start = getCoord(start);
end = getCoord(end);
+
properties = properties || {};
npoints = npoints || 100;
+
+ if (start[0] === end[0] && start[1] === end[1]) {
+ const arr = Array(npoints);
+ arr.fill([start[0], start[1]]);
+ return lineString(arr, properties);
+ }
+
offset = offset || 10;
var generator = new GreatCircle(
diff --git a/packages/turf-great-circle/lib/arc.js b/packages/turf-great-circle/lib/arc.js
index 4fac7e86e..1c6639579 100644
--- a/packages/turf-great-circle/lib/arc.js
+++ b/packages/turf-great-circle/lib/arc.js
@@ -135,9 +135,9 @@ var GreatCircle = function (start, end, properties) {
if (this.g === Math.PI) {
throw new Error(
"it appears " +
- start.view() +
+ this.start.view() +
" and " +
- end.view() +
+ this.end.view() +
" are 'antipodal', e.g diametrically opposite, thus there is no single route but rather infinite"
);
} else if (isNaN(this.g)) {
diff --git a/packages/turf-great-circle/package.json b/packages/turf-great-circle/package.json
index 917e6e54c..9910a67ea 100644
--- a/packages/turf-great-circle/package.json
+++ b/packages/turf-great-circle/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/great-circle",
- "version": "7.0.0",
- "description": "turf great-circle module",
+ "version": "7.2.0",
+ "description": "Calculate great circles routes as LineString or MultiLineString.",
"author": "Turf Authors",
"contributors": [
"Dane Springmeyer <@springmeyer>",
@@ -58,20 +58,20 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
diff --git a/packages/turf-great-circle/test.ts b/packages/turf-great-circle/test.ts
index f5a1a3c3a..cf896bc73 100644
--- a/packages/turf-great-circle/test.ts
+++ b/packages/turf-great-circle/test.ts
@@ -5,7 +5,7 @@ import { fileURLToPath } from "url";
import { loadJsonFileSync } from "load-json-file";
import { writeJsonFileSync } from "write-json-file";
import { truncate } from "@turf/truncate";
-import { featureCollection } from "@turf/helpers";
+import { featureCollection, point, lineString } from "@turf/helpers";
import { greatCircle } from "./index.js";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
@@ -39,3 +39,36 @@ test("turf-great-circle", (t) => {
});
t.end();
});
+
+test("turf-great-circle with same input and output", (t) => {
+ const start = point([0, 0]);
+ const end = point([0, 0]);
+ const line = greatCircle(start, end, {
+ npoints: 4,
+ });
+
+ t.deepEquals(
+ lineString([
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ ]),
+ line
+ );
+
+ t.end();
+});
+
+test("turf-great-circle with antipodal start and end", (t) => {
+ const start = point([0, 90]);
+ const end = point([0, -90]);
+
+ t.throws(() => {
+ greatCircle(start, end, {
+ npoints: 4,
+ });
+ }, "it appears 0,90 and 0,-90 are 'antipodal', e.g diametrically opposite, thus there is no single route but rather infinite");
+
+ t.end();
+});
diff --git a/packages/turf-helpers/README.md b/packages/turf-helpers/README.md
index d7711029f..21e253f37 100644
--- a/packages/turf-helpers/README.md
+++ b/packages/turf-helpers/README.md
@@ -4,38 +4,82 @@
## helpers
-### earthRadius
+## Units
-Earth Radius used with the Harvesine formula and approximates using a spherical (non-ellipsoid) Earth.
+Linear measurement units.
-Type: [number][1]
+β οΈ Warning. Be aware of the implications of using radian or degree units to
+measure distance. The distance represented by a degree of longitude *varies*
+depending on latitude.
-### factors
+See [https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616][1]
+for an illustration of this behaviour.
-Unit of measurement factors using a spherical (non-ellipsoid) earth radius.
+Type: (`"meters"` | `"metres"` | `"millimeters"` | `"millimetres"` | `"centimeters"` | `"centimetres"` | `"kilometers"` | `"kilometres"` | `"miles"` | `"nauticalmiles"` | `"inches"` | `"yards"` | `"feet"` | `"radians"` | `"degrees"`)
+
+## AreaUnits
+
+Area measurement units.
+
+Type: (Exclude<[Units][2], (`"radians"` | `"degrees"`)> | `"acres"` | `"hectares"`)
+
+## Grid
+
+Grid types.
+
+Type: (`"point"` | `"square"` | `"hex"` | `"triangle"`)
+
+## Corners
+
+Shorthand corner identifiers.
+
+Type: (`"sw"` | `"se"` | `"nw"` | `"ne"` | `"center"` | `"centroid"`)
+
+## Lines
+
+Geometries made up of lines i.e. lines and polygons.
+
+Type: ([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])
+
+## AllGeoJSON
+
+Convenience type for all possible GeoJSON.
+
+Type: ([Feature][7] | [FeatureCollection][8] | [Geometry][9] | [GeometryCollection][10])
+
+## earthRadius
+
+The Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The [mean radius][11] was selected because it is [recommended ][12] by the Haversine formula (used by turf/distance) to reduce error.
+
+Type: [number][13]
+
+## factors
+
+Unit of measurement factors based on earthRadius.
Keys are the name of the unit, values are the number of that unit in a single radian
-Type: [Object][2]
+Type: Record<[Units][2], [number][13]>
-### areaFactors
+## areaFactors
Area of measurement factors based on 1 square meter.
-Type: [Object][2]
+Type: Record<[AreaUnits][14], [number][13]>
## feature
-Wraps a GeoJSON [Geometry][3] in a GeoJSON [Feature][4].
+Wraps a GeoJSON [Geometry][9] in a GeoJSON [Feature][7].
### Parameters
-* `geometry` **[Geometry][3]** input geometry
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `geom` **(G | null)**
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
+* `geometry` **[GeometryObject][9]** input geometry
### Examples
@@ -50,18 +94,19 @@ var feature = turf.feature(geometry);
//=feature
```
-Returns **[Feature][4]** a GeoJSON Feature
+Returns **[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>** a GeoJSON Feature
## geometry
-Creates a GeoJSON [Geometry][3] from a Geometry string type & coordinates.
+Creates a GeoJSON [Geometry][9] from a Geometry string type & coordinates.
For GeometryCollection type use `helpers.geometryCollection`
### Parameters
-* `type` **[string][6]** Geometry Type
-* `coordinates` **[Array][5]\** Coordinates
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `type` **(`"Point"` | `"LineString"` | `"Polygon"` | `"MultiPoint"` | `"MultiLineString"` | `"MultiPolygon"`)** Geometry Type
+* `coordinates` **[Array][17]\** Coordinates
+* `_options` **Record<[string][18], never>** (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
### Examples
@@ -72,20 +117,20 @@ var geometry = turf.geometry(type, coordinates);
// => geometry
```
-Returns **[Geometry][3]** a GeoJSON Geometry
+Returns **[Geometry][9]** a GeoJSON Geometry
## point
-Creates a [Point][7] [Feature][4] from a Position.
+Creates a [Point][19] [Feature][7] from a Position.
### Parameters
-* `coordinates` **[Array][5]<[number][1]>** longitude, latitude position (each in decimal degrees)
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Position][20]** longitude, latitude position (each in decimal degrees)
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -95,21 +140,21 @@ var point = turf.point([-75.343, 39.984]);
//=point
```
-Returns **[Feature][4]<[Point][7]>** a Point feature
+Returns **[Feature][7]<[Point][19], [GeoJsonProperties][7]>** a Point feature
## points
-Creates a [Point][7] [FeatureCollection][8] from an Array of Point coordinates.
+Creates a [Point][19] [FeatureCollection][8] from an Array of Point coordinates.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[number][1]>>** an array of Points
-* `properties` **[Object][2]** Translate these properties to each Feature (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Position][20]>** an array of Points
+* `properties` **[GeoJsonProperties][7]** Translate these properties to each Feature (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north]
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north]
associated with the FeatureCollection
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the FeatureCollection
+ * `options.id` **Id?** Identifier associated with the FeatureCollection
### Examples
@@ -123,20 +168,20 @@ var points = turf.points([
//=points
```
-Returns **[FeatureCollection][8]<[Point][7]>** Point Feature
+Returns **[FeatureCollection][8]<[Point][19]>** Point Feature
## polygon
-Creates a [Polygon][9] [Feature][4] from an Array of LinearRings.
+Creates a [Polygon][5] [Feature][7] from an Array of LinearRings.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[number][1]>>>** an array of LinearRings
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>**
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -146,20 +191,20 @@ var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]],
//=polygon
```
-Returns **[Feature][4]<[Polygon][9]>** Polygon Feature
+Returns **[Feature][7]<[Polygon][5], [GeoJsonProperties][7]>** Polygon Feature
## polygons
-Creates a [Polygon][9] [FeatureCollection][8] from an Array of Polygon coordinates.
+Creates a [Polygon][5] [FeatureCollection][8] from an Array of Polygon coordinates.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[Array][5]<[number][1]>>>>** an array of Polygon coordinates
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>**
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the FeatureCollection
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the FeatureCollection
### Examples
@@ -172,20 +217,20 @@ var polygons = turf.polygons([
//=polygons
```
-Returns **[FeatureCollection][8]<[Polygon][9]>** Polygon FeatureCollection
+Returns **[FeatureCollection][8]<[Polygon][5], [GeoJsonProperties][7]>** Polygon FeatureCollection
## lineString
-Creates a [LineString][10] [Feature][4] from an Array of Positions.
+Creates a [LineString][3] [Feature][7] from an Array of Positions.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[number][1]>>** an array of Positions
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Position][20]>** an array of Positions
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -197,21 +242,21 @@ var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]],
//=linestring2
```
-Returns **[Feature][4]<[LineString][10]>** LineString Feature
+Returns **[Feature][7]<[LineString][3], [GeoJsonProperties][7]>** LineString Feature
## lineStrings
-Creates a [LineString][10] [FeatureCollection][8] from an Array of LineString coordinates.
+Creates a [LineString][3] [FeatureCollection][8] from an Array of LineString coordinates.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[number][1]>>>** an array of LinearRings
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>**
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north]
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north]
associated with the FeatureCollection
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the FeatureCollection
+ * `options.id` **Id?** Identifier associated with the FeatureCollection
### Examples
@@ -224,19 +269,19 @@ var linestrings = turf.lineStrings([
//=linestrings
```
-Returns **[FeatureCollection][8]<[LineString][10]>** LineString FeatureCollection
+Returns **[FeatureCollection][8]<[LineString][3], [GeoJsonProperties][7]>** LineString FeatureCollection
## featureCollection
-Takes one or more [Features][4] and creates a [FeatureCollection][8].
+Takes one or more [Features][7] and creates a [FeatureCollection][8].
### Parameters
-* `features` **[Array][5]<[Feature][4]>** input features
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `features` **[Array][17]<[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>>** input features
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -254,21 +299,21 @@ var collection = turf.featureCollection([
//=collection
```
-Returns **[FeatureCollection][8]** FeatureCollection of Features
+Returns **[FeatureCollection][8]<[GeometryObject][9], [GeoJsonProperties][7]>** FeatureCollection of Features
## multiLineString
-Creates a [Feature\][11] based on a
+Creates a [Feature][7]<[MultiLineString][4]> based on a
coordinate array. Properties can be added optionally.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[number][1]>>>** an array of LineStrings
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>**
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -278,23 +323,23 @@ var multiLine = turf.multiLineString([[[0,0],[10,10]]]);
//=multiLine
```
-* Throws **[Error][12]** if no coordinates are passed
+* Throws **[Error][21]** if no coordinates are passed
-Returns **[Feature][4]<[MultiLineString][13]>** a MultiLineString feature
+Returns **[Feature][7]<[MultiLineString][4], [GeoJsonProperties][7]>** a MultiLineString feature
## multiPoint
-Creates a [Feature\][14] based on a
+Creates a [Feature][7]<[MultiPoint][22]> based on a
coordinate array. Properties can be added optionally.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[number][1]>>** an array of Positions
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Position][20]>** an array of Positions
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -304,23 +349,23 @@ var multiPt = turf.multiPoint([[0,0],[10,10]]);
//=multiPt
```
-* Throws **[Error][12]** if no coordinates are passed
+* Throws **[Error][21]** if no coordinates are passed
-Returns **[Feature][4]<[MultiPoint][15]>** a MultiPoint feature
+Returns **[Feature][7]<[MultiPoint][22], [GeoJsonProperties][7]>** a MultiPoint feature
## multiPolygon
-Creates a [Feature\][16] based on a
+Creates a [Feature][7]<[MultiPolygon][6]> based on a
coordinate array. Properties can be added optionally.
### Parameters
-* `coordinates` **[Array][5]<[Array][5]<[Array][5]<[Array][5]<[number][1]>>>>** an array of Polygons
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>**
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -330,23 +375,23 @@ var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]);
//=multiPoly
```
-* Throws **[Error][12]** if no coordinates are passed
+* Throws **[Error][21]** if no coordinates are passed
-Returns **[Feature][4]<[MultiPolygon][17]>** a multipolygon feature
+Returns **[Feature][7]<[MultiPolygon][6], [GeoJsonProperties][7]>** a multipolygon feature
## geometryCollection
-Creates a [Feature\][18] based on a
+Creates a Feature based on a
coordinate array. Properties can be added optionally.
### Parameters
-* `geometries` **[Array][5]<[Geometry][3]>** an array of GeoJSON Geometries
-* `properties` **[Object][2]** an Object of key-value pairs to add as properties (optional, default `{}`)
-* `options` **[Object][2]** Optional Parameters (optional, default `{}`)
+* `geometries` **[Array][17]<([Point][19] | [LineString][3] | [Polygon][5] | [MultiPoint][22] | [MultiLineString][4] | [MultiPolygon][6])>** an array of GeoJSON Geometries
+* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)
+* `options` **[Object][15]** Optional Parameters (optional, default `{}`)
- * `options.bbox` **[Array][5]<[number][1]>?** Bounding Box Array \[west, south, east, north] associated with the Feature
- * `options.id` **([string][6] | [number][1])?** Identifier associated with the Feature
+ * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature
+ * `options.id` **Id?** Identifier associated with the Feature
### Examples
@@ -358,7 +403,7 @@ var collection = turf.geometryCollection([pt, line]);
// => collection
```
-Returns **[Feature][4]<[GeometryCollection][19]>** a GeoJSON GeometryCollection Feature
+Returns **[Feature][7]<[GeometryCollection][10], [GeoJsonProperties][7]>** a GeoJSON GeometryCollection Feature
## round
@@ -366,8 +411,8 @@ Round number to precision
### Parameters
-* `num` **[number][1]** Number
-* `precision` **[number][1]** Precision (optional, default `0`)
+* `num` **[number][13]** Number
+* `precision` **[number][13]** Precision (optional, default `0`)
### Examples
@@ -379,7 +424,7 @@ turf.round(120.4321, 2)
//=120.43
```
-Returns **[number][1]** rounded number
+Returns **[number][13]** rounded number
## radiansToLength
@@ -388,11 +433,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, ce
### Parameters
-* `radians` **[number][1]** in radians across the sphere
-* `units` **[string][6]** can be degrees, radians, miles, inches, yards, metres,
+* `radians` **[number][13]** in radians across the sphere
+* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres,
meters, kilometres, kilometers. (optional, default `"kilometers"`)
-Returns **[number][1]** distance
+Returns **[number][13]** distance
## lengthToRadians
@@ -401,11 +446,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, ce
### Parameters
-* `distance` **[number][1]** in real units
-* `units` **[string][6]** can be degrees, radians, miles, inches, yards, metres,
+* `distance` **[number][13]** in real units
+* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres,
meters, kilometres, kilometers. (optional, default `"kilometers"`)
-Returns **[number][1]** radians
+Returns **[number][13]** radians
## lengthToDegrees
@@ -414,11 +459,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, k
### Parameters
-* `distance` **[number][1]** in real units
-* `units` **[string][6]** can be degrees, radians, miles, inches, yards, metres,
+* `distance` **[number][13]** in real units
+* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres,
meters, kilometres, kilometers. (optional, default `"kilometers"`)
-Returns **[number][1]** degrees
+Returns **[number][13]** degrees
## bearingToAzimuth
@@ -427,9 +472,9 @@ and returns an angle between 0-360 degrees (positive clockwise), 0 being the nor
### Parameters
-* `bearing` **[number][1]** angle, between -180 and +180 degrees
+* `bearing` **[number][13]** angle, between -180 and +180 degrees
-Returns **[number][1]** angle between 0 and 360 degrees
+Returns **[number][13]** angle between 0 and 360 degrees
## azimuthToBearing
@@ -438,9 +483,9 @@ and returns an angle between -180 and +180 degrees (positive clockwise), 0 being
### Parameters
-* `angle` **[number][1]** between 0 and 360 degrees
+* `angle` **[number][13]** between 0 and 360 degrees
-Returns **[number][1]** bearing between -180 and +180 degrees
+Returns **[number][13]** bearing between -180 and +180 degrees
## radiansToDegrees
@@ -448,9 +493,9 @@ Converts an angle in radians to degrees
### Parameters
-* `radians` **[number][1]** angle in radians
+* `radians` **[number][13]** angle in radians
-Returns **[number][1]** degrees between 0 and 360 degrees
+Returns **[number][13]** degrees between 0 and 360 degrees
## degreesToRadians
@@ -458,35 +503,33 @@ Converts an angle in degrees to radians
### Parameters
-* `degrees` **[number][1]** angle between 0 and 360 degrees
+* `degrees` **[number][13]** angle between 0 and 360 degrees
-Returns **[number][1]** angle in radians
+Returns **[number][13]** angle in radians
## convertLength
-Converts a length to the requested unit.
-Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet
+Converts a length from one unit to another.
### Parameters
-* `length` **[number][1]** to be converted
-* `originalUnit` **Units** of the length (optional, default `"kilometers"`)
-* `finalUnit` **Units** returned unit (optional, default `"kilometers"`)
+* `length` **[number][13]** Length to be converted
+* `originalUnit` **[Units][2]** Input length unit (optional, default `"kilometers"`)
+* `finalUnit` **[Units][2]** Returned length unit (optional, default `"kilometers"`)
-Returns **[number][1]** the converted length
+Returns **[number][13]** The converted length
## convertArea
-Converts a area to the requested unit.
-Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches, hectares
+Converts an area from one unit to another.
### Parameters
-* `area` **[number][1]** to be converted
-* `originalUnit` **Units** of the distance (optional, default `"meters"`)
-* `finalUnit` **Units** returned unit (optional, default `"kilometers"`)
+* `area` **[number][13]** Area to be converted
+* `originalUnit` **[AreaUnits][14]** Input area unit (optional, default `"meters"`)
+* `finalUnit` **[AreaUnits][14]** Returned area unit (optional, default `"kilometers"`)
-Returns **[number][1]** the converted area
+Returns **[number][13]** The converted length
## isNumber
@@ -505,7 +548,7 @@ turf.isNumber('foo')
//=false
```
-Returns **[boolean][20]** true/false
+Returns **[boolean][23]** true/false
## isObject
@@ -524,47 +567,53 @@ turf.isObject('foo')
//=false
```
-Returns **[boolean][20]** true/false, including false for Arrays and Functions
+Returns **[boolean][23]** true/false, including false for Arrays and Functions
-[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
+[1]: https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616
-[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
+[2]: #units
-[3]: https://tools.ietf.org/html/rfc7946#section-3.1
+[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4
-[4]: https://tools.ietf.org/html/rfc7946#section-3.2
+[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5
-[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array
+[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6
-[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[6]: https://tools.ietf.org/html/rfc7946#section-3.1.7
-[7]: https://tools.ietf.org/html/rfc7946#section-3.1.2
+[7]: https://tools.ietf.org/html/rfc7946#section-3.2
[8]: https://tools.ietf.org/html/rfc7946#section-3.3
-[9]: https://tools.ietf.org/html/rfc7946#section-3.1.6
+[9]: https://tools.ietf.org/html/rfc7946#section-3.1
-[10]: https://tools.ietf.org/html/rfc7946#section-3.1.4
+[10]: https://tools.ietf.org/html/rfc7946#section-3.1.8
-[11]: Feature
+[11]: https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius
-[12]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error
+[12]: https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended
-[13]: https://tools.ietf.org/html/rfc7946#section-3.1.5
+[13]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
-[14]: Feature
+[14]: #areaunits
-[15]: https://tools.ietf.org/html/rfc7946#section-3.1.3
+[15]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[16]: Feature
+[16]: https://tools.ietf.org/html/rfc7946#section-5
-[17]: https://tools.ietf.org/html/rfc7946#section-3.1.7
+[17]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array
-[18]: Feature
+[18]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
-[19]: https://tools.ietf.org/html/rfc7946#section-3.1.8
+[19]: https://tools.ietf.org/html/rfc7946#section-3.1.2
-[20]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
+[20]: https://developer.mozilla.org/docs/Web/API/Position
+
+[21]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error
+
+[22]: https://tools.ietf.org/html/rfc7946#section-3.1.3
+
+[23]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
diff --git a/packages/turf-helpers/README_UNITS.md b/packages/turf-helpers/README_UNITS.md
new file mode 100644
index 000000000..6a4e500d7
--- /dev/null
+++ b/packages/turf-helpers/README_UNITS.md
@@ -0,0 +1,37 @@
+# @turf/helpers
+
+## Units
+
+* meters
+* metres
+* millimeters
+* millimetres
+* centimeters
+* centimetres
+* kilometers
+* kilometres
+* miles
+* nauticalmiles
+* inches
+* yards
+* feet
+* radians
+* degrees
+
+## AreaUnits
+
+* meters
+* metres
+* millimeters
+* millimetres
+* centimeters
+* centimetres
+* kilometers
+* kilometres
+* miles
+* nauticalmiles
+* inches
+* yards
+* feet
+* acres
+* hectares
\ No newline at end of file
diff --git a/packages/turf-helpers/index.ts b/packages/turf-helpers/index.ts
index 6f22d110f..b4fc01ee5 100644
--- a/packages/turf-helpers/index.ts
+++ b/packages/turf-helpers/index.ts
@@ -18,10 +18,25 @@ import {
import { Id } from "./lib/geojson.js";
export * from "./lib/geojson.js";
+/**
+ * @module helpers
+ */
+
// TurfJS Combined Types
export type Coord = Feature | Point | Position;
-// TurfJS String Types
+/**
+ * Linear measurement units.
+ *
+ * β οΈ Warning. Be aware of the implications of using radian or degree units to
+ * measure distance. The distance represented by a degree of longitude *varies*
+ * depending on latitude.
+ *
+ * See https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616
+ * for an illustration of this behaviour.
+ *
+ * @typedef
+ */
export type Units =
| "meters"
| "metres"
@@ -38,14 +53,43 @@ export type Units =
| "feet"
| "radians"
| "degrees";
+
+/**
+ * Area measurement units.
+ *
+ * @typedef
+ */
export type AreaUnits =
| Exclude
| "acres"
| "hectares";
+
+/**
+ * Grid types.
+ *
+ * @typedef
+ */
export type Grid = "point" | "square" | "hex" | "triangle";
+
+/**
+ * Shorthand corner identifiers.
+ *
+ * @typedef
+ */
export type Corners = "sw" | "se" | "nw" | "ne" | "center" | "centroid";
+/**
+ * Geometries made up of lines i.e. lines and polygons.
+ *
+ * @typedef
+ */
export type Lines = LineString | MultiLineString | Polygon | MultiPolygon;
+
+/**
+ * Convenience type for all possible GeoJSON.
+ *
+ * @typedef
+ */
export type AllGeoJSON =
| Feature
| FeatureCollection
@@ -53,24 +97,18 @@ export type AllGeoJSON =
| GeometryCollection;
/**
- * @module helpers
- */
-
-/**
- * Earth Radius used with the Harvesine formula and approximates using a spherical (non-ellipsoid) Earth.
+ * The Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The {@link https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius mean radius} was selected because it is {@link https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended recommended } by the Haversine formula (used by turf/distance) to reduce error.
*
- * @memberof helpers
- * @type {number}
+ * @constant
*/
export const earthRadius = 6371008.8;
/**
- * Unit of measurement factors using a spherical (non-ellipsoid) earth radius.
+ * Unit of measurement factors based on earthRadius.
*
* Keys are the name of the unit, values are the number of that unit in a single radian
*
- * @memberof helpers
- * @type {Object}
+ * @constant
*/
export const factors: Record = {
centimeters: earthRadius * 100,
@@ -94,8 +132,7 @@ export const factors: Record = {
* Area of measurement factors based on 1 square meter.
*
- * @memberof helpers
- * @type {Object}
+ * @constant
*/
export const areaFactors: Record = {
acres: 0.000247105,
@@ -118,13 +155,13 @@ export const areaFactors: Record = {
/**
* Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}.
*
- * @name feature
- * @param {Geometry} geometry input geometry
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {GeometryObject} geometry input geometry
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} a GeoJSON Feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} a GeoJSON Feature
* @example
* var geometry = {
* "type": "Point",
@@ -159,8 +196,8 @@ export function feature<
* Creates a GeoJSON {@link Geometry} from a Geometry string type & coordinates.
* For GeometryCollection type use `helpers.geometryCollection`
*
- * @name geometry
- * @param {string} type Geometry Type
+ * @function
+ * @param {("Point" | "LineString" | "Polygon" | "MultiPoint" | "MultiLineString" | "MultiPolygon")} type Geometry Type
* @param {Array} coordinates Coordinates
* @param {Object} [options={}] Optional Parameters
* @returns {Geometry} a GeoJSON Geometry
@@ -202,13 +239,13 @@ export function geometry(
/**
* Creates a {@link Point} {@link Feature} from a Position.
*
- * @name point
- * @param {Array} coordinates longitude, latitude position (each in decimal degrees)
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position} coordinates longitude, latitude position (each in decimal degrees)
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} a Point feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} a Point feature
* @example
* var point = turf.point([-75.343, 39.984]);
*
@@ -242,13 +279,13 @@ export function point(
/**
* Creates a {@link Point} {@link FeatureCollection} from an Array of Point coordinates.
*
- * @name points
- * @param {Array>} coordinates an array of Points
- * @param {Object} [properties={}] Translate these properties to each Feature
+ * @function
+ * @param {Position[]} coordinates an array of Points
+ * @param {GeoJsonProperties} [properties={}] Translate these properties to each Feature
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north]
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north]
* associated with the FeatureCollection
- * @param {string|number} [options.id] Identifier associated with the FeatureCollection
+ * @param {Id} [options.id] Identifier associated with the FeatureCollection
* @returns {FeatureCollection} Point Feature
* @example
* var points = turf.points([
@@ -275,13 +312,13 @@ export function points(
/**
* Creates a {@link Polygon} {@link Feature} from an Array of LinearRings.
*
- * @name polygon
- * @param {Array>>} coordinates an array of LinearRings
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position[][]} coordinates an array of LinearRings
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} Polygon Feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} Polygon Feature
* @example
* var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' });
*
@@ -320,13 +357,13 @@ export function polygon(
/**
* Creates a {@link Polygon} {@link FeatureCollection} from an Array of Polygon coordinates.
*
- * @name polygons
- * @param {Array>>>} coordinates an array of Polygon coordinates
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position[][][]} coordinates an array of Polygon coordinates
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the FeatureCollection
- * @returns {FeatureCollection} Polygon FeatureCollection
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the FeatureCollection
+ * @returns {FeatureCollection} Polygon FeatureCollection
* @example
* var polygons = turf.polygons([
* [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]],
@@ -351,13 +388,13 @@ export function polygons(
/**
* Creates a {@link LineString} {@link Feature} from an Array of Positions.
*
- * @name lineString
- * @param {Array>} coordinates an array of Positions
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position[]} coordinates an array of Positions
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} LineString Feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} LineString Feature
* @example
* var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'});
* var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'});
@@ -383,14 +420,14 @@ export function lineString(
/**
* Creates a {@link LineString} {@link FeatureCollection} from an Array of LineString coordinates.
*
- * @name lineStrings
- * @param {Array>>} coordinates an array of LinearRings
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position[][]} coordinates an array of LinearRings
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north]
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north]
* associated with the FeatureCollection
- * @param {string|number} [options.id] Identifier associated with the FeatureCollection
- * @returns {FeatureCollection} LineString FeatureCollection
+ * @param {Id} [options.id] Identifier associated with the FeatureCollection
+ * @returns {FeatureCollection} LineString FeatureCollection
* @example
* var linestrings = turf.lineStrings([
* [[-24, 63], [-23, 60], [-25, 65], [-20, 69]],
@@ -415,12 +452,12 @@ export function lineStrings(
/**
* Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}.
*
- * @name featureCollection
- * @param {Feature[]} features input features
+ * @function
+ * @param {Array>} features input features
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {FeatureCollection} FeatureCollection of Features
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {FeatureCollection} FeatureCollection of Features
* @example
* var locationA = turf.point([-75.343, 39.984], {name: 'Location A'});
* var locationB = turf.point([-75.833, 39.284], {name: 'Location B'});
@@ -453,16 +490,16 @@ export function featureCollection<
}
/**
- * Creates a {@link Feature} based on a
+ * Creates a {@link Feature}<{@link MultiLineString}> based on a
* coordinate array. Properties can be added optionally.
*
- * @name multiLineString
- * @param {Array>>} coordinates an array of LineStrings
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position[][]} coordinates an array of LineStrings
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} a MultiLineString feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} a MultiLineString feature
* @throws {Error} if no coordinates are passed
* @example
* var multiLine = turf.multiLineString([[[0,0],[10,10]]]);
@@ -484,16 +521,16 @@ export function multiLineString<
}
/**
- * Creates a {@link Feature} based on a
+ * Creates a {@link Feature}<{@link MultiPoint}> based on a
* coordinate array. Properties can be added optionally.
*
- * @name multiPoint
- * @param {Array>} coordinates an array of Positions
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position[]} coordinates an array of Positions
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} a MultiPoint feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} a MultiPoint feature
* @throws {Error} if no coordinates are passed
* @example
* var multiPt = turf.multiPoint([[0,0],[10,10]]);
@@ -513,16 +550,16 @@ export function multiPoint(
}
/**
- * Creates a {@link Feature} based on a
+ * Creates a {@link Feature}<{@link MultiPolygon}> based on a
* coordinate array. Properties can be added optionally.
*
- * @name multiPolygon
- * @param {Array>>>} coordinates an array of Polygons
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Position[][][]} coordinates an array of Polygons
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} a multipolygon feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} a multipolygon feature
* @throws {Error} if no coordinates are passed
* @example
* var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]);
@@ -543,16 +580,16 @@ export function multiPolygon(
}
/**
- * Creates a {@link Feature} based on a
+ * Creates a Feature based on a
* coordinate array. Properties can be added optionally.
*
- * @name geometryCollection
- * @param {Array} geometries an array of GeoJSON Geometries
- * @param {Object} [properties={}] an Object of key-value pairs to add as properties
+ * @function
+ * @param {Array} geometries an array of GeoJSON Geometries
+ * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties
* @param {Object} [options={}] Optional Parameters
- * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
- * @param {string|number} [options.id] Identifier associated with the Feature
- * @returns {Feature} a GeoJSON GeometryCollection Feature
+ * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature
+ * @param {Id} [options.id] Identifier associated with the Feature
+ * @returns {Feature} a GeoJSON GeometryCollection Feature
* @example
* var pt = turf.geometry("Point", [100, 0]);
* var line = turf.geometry("LineString", [[101, 0], [102, 1]]);
@@ -579,6 +616,7 @@ export function geometryCollection<
/**
* Round number to precision
*
+ * @function
* @param {number} num Number
* @param {number} [precision=0] Precision
* @returns {number} rounded number
@@ -601,9 +639,9 @@ export function round(num: number, precision = 0): number {
* Convert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit.
* Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet
*
- * @name radiansToLength
+ * @function
* @param {number} radians in radians across the sphere
- * @param {string} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres,
+ * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres,
* meters, kilometres, kilometers.
* @returns {number} distance
*/
@@ -622,9 +660,9 @@ export function radiansToLength(
* Convert a distance measurement (assuming a spherical Earth) from a real-world unit into radians
* Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet
*
- * @name lengthToRadians
+ * @function
* @param {number} distance in real units
- * @param {string} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres,
+ * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres,
* meters, kilometres, kilometers.
* @returns {number} radians
*/
@@ -643,9 +681,9 @@ export function lengthToRadians(
* Convert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees
* Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet
*
- * @name lengthToDegrees
+ * @function
* @param {number} distance in real units
- * @param {string} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres,
+ * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres,
* meters, kilometres, kilometers.
* @returns {number} degrees
*/
@@ -657,7 +695,7 @@ export function lengthToDegrees(distance: number, units?: Units): number {
* Converts any bearing angle from the north line direction (positive clockwise)
* and returns an angle between 0-360 degrees (positive clockwise), 0 being the north line
*
- * @name bearingToAzimuth
+ * @function
* @param {number} bearing angle, between -180 and +180 degrees
* @returns {number} angle between 0 and 360 degrees
*/
@@ -673,48 +711,57 @@ export function bearingToAzimuth(bearing: number): number {
* Converts any azimuth angle from the north line direction (positive clockwise)
* and returns an angle between -180 and +180 degrees (positive clockwise), 0 being the north line
*
- * @name azimuthToBearing
+ * @function
* @param {number} angle between 0 and 360 degrees
* @returns {number} bearing between -180 and +180 degrees
*/
export function azimuthToBearing(angle: number): number {
+ // Ignore full revolutions (multiples of 360)
angle = angle % 360;
- if (angle > 0) return angle > 180 ? angle - 360 : angle;
- return angle < -180 ? angle + 360 : angle;
+
+ if (angle > 180) {
+ return angle - 360;
+ } else if (angle < -180) {
+ return angle + 360;
+ }
+
+ return angle;
}
/**
* Converts an angle in radians to degrees
*
- * @name radiansToDegrees
+ * @function
* @param {number} radians angle in radians
* @returns {number} degrees between 0 and 360 degrees
*/
export function radiansToDegrees(radians: number): number {
- const degrees = radians % (2 * Math.PI);
- return (degrees * 180) / Math.PI;
+ // % (2 * Math.PI) radians in case someone passes value > 2Ο
+ const normalisedRadians = radians % (2 * Math.PI);
+ return (normalisedRadians * 180) / Math.PI;
}
/**
* Converts an angle in degrees to radians
*
- * @name degreesToRadians
+ * @function
* @param {number} degrees angle between 0 and 360 degrees
* @returns {number} angle in radians
*/
export function degreesToRadians(degrees: number): number {
- const radians = degrees % 360;
- return (radians * Math.PI) / 180;
+ // % 360 degrees in case someone passes value > 360
+ const normalisedDegrees = degrees % 360;
+ return (normalisedDegrees * Math.PI) / 180;
}
/**
- * Converts a length to the requested unit.
- * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet
+ * Converts a length from one unit to another.
*
- * @param {number} length to be converted
- * @param {Units} [originalUnit="kilometers"] of the length
- * @param {Units} [finalUnit="kilometers"] returned unit
- * @returns {number} the converted length
+ * @function
+ * @param {number} length Length to be converted
+ * @param {Units} [originalUnit="kilometers"] Input length unit
+ * @param {Units} [finalUnit="kilometers"] Returned length unit
+ * @returns {number} The converted length
*/
export function convertLength(
length: number,
@@ -728,12 +775,13 @@ export function convertLength(
}
/**
- * Converts a area to the requested unit.
- * Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches, hectares
- * @param {number} area to be converted
- * @param {Units} [originalUnit="meters"] of the distance
- * @param {Units} [finalUnit="kilometers"] returned unit
- * @returns {number} the converted area
+ * Converts an area from one unit to another.
+ *
+ * @function
+ * @param {number} area Area to be converted
+ * @param {AreaUnits} [originalUnit="meters"] Input area unit
+ * @param {AreaUnits} [finalUnit="kilometers"] Returned area unit
+ * @returns {number} The converted length
*/
export function convertArea(
area: number,
@@ -760,7 +808,8 @@ export function convertArea(
/**
* isNumber
*
- * @param {*} num Number to validate
+ * @function
+ * @param {any} num Number to validate
* @returns {boolean} true/false
* @example
* turf.isNumber(123)
@@ -775,7 +824,8 @@ export function isNumber(num: any): boolean {
/**
* isObject
*
- * @param {*} input variable to validate
+ * @function
+ * @param {any} input variable to validate
* @returns {boolean} true/false, including false for Arrays and Functions
* @example
* turf.isObject({elevation: 10})
@@ -791,7 +841,7 @@ export function isObject(input: any): boolean {
* Validate BBox
*
* @private
- * @param {Array} bbox BBox to validate
+ * @param {any} bbox BBox to validate
* @returns {void}
* @throws {Error} if BBox is not valid
* @example
@@ -829,7 +879,7 @@ export function validateBBox(bbox: any): void {
* Validate Id
*
* @private
- * @param {string|number} id Id to validate
+ * @param {any} id Id to validate
* @returns {void}
* @throws {Error} if Id is not valid
* @example
diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json
index dd31ee8d0..cf92218a9 100644
--- a/packages/turf-helpers/package.json
+++ b/packages/turf-helpers/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/helpers",
- "version": "7.0.0",
- "description": "turf helpers module",
+ "version": "7.2.0",
+ "description": "Provides helper functions to create GeoJSON features, like points, lines, or areas on a map.",
"author": "Turf Authors",
"contributors": [
"Tom MacWright <@tmcw>",
@@ -59,16 +59,16 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3"
},
"dependencies": {
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-hex-grid/README.md b/packages/turf-hex-grid/README.md
index c87c7a1c7..2d2576613 100644
--- a/packages/turf-hex-grid/README.md
+++ b/packages/turf-hex-grid/README.md
@@ -15,10 +15,10 @@ described in [Hexagonal Grids][3].
radius of the circumcircle of the hexagons.
* `options` **[Object][6]** Optional parameters (optional, default `{}`)
- * `options.units` **[string][7]** used in calculating cell size, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`)
+ * `options.units` **Units** used in calculating cell size. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`)
* `options.properties` **[Object][6]** passed to each hexagon or triangle of the grid (optional, default `{}`)
- * `options.mask` **[Feature][8]<[Polygon][2]>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it
- * `options.triangles` **[boolean][9]** whether to return as triangles instead of hexagons (optional, default `false`)
+ * `options.mask` **[Feature][8]<([Polygon][2] | [MultiPolygon][9])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it
+ * `options.triangles` **[boolean][10]** whether to return as triangles instead of hexagons (optional, default `false`)
### Examples
@@ -47,11 +47,13 @@ Returns **[FeatureCollection][1]<[Polygon][2]>** a hexagonal grid
[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[7]: https://turfjs.org/docs/api/types/Units
[8]: https://tools.ietf.org/html/rfc7946#section-3.2
-[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
+[9]: https://tools.ietf.org/html/rfc7946#section-3.1.7
+
+[10]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
diff --git a/packages/turf-hex-grid/index.ts b/packages/turf-hex-grid/index.ts
index 0ce997aac..7437b91c9 100644
--- a/packages/turf-hex-grid/index.ts
+++ b/packages/turf-hex-grid/index.ts
@@ -6,6 +6,7 @@ import {
GeoJsonProperties,
Polygon,
BBox,
+ MultiPolygon,
} from "geojson";
import { polygon, featureCollection, Units } from "@turf/helpers";
@@ -14,14 +15,14 @@ import { polygon, featureCollection, Units } from "@turf/helpers";
* hexagons or triangles ({@link Polygon} features) aligned in an "odd-q" vertical grid as
* described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/).
*
- * @name hexGrid
+ * @function
* @param {BBox} bbox extent in [minX, minY, maxX, maxY] order
* @param {number} cellSide length of the side of the the hexagons or triangles, in units. It will also coincide with the
* radius of the circumcircle of the hexagons.
* @param {Object} [options={}] Optional parameters
- * @param {string} [options.units='kilometers'] used in calculating cell size, can be degrees, radians, miles, or kilometers
+ * @param {Units} [options.units='kilometers'] used in calculating cell size. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.
* @param {Object} [options.properties={}] passed to each hexagon or triangle of the grid
- * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it
+ * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it
* @param {boolean} [options.triangles=false] whether to return as triangles instead of hexagons
* @returns {FeatureCollection} a hexagonal grid
* @example
@@ -41,7 +42,7 @@ function hexGrid(
units?: Units;
triangles?: boolean;
properties?: P;
- mask?: Feature;
+ mask?: Feature;
} = {}
): FeatureCollection {
// Issue => https://github.com/Turfjs/turf/issues/1284
diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json
index 3adb5fe8d..4e18fc7f7 100644
--- a/packages/turf-hex-grid/package.json
+++ b/packages/turf-hex-grid/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/hex-grid",
- "version": "7.0.0",
- "description": "turf hex-grid module",
+ "version": "7.2.0",
+ "description": "Creates a honeycomb-like grid of hexagons within a bounding box.",
"author": "Turf Authors",
"contributors": [
"James Seppi <@jseppi>",
@@ -62,25 +62,25 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/bbox-polygon": "workspace:^",
- "@turf/truncate": "workspace:^",
+ "@turf/bbox-polygon": "workspace:*",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/distance": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/intersect": "workspace:^",
- "@turf/invariant": "workspace:^",
+ "@turf/distance": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/intersect": "workspace:*",
+ "@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-hex-grid/test/in/properties.json b/packages/turf-hex-grid/test/in/properties.json
index 3d726d900..543d43df1 100644
--- a/packages/turf-hex-grid/test/in/properties.json
+++ b/packages/turf-hex-grid/test/in/properties.json
@@ -8,15 +8,17 @@
"type": "Feature",
"properties": {},
"geometry": {
- "type": "Polygon",
+ "type": "MultiPolygon",
"coordinates": [
[
- [2.223186492919922, 41.416856461155575],
- [2.1716880798339844, 41.44182560856202],
- [2.1636199951171875, 41.41608406639095],
- [2.1334075927734375, 41.407200866420744],
- [2.1845626831054683, 41.37977115211044],
- [2.223186492919922, 41.416856461155575]
+ [
+ [2.223186492919922, 41.416856461155575],
+ [2.1716880798339844, 41.44182560856202],
+ [2.1636199951171875, 41.41608406639095],
+ [2.1334075927734375, 41.407200866420744],
+ [2.1845626831054683, 41.37977115211044],
+ [2.223186492919922, 41.416856461155575]
+ ]
]
]
}
diff --git a/packages/turf-hex-grid/test/out/properties.geojson b/packages/turf-hex-grid/test/out/properties.geojson
index 8cf50dfc5..5061257e4 100644
--- a/packages/turf-hex-grid/test/out/properties.geojson
+++ b/packages/turf-hex-grid/test/out/properties.geojson
@@ -292,15 +292,17 @@
"fill-opacity": 0
},
"geometry": {
- "type": "Polygon",
+ "type": "MultiPolygon",
"coordinates": [
[
- [2.223186492919922, 41.416856461155575],
- [2.1716880798339844, 41.44182560856202],
- [2.1636199951171875, 41.41608406639095],
- [2.1334075927734375, 41.407200866420744],
- [2.1845626831054683, 41.37977115211044],
- [2.223186492919922, 41.416856461155575]
+ [
+ [2.223186492919922, 41.416856461155575],
+ [2.1716880798339844, 41.44182560856202],
+ [2.1636199951171875, 41.41608406639095],
+ [2.1334075927734375, 41.407200866420744],
+ [2.1845626831054683, 41.37977115211044],
+ [2.223186492919922, 41.416856461155575]
+ ]
]
]
}
diff --git a/packages/turf-interpolate/README.md b/packages/turf-interpolate/README.md
index 6959ec9fe..ed444d0e2 100644
--- a/packages/turf-interpolate/README.md
+++ b/packages/turf-interpolate/README.md
@@ -14,8 +14,9 @@ Takes a set of points and estimates their 'property' values on a grid using the
* `options.gridType` **[string][6]** defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle') (optional, default `'square'`)
* `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.units` **Units** used in calculating cellSize. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`)
* `options.weight` **[number][4]** exponent regulating the distance-decay weighting (optional, default `1`)
+ * `options.bbox` **[BBox][8]** 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][9])>** grid of points or polygons with interpolated 'property'
[1]: https://en.wikipedia.org/wiki/Inverse_distance_weighting
@@ -47,7 +48,11 @@ 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://turfjs.org/docs/api/types/Units
+
+[8]: https://tools.ietf.org/html/rfc7946#section-5
+
+[9]: 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 6e5639a85..4705963ad 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 02c0bb5cf..005a08d42 100644
--- a/packages/turf-interpolate/index.js
+++ b/packages/turf-interpolate/index.js
@@ -6,21 +6,22 @@ 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";
/**
* Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method](https://en.wikipedia.org/wiki/Inverse_distance_weighting).
*
- * @name interpolate
+ * @function
* @param {FeatureCollection} points with known value
* @param {number} cellSize the distance across each grid point
* @param {Object} [options={}] Optional parameters
* @param {string} [options.gridType='square'] defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle')
* @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 {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.
* @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/package.json b/packages/turf-interpolate/package.json
index aa135ecef..91be2a309 100644
--- a/packages/turf-interpolate/package.json
+++ b/packages/turf-interpolate/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/interpolate",
- "version": "7.0.0",
- "description": "turf interpolate module",
+ "version": "7.2.0",
+ "description": "Creates an interpolated grid of points using the Inverse Distance Weighting method.",
"author": "Turf Authors",
"contributors": [
"Stefano Borghi <@stebogit>"
@@ -54,30 +54,30 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"chromatism": "^3.0.0",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/bbox": "workspace:^",
- "@turf/centroid": "workspace:^",
- "@turf/clone": "workspace:^",
- "@turf/distance": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/hex-grid": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/meta": "workspace:^",
- "@turf/point-grid": "workspace:^",
- "@turf/square-grid": "workspace:^",
- "@turf/triangle-grid": "workspace:^",
+ "@turf/bbox": "workspace:*",
+ "@turf/centroid": "workspace:*",
+ "@turf/clone": "workspace:*",
+ "@turf/distance": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/hex-grid": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/meta": "workspace:*",
+ "@turf/point-grid": "workspace:*",
+ "@turf/square-grid": "workspace:*",
+ "@turf/triangle-grid": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
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 000000000..8c287fbee
--- /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 000000000..10c0fabdc
--- /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 000000000..05e6020ff
--- /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 000000000..6a5161f0a
--- /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 000000000..e19987337
--- /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 000000000..3a45ec78b
--- /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]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-intersect/index.ts b/packages/turf-intersect/index.ts
index f8f3e8050..55a2d74cd 100644
--- a/packages/turf-intersect/index.ts
+++ b/packages/turf-intersect/index.ts
@@ -7,13 +7,13 @@ import {
} from "geojson";
import { multiPolygon, polygon } from "@turf/helpers";
import { geomEach } from "@turf/meta";
-import polygonClipping from "polygon-clipping";
+import * as polyclip from "polyclip-ts";
/**
* Takes {@link Polygon|polygon} or {@link MultiPolygon|multi-polygon} geometries and
* finds their polygonal intersection. If they don't intersect, returns null.
*
- * @name intersect
+ * @function
* @param {FeatureCollection} features the features to intersect
* @param {Object} [options={}] Optional Parameters
* @param {Object} [options.properties={}] Translate GeoJSON Properties to Feature
@@ -50,19 +50,16 @@ function intersect(
properties?: P;
} = {}
): Feature | null {
- const geoms: polygonClipping.Geom[] = [];
+ const geoms: polyclip.Geom[] = [];
geomEach(features, (geom) => {
- geoms.push(geom.coordinates as polygonClipping.Geom);
+ geoms.push(geom.coordinates as polyclip.Geom);
});
if (geoms.length < 2) {
throw new Error("Must specify at least 2 geometries");
}
- const intersection = polygonClipping.intersection(
- geoms[0],
- ...geoms.slice(1)
- );
+ const intersection = polyclip.intersection(geoms[0], ...geoms.slice(1));
if (intersection.length === 0) return null;
if (intersection.length === 1)
return polygon(intersection[0], options.properties);
diff --git a/packages/turf-intersect/package.json b/packages/turf-intersect/package.json
index 94af6e516..8f4aedcd0 100644
--- a/packages/turf-intersect/package.json
+++ b/packages/turf-intersect/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/intersect",
- "version": "7.0.0",
- "description": "turf intersect module",
+ "version": "7.2.0",
+ "description": "Finds the shared area between two polygons.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -52,22 +52,22 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^10.3.10",
+ "glob": "^11.0.2",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "polygon-clipping": "^0.15.3",
- "tslib": "^2.6.2"
+ "polyclip-ts": "^0.16.8",
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-intersect/test.ts b/packages/turf-intersect/test.ts
index e1c16e84a..a90665e4f 100644
--- a/packages/turf-intersect/test.ts
+++ b/packages/turf-intersect/test.ts
@@ -1,11 +1,13 @@
+import fs from "fs";
import path from "path";
import { fileURLToPath } from "url";
import { glob } from "glob";
import test from "tape";
import { loadJsonFileSync } from "load-json-file";
import { writeJsonFileSync } from "write-json-file";
-import { featureCollection } from "@turf/helpers";
+import { featureCollection, polygon } from "@turf/helpers";
import { intersect } from "./index.js";
+import { FeatureCollection, MultiPolygon, Polygon } from "geojson";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
@@ -14,34 +16,129 @@ const directories = {
out: path.join(__dirname, "test", "out") + path.sep,
};
-test("turf-intersect", (t) => {
- glob.sync(directories.in + "*.geojson").forEach((filepath) => {
- const { name, base } = path.parse(filepath);
- const [polygon1, polygon2] = loadJsonFileSync(filepath).features;
+const fixtures = fs.readdirSync(directories.in).map((filename) => {
+ return {
+ filename,
+ name: path.parse(filename).name,
+ geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection<
+ Polygon | MultiPolygon
+ >,
+ };
+});
- if (name.includes("skip")) return t.skip(name);
-
- // Red Polygon1
- polygon1.properties = Object.assign(polygon1.properties || {}, {
- "fill-opacity": 0.5,
- fill: "#F00",
- });
- // Blue Polygon2
- polygon2.properties = Object.assign(polygon2.properties || {}, {
- "fill-opacity": 0.5,
- fill: "#00F",
- });
-
- const results = featureCollection([polygon1, polygon2]);
- const result = intersect(results);
- if (result) {
- // Green Polygon
- result.properties = { "fill-opacity": 1, fill: "#0F0" };
- results.features.push(result);
+test("intersect", (t) => {
+ for (const { name, geojson, filename } of fixtures) {
+ if (name.includes("skip")) {
+ t.skip(name);
+ continue;
}
- if (process.env.REGEN) writeJsonFileSync(directories.out + base, results);
- t.deepEqual(results, loadJsonFileSync(directories.out + base), name);
- });
+ // Only test the input fixture this way if there is a corresponding output
+ // fixture to compare.
+ if (fs.existsSync(path.join(directories.out, filename))) {
+ const [polygon1, polygon2] = geojson.features;
+
+ // Red Polygon1
+ polygon1.properties = Object.assign(polygon1.properties || {}, {
+ "fill-opacity": 0.5,
+ fill: "#F00",
+ });
+ // Blue Polygon2
+ polygon2.properties = Object.assign(polygon2.properties || {}, {
+ "fill-opacity": 0.5,
+ fill: "#00F",
+ });
+
+ const fc = featureCollection([polygon1, polygon2]);
+ const result = intersect(fc);
+ if (result) {
+ // Green Polygon
+ result.properties = { "fill-opacity": 1, fill: "#0F0" };
+ fc.features.push(result);
+ }
+
+ if (process.env.REGEN)
+ writeJsonFileSync(directories.out + filename, result);
+ t.deepEqual(fc, loadJsonFileSync(directories.out + filename), name);
+ }
+ }
+
+ t.end();
+});
+
+test("intersect - unable to complete output ring - issue 2048", (t) => {
+ // Test examples copied from https://github.com/Turfjs/turf/issues/2048
+ let polys: FeatureCollection;
+
+ polys = loadJsonFileSync(
+ directories.in + "unable-to-complete-output-ring-2048-1.geojson"
+ ) as FeatureCollection;
+
+ // This used to fail with "Unable to complete output ring ..."
+ t.doesNotThrow(() => intersect(polys), "does not throw ex 1");
+
+ polys = loadJsonFileSync(
+ directories.in + "unable-to-complete-output-ring-2048-2.geojson"
+ ) as FeatureCollection;
+
+ // This used to fail with "Unable to complete output ring ..."
+ t.doesNotThrow(() => intersect(polys), "does not throw ex 2");
+
+ t.end();
+});
+
+test("intersect - infinite loop - issue 2705", (t) => {
+ // Test examples copied from https://github.com/Turfjs/turf/issues/2705
+ let polys: FeatureCollection;
+
+ polys = loadJsonFileSync(
+ directories.in + "infinite-loop-2705.geojson"
+ ) as FeatureCollection;
+
+ // This used to get stuck in an infinite loop
+ intersect(polys);
+
+ t.ok(true, "should not get stuck in an infinite loop");
+
+ t.end();
+});
+
+test.skip("intersect - infinite loop - issue 2601", (t) => {
+ // Not actually going to commit the fixture file for this test as it's 76MB!
+ // Tested locally though and it produces an identical result with no
+ // workarounds: https://github.com/Turfjs/turf/issues/2601#issuecomment-2558307811
+
+ // Test examples copied from https://github.com/Turfjs/turf/issues/2601
+ let polys: FeatureCollection;
+
+ polys = loadJsonFileSync(
+ directories.in + "infinite-loop-2601.geojson"
+ ) as FeatureCollection;
+
+ // This used to get stuck in an infinite loop
+ intersect(polys);
+
+ t.ok(true, "should not get stuck in an infinite loop");
+
+ t.end();
+});
+
+test.skip("intersect - missing islands - issue 2084", (t) => {
+ // Unfortunately still broken, even with upgrade to polyclip-ts. Committing
+ // now so we can enable when a fix is available.
+
+ // Test example copied from https://github.com/Turfjs/turf/issues/2084
+ let polys: FeatureCollection;
+
+ polys = loadJsonFileSync(
+ directories.in + "missing-islands-2084.geojson"
+ ) as FeatureCollection;
+
+ // "Islands" in the multipolygon aren't being included in the result.
+ // TODO establish geojson file of expected output. For now clearly visually
+ // not the same as https://github.com/Turfjs/turf/issues/2084#issuecomment-849975182
+ const result = intersect(polys);
+ t.ok(true, "islands included in intersection result");
+
t.end();
});
diff --git a/packages/turf-intersect/test/in/infinite-loop-2705.geojson b/packages/turf-intersect/test/in/infinite-loop-2705.geojson
new file mode 100644
index 000000000..640533d2d
--- /dev/null
+++ b/packages/turf-intersect/test/in/infinite-loop-2705.geojson
@@ -0,0 +1,934 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "source": "https://github.com/Turfjs/turf/issues/2705#issue-2491630158"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [126.55856392608325, 34.46272192666609],
+ [126.55889007353417, 34.46273185169668],
+ [126.55893420916493, 34.46182149433875],
+ [126.55860547472139, 34.46181162317049],
+ [126.55856392608325, 34.46272192666609],
+ [126.55856392608325, 34.46272192666609]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ [126.558597, 34.461803],
+ [126.558614, 34.46182],
+ [126.558657, 34.461791],
+ [126.55864, 34.461774],
+ [126.558597, 34.461803]
+ ]
+ ],
+ [
+ [
+ [126.558599, 34.461789],
+ [126.558602, 34.461822],
+ [126.558657, 34.461819],
+ [126.558654, 34.461786],
+ [126.558599, 34.461789]
+ ]
+ ],
+
+ [
+ [
+ [126.558584, 34.461796],
+ [126.558607, 34.461816],
+ [126.558647, 34.461784],
+ [126.558624, 34.461764],
+ [126.558584, 34.461796]
+ ]
+ ],
+ [
+ [
+ [126.558599, 34.461811],
+ [126.558626, 34.461818],
+ [126.558642, 34.461775],
+ [126.558615, 34.461768],
+ [126.558599, 34.461811]
+ ]
+ ],
+ [
+ [
+ [126.558597, 34.461808],
+ [126.558621, 34.461819],
+ [126.55865, 34.46178],
+ [126.558626, 34.461769],
+ [126.558597, 34.461808]
+ ]
+ ],
+ [
+ [
+ [126.558595, 34.461801],
+ [126.558612, 34.461818],
+ [126.558655, 34.461789],
+ [126.558638, 34.461772],
+ [126.558595, 34.461801]
+ ]
+ ],
+ [
+ [
+ [126.558596, 34.461802],
+ [126.558613, 34.461819],
+ [126.558656, 34.46179],
+ [126.558639, 34.461773],
+ [126.558596, 34.461802]
+ ]
+ ],
+ [
+ [
+ [126.558601, 34.4618],
+ [126.558601, 34.461843],
+ [126.558656, 34.461843],
+ [126.558656, 34.4618],
+ [126.558601, 34.4618]
+ ]
+ ],
+ [
+ [
+ [126.558601, 34.461821],
+ [126.558599, 34.461866],
+ [126.558655, 34.461868],
+ [126.558657, 34.461823],
+ [126.558601, 34.461821]
+ ]
+ ],
+ [
+ [
+ [126.558601, 34.461845],
+ [126.558597, 34.46189],
+ [126.558652, 34.461893],
+ [126.558656, 34.461848],
+ [126.558601, 34.461845]
+ ]
+ ],
+ [
+ [
+ [126.558598, 34.461871],
+ [126.558596, 34.46192],
+ [126.558652, 34.461921],
+ [126.558654, 34.461872],
+ [126.558598, 34.461871]
+ ]
+ ],
+ [
+ [
+ [126.558597, 34.461899],
+ [126.558594, 34.461951],
+ [126.55865, 34.461953],
+ [126.558653, 34.461901],
+ [126.558597, 34.461899]
+ ]
+ ],
+ [
+ [
+ [126.558595, 34.46193],
+ [126.558592, 34.461982],
+ [126.558648, 34.461984],
+ [126.558651, 34.461932],
+ [126.558595, 34.46193]
+ ]
+ ],
+ [
+ [
+ [126.558593, 34.461961],
+ [126.55859, 34.46201],
+ [126.558646, 34.462013],
+ [126.558649, 34.461964],
+ [126.558593, 34.461961]
+ ]
+ ],
+ [
+ [
+ [126.558591, 34.46199],
+ [126.558588, 34.462037],
+ [126.558644, 34.46204],
+ [126.558647, 34.461993],
+ [126.558591, 34.46199]
+ ]
+ ],
+ [
+ [
+ [126.558589, 34.462017],
+ [126.558586, 34.462065],
+ [126.558642, 34.462068],
+ [126.558645, 34.46202],
+ [126.558589, 34.462017]
+ ]
+ ],
+ [
+ [
+ [126.558587, 34.462045],
+ [126.558584, 34.462093],
+ [126.55864, 34.462096],
+ [126.558643, 34.462048],
+ [126.558587, 34.462045]
+ ]
+ ],
+ [
+ [
+ [126.558585, 34.462074],
+ [126.558583, 34.462123],
+ [126.558639, 34.462124],
+ [126.558641, 34.462075],
+ [126.558585, 34.462074]
+ ]
+ ],
+ [
+ [
+ [126.558584, 34.462103],
+ [126.558582, 34.462156],
+ [126.558638, 34.462157],
+ [126.55864, 34.462104],
+ [126.558584, 34.462103]
+ ]
+ ],
+ [
+ [
+ [126.558583, 34.462135],
+ [126.55858, 34.462188],
+ [126.558636, 34.46219],
+ [126.558639, 34.462137],
+ [126.558583, 34.462135]
+ ]
+ ],
+ [
+ [
+ [126.558581, 34.462168],
+ [126.558579, 34.462221],
+ [126.558635, 34.462222],
+ [126.558637, 34.462169],
+ [126.558581, 34.462168]
+ ]
+ ],
+ [
+ [
+ [126.55858, 34.4622],
+ [126.558577, 34.462252],
+ [126.558633, 34.462254],
+ [126.558636, 34.462202],
+ [126.55858, 34.4622]
+ ]
+ ],
+ [
+ [
+ [126.558578, 34.462231],
+ [126.558575, 34.462283],
+ [126.558631, 34.462285],
+ [126.558634, 34.462233],
+ [126.558578, 34.462231]
+ ]
+ ],
+ [
+ [
+ [126.558576, 34.462262],
+ [126.558573, 34.462315],
+ [126.558629, 34.462317],
+ [126.558632, 34.462264],
+ [126.558576, 34.462262]
+ ]
+ ],
+ [
+ [
+ [126.558574, 34.462295],
+ [126.558572, 34.46235],
+ [126.558628, 34.462351],
+ [126.55863, 34.462296],
+ [126.558574, 34.462295]
+ ]
+ ],
+ [
+ [
+ [126.558573, 34.46233],
+ [126.558573, 34.462387],
+ [126.558628, 34.462387],
+ [126.558628, 34.46233],
+ [126.558573, 34.46233]
+ ]
+ ],
+ [
+ [
+ [126.558573, 34.462366],
+ [126.558571, 34.462418],
+ [126.558627, 34.462419],
+ [126.558629, 34.462367],
+ [126.558573, 34.462366]
+ ]
+ ],
+ [
+ [
+ [126.558572, 34.462398],
+ [126.55857, 34.462448],
+ [126.558626, 34.462449],
+ [126.558628, 34.462399],
+ [126.558572, 34.462398]
+ ]
+ ],
+ [
+ [
+ [126.558571, 34.462427],
+ [126.558568, 34.462479],
+ [126.558624, 34.462481],
+ [126.558627, 34.462429],
+ [126.558571, 34.462427]
+ ]
+ ],
+ [
+ [
+ [126.558569, 34.462458],
+ [126.558566, 34.462511],
+ [126.558622, 34.462513],
+ [126.558625, 34.46246],
+ [126.558569, 34.462458]
+ ]
+ ],
+ [
+ [
+ [126.558567, 34.46249],
+ [126.558564, 34.462542],
+ [126.55862, 34.462544],
+ [126.558623, 34.462492],
+ [126.558567, 34.46249]
+ ]
+ ],
+ [
+ [
+ [126.558565, 34.462521],
+ [126.558562, 34.462573],
+ [126.558618, 34.462575],
+ [126.558621, 34.462523],
+ [126.558565, 34.462521]
+ ]
+ ],
+ [
+ [
+ [126.558563, 34.462552],
+ [126.55856, 34.462604],
+ [126.558616, 34.462606],
+ [126.558619, 34.462554],
+ [126.558563, 34.462552]
+ ]
+ ],
+ [
+ [
+ [126.558561, 34.462584],
+ [126.558559, 34.462633],
+ [126.558615, 34.462634],
+ [126.558617, 34.462585],
+ [126.558561, 34.462584]
+ ]
+ ],
+ [
+ [
+ [126.55856, 34.462612],
+ [126.558557, 34.462659],
+ [126.558613, 34.462662],
+ [126.558616, 34.462615],
+ [126.55856, 34.462612]
+ ]
+ ],
+ [
+ [
+ [126.558558, 34.46264],
+ [126.558556, 34.462687],
+ [126.558612, 34.462688],
+ [126.558614, 34.462641],
+ [126.558558, 34.46264]
+ ]
+ ],
+ [
+ [
+ [126.558557, 34.462666],
+ [126.558555, 34.462709],
+ [126.558611, 34.462711],
+ [126.558613, 34.462668],
+ [126.558557, 34.462666]
+ ]
+ ],
+ [
+ [
+ [126.558557, 34.462687],
+ [126.558554, 34.462718],
+ [126.558609, 34.462722],
+ [126.558612, 34.462691],
+ [126.558557, 34.462687]
+ ]
+ ],
+ [
+ [
+ [126.558556, 34.462697],
+ [126.558552, 34.462724],
+ [126.558608, 34.462729],
+ [126.558612, 34.462702],
+ [126.558556, 34.462697]
+ ]
+ ],
+ [
+ [
+ [126.558554, 34.462706],
+ [126.558554, 34.462732],
+ [126.558609, 34.462732],
+ [126.558609, 34.462706],
+ [126.558554, 34.462706]
+ ]
+ ],
+ [
+ [
+ [126.558594, 34.462699],
+ [126.558568, 34.462699],
+ [126.558568, 34.462744],
+ [126.558594, 34.462744],
+ [126.558594, 34.462699]
+ ]
+ ],
+ [
+ [
+ [126.558608, 34.462732],
+ [126.558608, 34.462709],
+ [126.558553, 34.462709],
+ [126.558553, 34.462732],
+ [126.558608, 34.462732]
+ ]
+ ],
+ [
+ [
+ [126.558608, 34.46273],
+ [126.558608, 34.462708],
+ [126.558553, 34.462708],
+ [126.558553, 34.46273],
+ [126.558608, 34.46273]
+ ]
+ ],
+ [
+ [
+ [126.558553, 34.462708],
+ [126.558553, 34.462729],
+ [126.558608, 34.462729],
+ [126.558608, 34.462708],
+ [126.558553, 34.462708]
+ ]
+ ],
+ [
+ [
+ [126.558553, 34.462708],
+ [126.558553, 34.462729],
+ [126.558608, 34.462729],
+ [126.558608, 34.462708],
+ [126.558553, 34.462708]
+ ]
+ ],
+ [
+ [
+ [126.558608, 34.462729],
+ [126.558608, 34.462707],
+ [126.558553, 34.462707],
+ [126.558553, 34.462729],
+ [126.558608, 34.462729]
+ ]
+ ],
+ [
+ [
+ [126.558553, 34.462707],
+ [126.558553, 34.462728],
+ [126.558608, 34.462728],
+ [126.558608, 34.462707],
+ [126.558553, 34.462707]
+ ]
+ ],
+ [
+ [
+ [126.558553, 34.462707],
+ [126.558553, 34.462728],
+ [126.558608, 34.462728],
+ [126.558608, 34.462707],
+ [126.558553, 34.462707]
+ ]
+ ],
+ [
+ [
+ [126.558568, 34.46274],
+ [126.558594, 34.46274],
+ [126.558594, 34.462695],
+ [126.558568, 34.462695],
+ [126.558568, 34.46274]
+ ]
+ ],
+ [
+ [
+ [126.558554, 34.462707],
+ [126.558554, 34.462728],
+ [126.558609, 34.462728],
+ [126.558609, 34.462707],
+ [126.558554, 34.462707]
+ ]
+ ],
+ [
+ [
+ [126.558554, 34.462707],
+ [126.558554, 34.462728],
+ [126.558609, 34.462728],
+ [126.558609, 34.462707],
+ [126.558554, 34.462707]
+ ]
+ ],
+ [
+ [
+ [126.558554, 34.462707],
+ [126.558554, 34.462728],
+ [126.558609, 34.462728],
+ [126.558609, 34.462707],
+ [126.558554, 34.462707]
+ ]
+ ],
+ [
+ [
+ [126.558594, 34.462695],
+ [126.558568, 34.462695],
+ [126.558568, 34.46274],
+ [126.558594, 34.46274],
+ [126.558594, 34.462695]
+ ]
+ ],
+ [
+ [
+ [126.558553, 34.462707],
+ [126.558553, 34.462729],
+ [126.558608, 34.462729],
+ [126.558608, 34.462707],
+ [126.558553, 34.462707]
+ ]
+ ],
+ [
+ [
+ [126.558553, 34.462708],
+ [126.558553, 34.462729],
+ [126.558608, 34.462729],
+ [126.558608, 34.462708],
+ [126.558553, 34.462708]
+ ]
+ ],
+ [
+ [
+ [126.558593, 34.462696],
+ [126.558567, 34.462696],
+ [126.558567, 34.462741],
+ [126.558593, 34.462741],
+ [126.558593, 34.462696]
+ ]
+ ],
+ [
+ [
+ [126.558567, 34.462741],
+ [126.558596, 34.462741],
+ [126.558596, 34.462696],
+ [126.558567, 34.462696],
+ [126.558567, 34.462741]
+ ]
+ ],
+ [
+ [
+ [126.558573, 34.462742],
+ [126.558613, 34.46274],
+ [126.558609, 34.462694],
+ [126.558569, 34.462696],
+ [126.558573, 34.462742]
+ ]
+ ],
+ [
+ [
+ [126.558586, 34.46274],
+ [126.558628, 34.46274],
+ [126.558628, 34.462695],
+ [126.558586, 34.462695],
+ [126.558586, 34.46274]
+ ]
+ ],
+ [
+ [
+ [126.558634, 34.462738],
+ [126.558652, 34.462711],
+ [126.558603, 34.462688],
+ [126.558585, 34.462715],
+ [126.558634, 34.462738]
+ ]
+ ],
+ [
+ [
+ [126.558651, 34.462716],
+ [126.558645, 34.462675],
+ [126.558589, 34.46268],
+ [126.558595, 34.462721],
+ [126.558651, 34.462716]
+ ]
+ ],
+ [
+ [
+ [126.558646, 34.462698],
+ [126.558648, 34.462645],
+ [126.558592, 34.462644],
+ [126.55859, 34.462697],
+ [126.558646, 34.462698]
+ ]
+ ],
+ [
+ [
+ [126.558647, 34.462666],
+ [126.55865, 34.462611],
+ [126.558594, 34.462609],
+ [126.558591, 34.462664],
+ [126.558647, 34.462666]
+ ]
+ ],
+ [
+ [
+ [126.558649, 34.462632],
+ [126.558652, 34.462579],
+ [126.558596, 34.462577],
+ [126.558593, 34.46263],
+ [126.558649, 34.462632]
+ ]
+ ],
+ [
+ [
+ [126.558651, 34.462599],
+ [126.558653, 34.462549],
+ [126.558597, 34.462548],
+ [126.558595, 34.462598],
+ [126.558651, 34.462599]
+ ]
+ ],
+ [
+ [
+ [126.558652, 34.46257],
+ [126.558655, 34.462517],
+ [126.558599, 34.462515],
+ [126.558596, 34.462568],
+ [126.558652, 34.46257]
+ ]
+ ],
+ [
+ [
+ [126.558654, 34.462538],
+ [126.558657, 34.462485],
+ [126.558601, 34.462483],
+ [126.558598, 34.462536],
+ [126.558654, 34.462538]
+ ]
+ ],
+ [
+ [
+ [126.558656, 34.462505],
+ [126.558658, 34.462453],
+ [126.558602, 34.462452],
+ [126.5586, 34.462504],
+ [126.558656, 34.462505]
+ ]
+ ],
+ [
+ [
+ [126.558657, 34.462474],
+ [126.55866, 34.46242],
+ [126.558604, 34.462418],
+ [126.558601, 34.462472],
+ [126.558657, 34.462474]
+ ]
+ ],
+ [
+ [
+ [126.558659, 34.462441],
+ [126.558662, 34.462388],
+ [126.558606, 34.462386],
+ [126.558603, 34.462439],
+ [126.558659, 34.462441]
+ ]
+ ],
+ [
+ [
+ [126.558661, 34.462408],
+ [126.558663, 34.462355],
+ [126.558607, 34.462354],
+ [126.558605, 34.462407],
+ [126.558661, 34.462408]
+ ]
+ ],
+ [
+ [
+ [126.558662, 34.462376],
+ [126.558665, 34.462323],
+ [126.558609, 34.462321],
+ [126.558606, 34.462374],
+ [126.558662, 34.462376]
+ ]
+ ],
+ [
+ [
+ [126.558664, 34.462343],
+ [126.558666, 34.462291],
+ [126.55861, 34.46229],
+ [126.558608, 34.462342],
+ [126.558664, 34.462343]
+ ]
+ ],
+ [
+ [
+ [126.558665, 34.462312],
+ [126.558668, 34.462259],
+ [126.558612, 34.462257],
+ [126.558609, 34.46231],
+ [126.558665, 34.462312]
+ ]
+ ],
+ [
+ [
+ [126.558667, 34.462279],
+ [126.558669, 34.462226],
+ [126.558613, 34.462225],
+ [126.558611, 34.462278],
+ [126.558667, 34.462279]
+ ]
+ ],
+ [
+ [
+ [126.558668, 34.462247],
+ [126.558671, 34.462193],
+ [126.558615, 34.462191],
+ [126.558612, 34.462245],
+ [126.558668, 34.462247]
+ ]
+ ],
+ [
+ [
+ [126.55867, 34.462213],
+ [126.558672, 34.462161],
+ [126.558616, 34.46216],
+ [126.558614, 34.462212],
+ [126.55867, 34.462213]
+ ]
+ ],
+ [
+ [
+ [126.558671, 34.462182],
+ [126.558674, 34.462129],
+ [126.558618, 34.462127],
+ [126.558615, 34.46218],
+ [126.558671, 34.462182]
+ ]
+ ],
+ [
+ [
+ [126.558673, 34.46215],
+ [126.558676, 34.462096],
+ [126.55862, 34.462094],
+ [126.558617, 34.462148],
+ [126.558673, 34.46215]
+ ]
+ ],
+ [
+ [
+ [126.558675, 34.462116],
+ [126.558677, 34.462064],
+ [126.558621, 34.462063],
+ [126.558619, 34.462115],
+ [126.558675, 34.462116]
+ ]
+ ],
+ [
+ [
+ [126.558676, 34.462085],
+ [126.558679, 34.462032],
+ [126.558623, 34.46203],
+ [126.55862, 34.462083],
+ [126.558676, 34.462085]
+ ]
+ ],
+ [
+ [
+ [126.558678, 34.462052],
+ [126.55868, 34.462],
+ [126.558624, 34.461999],
+ [126.558622, 34.462051],
+ [126.558678, 34.462052]
+ ]
+ ],
+ [
+ [
+ [126.558679, 34.46202],
+ [126.558681, 34.461967],
+ [126.558625, 34.461966],
+ [126.558623, 34.462019],
+ [126.558679, 34.46202]
+ ]
+ ],
+ [
+ [
+ [126.55868, 34.461988],
+ [126.558683, 34.461935],
+ [126.558627, 34.461933],
+ [126.558624, 34.461986],
+ [126.55868, 34.461988]
+ ]
+ ],
+ [
+ [
+ [126.558682, 34.461955],
+ [126.558684, 34.461902],
+ [126.558628, 34.461901],
+ [126.558626, 34.461954],
+ [126.558682, 34.461955]
+ ]
+ ],
+ [
+ [
+ [126.558683, 34.461923],
+ [126.558686, 34.46187],
+ [126.55863, 34.461868],
+ [126.558627, 34.461921],
+ [126.558683, 34.461923]
+ ]
+ ],
+ [
+ [
+ [126.558685, 34.461891],
+ [126.558688, 34.461837],
+ [126.558632, 34.461835],
+ [126.558629, 34.461889],
+ [126.558685, 34.461891]
+ ]
+ ],
+ [
+ [
+ [126.558687, 34.461857],
+ [126.558689, 34.461808],
+ [126.558633, 34.461807],
+ [126.558631, 34.461856],
+ [126.558687, 34.461857]
+ ]
+ ],
+ [
+ [
+ [126.558688, 34.461829],
+ [126.55869, 34.461792],
+ [126.558634, 34.46179],
+ [126.558632, 34.461827],
+ [126.558688, 34.461829]
+ ]
+ ],
+ [
+ [
+ [126.558667, 34.461826],
+ [126.558695, 34.461811],
+ [126.558663, 34.461773],
+ [126.558635, 34.461788],
+ [126.558667, 34.461826]
+ ]
+ ],
+ [
+ [
+ [126.558653, 34.461819],
+ [126.558698, 34.461824],
+ [126.558704, 34.461778],
+ [126.558659, 34.461773],
+ [126.558653, 34.461819]
+ ]
+ ],
+ [
+ [
+ [126.558666, 34.461816],
+ [126.558703, 34.46183],
+ [126.558725, 34.461788],
+ [126.558688, 34.461774],
+ [126.558666, 34.461816]
+ ]
+ ],
+ [
+ [
+ [126.558677, 34.461791],
+ [126.55867, 34.461826],
+ [126.558725, 34.461833],
+ [126.558732, 34.461798],
+ [126.558677, 34.461791]
+ ]
+ ],
+ [
+ [
+ [126.558673, 34.461807],
+ [126.558668, 34.461854],
+ [126.558723, 34.461858],
+ [126.558728, 34.461811],
+ [126.558673, 34.461807]
+ ]
+ ],
+ [
+ [
+ [126.558669, 34.461834],
+ [126.558666, 34.461889],
+ [126.558722, 34.461891],
+ [126.558725, 34.461836],
+ [126.558669, 34.461834]
+ ]
+ ],
+ [
+ [
+ [126.558667, 34.461869],
+ [126.558665, 34.461922],
+ [126.558721, 34.461923],
+ [126.558723, 34.46187],
+ [126.558667, 34.461869]
+ ]
+ ],
+ [
+ [
+ [126.558666, 34.461902],
+ [126.558666, 34.461954],
+ [126.558721, 34.461954],
+ [126.558721, 34.461902],
+ [126.558666, 34.461902]
+ ]
+ ],
+ [
+ [
+ [126.558666, 34.461932],
+ [126.558663, 34.461984],
+ [126.558719, 34.461986],
+ [126.558722, 34.461934],
+ [126.558666, 34.461932]
+ ]
+ ],
+ [
+ [
+ [126.558664, 34.461963],
+ [126.558661, 34.462016],
+ [126.558717, 34.462018],
+ [126.55872, 34.461965],
+ [126.558664, 34.461963]
+ ]
+ ],
+ [
+ [
+ [126.558662, 34.461996],
+ [126.55866, 34.462048],
+ [126.558716, 34.462049],
+ [126.558718, 34.461997],
+ [126.558662, 34.461996]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-intersect/test/in/missing-islands-2084.geojson b/packages/turf-intersect/test/in/missing-islands-2084.geojson
new file mode 100644
index 000000000..3b1b8d2e8
--- /dev/null
+++ b/packages/turf-intersect/test/in/missing-islands-2084.geojson
@@ -0,0 +1,4872 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "source": "https://github.com/Turfjs/turf/issues/2084#issue-902802697"
+ },
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [-113.34221616566167, 42.72749839683379],
+ [-113.34422051782082, 42.73763022099034],
+ [-113.34602091263709, 42.74776204514689],
+ [-113.34757744700497, 42.757893869303444],
+ [-113.3488503613965, 42.76802569346],
+ [-113.34980157164547, 42.77815751761655],
+ [-113.35039554793526, 42.7882893417731],
+ [-113.35059966094683, 42.79842116592965],
+ [-113.35038417274245, 42.808552990086206],
+ [-113.34972205522699, 42.81868481424276],
+ [-113.34858878297648, 42.82881663839931],
+ [-113.34696218983753, 42.83894846255586],
+ [-113.34482242003024, 42.849080286712415],
+ [-113.34215195882072, 42.85921211086897],
+ [-113.34044031184473, 42.86465881869336],
+ [-113.33898416124809, 42.86934393502552],
+ [-113.33531965368003, 42.87947575918207],
+ [-113.33108617159658, 42.88960758333862],
+ [-113.32673518382107, 42.898789248162814],
+ [-113.3262829516782, 42.899739407495176],
+ [-113.32098672364542, 42.90987123165173],
+ [-113.3150884351566, 42.92000305580828],
+ [-113.31303005579741, 42.92327111364501],
+ [-113.30863574143333, 42.93013487996483],
+ [-113.30158921186182, 42.940266704121385],
+ [-113.29932492777375, 42.94331966864196],
+ [-113.2939470361242, 42.95039852827794],
+ [-113.28568446305374, 42.96053035243449],
+ [-113.2856197997501, 42.96060615112174],
+ [-113.27678134164277, 42.97066217659104],
+ [-113.27191467172644, 42.975901947203184],
+ [-113.26721213122191, 42.98079400074759],
+ [-113.25820954370278, 42.98973136711528],
+ [-113.25695955601647, 42.990925824904146],
+ [-113.2459708068134, 43.0010576490607],
+ [-113.24450441567912, 43.00236543461658],
+ [-113.23420136880357, 43.01118947321725],
+ [-113.23079928765546, 43.01401499667304],
+ [-113.22161634733155, 43.0213212973738],
+ [-113.2170941596318, 43.024827831713246],
+ [-113.20815748364195, 43.031453121530355],
+ [-113.20338903160814, 43.03491311968221],
+ [-113.19375623656546, 43.04158494568691],
+ [-113.18968390358448, 43.04435566353103],
+ [-113.1783342782194, 43.05171676984346],
+ [-113.17597877556082, 43.053222183583124],
+ [-113.16227364753716, 43.061567567742706],
+ [-113.16178958326367, 43.06184859400001],
+ [-113.1485685195135, 43.06944604592946],
+ [-113.14392413254552, 43.07198041815656],
+ [-113.13486339148984, 43.076884407340415],
+ [-113.12468416975315, 43.082112242313116],
+ [-113.12115826346619, 43.08391142248678],
+ [-113.10745313544253, 43.09056277462457],
+ [-113.10380603742766, 43.09224406646967],
+ [-113.09374800741887, 43.09686281149846],
+ [-113.08105914975012, 43.10237589062622],
+ [-113.08004287939521, 43.10281622348303],
+ [-113.06633775137155, 43.10846572553491],
+ [-113.05595768410025, 43.11250771478277],
+ [-113.05263262334789, 43.113801082737744],
+ [-113.03892749532423, 43.118855422709984],
+ [-113.02804848052969, 43.122639538939325],
+ [-113.02522236730057, 43.12362274332118],
+ [-113.01151723927691, 43.12813254323416],
+ [-112.99781211125325, 43.13237082919632],
+ [-112.99643810996427, 43.13277136309588],
+ [-112.9841069832296, 43.13637133029275],
+ [-112.97040185520594, 43.14011929880119],
+ [-112.95951272776081, 43.14290318725243],
+ [-112.95669672718228, 43.143624800019055],
+ [-112.94299159915862, 43.14690580593801],
+ [-112.92928647113496, 43.14994912088687],
+ [-112.9155813431113, 43.15275933061889],
+ [-112.91412135627137, 43.15303501140898],
+ [-112.90187621508764, 43.155355936337436],
+ [-112.88817108706398, 43.15772600974665],
+ [-112.87446595904032, 43.159869752055975],
+ [-112.86076083101666, 43.16178851984129],
+ [-112.84961701899758, 43.163166835565534],
+ [-112.847055702993, 43.16348555383334],
+ [-112.83335057496934, 43.16496812718983],
+ [-112.81964544694569, 43.16622502310549],
+ [-112.80594031892203, 43.16725534374592],
+ [-112.79223519089837, 43.16805768197573],
+ [-112.77853006287471, 43.16863013432147],
+ [-112.76482493485105, 43.168970295209846],
+ [-112.75111980682739, 43.16907523431523],
+ [-112.73741467880373, 43.16894146058576],
+ [-112.72370955078007, 43.168564877890496],
+ [-112.71000442275641, 43.16794073807304],
+ [-112.69629929473275, 43.16706359742245],
+ [-112.6825941667091, 43.16592728218677],
+ [-112.66888903868544, 43.16452486784609],
+ [-112.6577671349259, 43.163166835565534],
+ [-112.65518391066178, 43.16285208349927],
+ [-112.64147878263812, 43.1609141978228],
+ [-112.62777365461446, 43.15868678748944],
+ [-112.6140685265908, 43.156159354568175],
+ [-112.60036339856714, 43.15332070171928],
+ [-112.59910834242524, 43.15303501140898],
+ [-112.58665827054348, 43.15018402604024],
+ [-112.57295314251982, 43.1467132676845],
+ [-112.55928779379896, 43.14290318725243],
+ [-112.55924801449616, 43.14289197878029],
+ [-112.5455428864725, 43.1387315884445],
+ [-112.53183775844884, 43.13418665328615],
+ [-112.53183775844884, 43.14290318725243],
+ [-112.53183775844884, 43.15303501140898],
+ [-112.53183775844884, 43.163166835565534],
+ [-112.53183775844884, 43.173298659722086],
+ [-112.53183775844884, 43.18343048387864],
+ [-112.53183775844884, 43.19356230803519],
+ [-112.53183775844884, 43.20369413219174],
+ [-112.53183775844884, 43.213825956348295],
+ [-112.53183775844884, 43.22395778050485],
+ [-112.53183775844884, 43.2340896046614],
+ [-112.53183775844884, 43.24422142881795],
+ [-112.53183775844884, 43.254353252974504],
+ [-112.53183775844884, 43.264485077131056],
+ [-112.53183775844884, 43.27461690128761],
+ [-112.53183775844884, 43.28474872544416],
+ [-112.53183775844884, 43.29488054960071],
+ [-112.53183775844884, 43.305012373757265],
+ [-112.53183775844884, 43.31514419791382],
+ [-112.53183775844884, 43.32527602207037],
+ [-112.53183775844884, 43.33540784622692],
+ [-112.53183775844884, 43.345539670383474],
+ [-112.53183775844884, 43.355671494540026],
+ [-112.53183775844884, 43.36580331869658],
+ [-112.53183775844884, 43.37593514285313],
+ [-112.53183775844884, 43.38606696700968],
+ [-112.53183775844884, 43.396198791166235],
+ [-112.53183775844884, 43.40633061532279],
+ [-112.53183775844884, 43.41646243947934],
+ [-112.53183775844884, 43.42659426363589],
+ [-112.53183775844884, 43.436726087792444],
+ [-112.53183775844884, 43.446857911948996],
+ [-112.53183775844884, 43.45698973610555],
+ [-112.53183775844884, 43.4671215602621],
+ [-112.53183775844884, 43.47725338441865],
+ [-112.53183775844884, 43.487385208575205],
+ [-112.53183775844884, 43.49751703273176],
+ [-112.53183775844884, 43.50764885688831],
+ [-112.53183775844884, 43.51778068104486],
+ [-112.53183775844884, 43.527912505201414],
+ [-112.53183775844884, 43.538044329357966],
+ [-112.53183775844884, 43.54817615351452],
+ [-112.53183775844884, 43.55830797767107],
+ [-112.53183775844884, 43.56843980182762],
+ [-112.53183775844884, 43.578571625984175],
+ [-112.53183775844884, 43.58870345014073],
+ [-112.53183775844884, 43.59883527429728],
+ [-112.53183775844884, 43.60896709845383],
+ [-112.53183775844884, 43.619098922610384],
+ [-112.53183775844884, 43.629230746766936],
+ [-112.53183775844884, 43.63936257092349],
+ [-112.53183775844884, 43.64949439508004],
+ [-112.53183775844884, 43.65962621923659],
+ [-112.53183775844884, 43.669758043393145],
+ [-112.53183775844884, 43.6798898675497],
+ [-112.53183775844884, 43.69002169170625],
+ [-112.53183775844884, 43.7001535158628],
+ [-112.53183775844884, 43.710285340019354],
+ [-112.53183775844884, 43.720417164175906],
+ [-112.53183775844884, 43.73054898833246],
+ [-112.53183775844884, 43.74068081248901],
+ [-112.53183775844884, 43.75081263664556],
+ [-112.53183775844884, 43.760944460802115],
+ [-112.53183775844884, 43.77107628495867],
+ [-112.53183775844884, 43.78120810911522],
+ [-112.53183775844884, 43.79133993327177],
+ [-112.53183775844884, 43.801471757428324],
+ [-112.53183775844884, 43.811603581584876],
+ [-112.53183775844884, 43.82173540574143],
+ [-112.53183775844884, 43.83186722989798],
+ [-112.53183775844884, 43.84199905405453],
+ [-112.53183775844884, 43.852130878211085],
+ [-112.53183775844884, 43.86226270236764],
+ [-112.53183775844884, 43.87239452652419],
+ [-112.53183775844884, 43.88252635068074],
+ [-112.53183775844884, 43.892658174837294],
+ [-112.53183775844884, 43.902789998993846],
+ [-112.53183775844884, 43.9129218231504],
+ [-112.53183775844884, 43.92305364730695],
+ [-112.53183775844884, 43.9331854714635],
+ [-112.53183775844884, 43.943317295620055],
+ [-112.53183775844884, 43.95344911977661],
+ [-112.53183775844884, 43.96358094393316],
+ [-112.53183775844884, 43.97371276808971],
+ [-112.53183775844884, 43.983844592246264],
+ [-112.53183775844884, 43.993976416402816],
+ [-112.53183775844884, 44.00410824055937],
+ [-112.53183775844884, 44.01424006471592],
+ [-112.53183775844884, 44.02437188887247],
+ [-112.53183775844884, 44.034503713029025],
+ [-112.53183775844884, 44.04463553718558],
+ [-112.53183775844884, 44.05476736134213],
+ [-112.53183775844884, 44.06489918549868],
+ [-112.53183775844884, 44.075031009655234],
+ [-112.53183775844884, 44.085162833811786],
+ [-112.53183775844884, 44.09529465796834],
+ [-112.53183775844884, 44.10542648212489],
+ [-112.53183775844884, 44.11555830628144],
+ [-112.53183775844884, 44.125690130437995],
+ [-112.53183775844884, 44.13582195459455],
+ [-112.53183775844884, 44.1459537787511],
+ [-112.53183775844884, 44.15608560290765],
+ [-112.53183775844884, 44.166217427064204],
+ [-112.53183775844884, 44.176349251220756],
+ [-112.53183775844884, 44.18648107537731],
+ [-112.53183775844884, 44.19661289953386],
+ [-112.53183775844884, 44.20674472369041],
+ [-112.53183775844884, 44.216876547846965],
+ [-112.53183775844884, 44.22700837200352],
+ [-112.53183775844884, 44.23714019616007],
+ [-112.53183775844884, 44.24727202031662],
+ [-112.53183775844884, 44.257403844473174],
+ [-112.53183775844884, 44.267535668629726],
+ [-112.53183775844884, 44.27766749278628],
+ [-112.53183775844884, 44.28779931694283],
+ [-112.53183775844884, 44.29793114109938],
+ [-112.53183775844884, 44.308062965255935],
+ [-112.53183775844884, 44.31819478941249],
+ [-112.53183775844884, 44.32832661356904],
+ [-112.53183775844884, 44.33845843772559],
+ [-112.53183775844884, 44.348590261882144],
+ [-112.53183775844884, 44.358722086038696],
+ [-112.53183775844884, 44.36885391019525],
+ [-112.53183775844884, 44.3789857343518],
+ [-112.53183775844884, 44.38911755850835],
+ [-112.53183775844884, 44.399249382664905],
+ [-112.53183775844884, 44.40938120682146],
+ [-112.53183775844884, 44.41951303097801],
+ [-112.53183775844884, 44.42964485513456],
+ [-112.53183775844884, 44.439776679291114],
+ [-112.53183775844884, 44.449908503447666],
+ [-112.53183775844884, 44.46004032760422],
+ [-112.53183775844884, 44.47017215176077],
+ [-112.53183775844884, 44.48030397591732],
+ [-112.53183775844884, 44.490435800073875],
+ [-112.53183775844884, 44.50056762423043],
+ [-112.53183775844884, 44.51069944838698],
+ [-112.53183775844884, 44.52083127254353],
+ [-112.53183775844884, 44.530963096700084],
+ [-112.53183775844884, 44.54109492085664],
+ [-112.53183775844884, 44.55122674501319],
+ [-112.53183775844884, 44.56135856916974],
+ [-112.53183775844884, 44.57149039332629],
+ [-112.53183775844884, 44.581622217482845],
+ [-112.53183775844884, 44.5917540416394],
+ [-112.53183775844884, 44.60188586579595],
+ [-112.53183775844884, 44.6120176899525],
+ [-112.53183775844884, 44.622149514109054],
+ [-112.53183775844884, 44.63228133826561],
+ [-112.53183775844884, 44.64241316242216],
+ [-112.53183775844884, 44.65254498657871],
+ [-112.53183775844884, 44.66267681073526],
+ [-112.53183775844884, 44.672808634891815],
+ [-112.53183775844884, 44.68294045904837],
+ [-112.53183775844884, 44.69307228320492],
+ [-112.53183775844884, 44.70320410736147],
+ [-112.53183775844884, 44.713335931518024],
+ [-112.53183775844884, 44.72346775567458],
+ [-112.53183775844884, 44.73359957983113],
+ [-112.53183775844884, 44.74373140398768],
+ [-112.53183775844884, 44.75386322814423],
+ [-112.53183775844884, 44.763995052300785],
+ [-112.53183775844884, 44.77412687645734],
+ [-112.53183775844884, 44.78425870061389],
+ [-112.53183775844884, 44.79439052477044],
+ [-112.53183775844884, 44.804522348926994],
+ [-112.53183775844884, 44.81465417308355],
+ [-112.53183775844884, 44.8247859972401],
+ [-112.53183775844884, 44.83491782139665],
+ [-112.53183775844884, 44.8450496455532],
+ [-112.53183775844884, 44.855181469709756],
+ [-112.53183775844884, 44.86531329386631],
+ [-112.53183775844884, 44.87544511802286],
+ [-112.53183775844884, 44.88557694217941],
+ [-112.53183775844884, 44.895708766335964],
+ [-112.53183775844884, 44.90584059049252],
+ [-112.53183775844884, 44.91597241464907],
+ [-112.53183775844884, 44.92610423880562],
+ [-112.53183775844884, 44.93623606296217],
+ [-112.53183775844884, 44.946367887118726],
+ [-112.53183775844884, 44.95649971127528],
+ [-112.53183775844884, 44.96663153543183],
+ [-112.53183775844884, 44.97676335958838],
+ [-112.53183775844884, 44.986895183744934],
+ [-112.53183775844884, 44.99702700790149],
+ [-112.53183775844884, 45.00715883205804],
+ [-112.53183775844884, 45.01729065621459],
+ [-112.53183775844884, 45.02742248037114],
+ [-112.53183775844884, 45.037554304527696],
+ [-112.53183775844884, 45.04768612868425],
+ [-112.53183775844884, 45.0578179528408],
+ [-112.53183775844884, 45.06794977699735],
+ [-112.53183775844884, 45.078081601153905],
+ [-112.53183775844884, 45.08821342531046],
+ [-112.53183775844884, 45.09834524946701],
+ [-112.53183775844884, 45.10847707362356],
+ [-112.53183775844884, 45.11860889778011],
+ [-112.53183775844884, 45.128740721936666],
+ [-112.53183775844884, 45.13887254609322],
+ [-112.53183775844884, 45.14900437024977],
+ [-112.53183775844884, 45.15913619440632],
+ [-112.53183775844884, 45.169268018562875],
+ [-112.53183775844884, 45.17939984271943],
+ [-112.53183775844884, 45.18953166687598],
+ [-112.53183775844884, 45.19966349103253],
+ [-112.53183775844884, 45.20979531518908],
+ [-112.53183775844884, 45.219927139345636],
+ [-112.53183775844884, 45.23005896350219],
+ [-112.53183775844884, 45.24019078765874],
+ [-112.53183775844884, 45.25032261181529],
+ [-112.53183775844884, 45.260454435971845],
+ [-112.53183775844884, 45.2705862601284],
+ [-112.53183775844884, 45.28071808428495],
+ [-112.53183775844884, 45.2908499084415],
+ [-112.53183775844884, 45.30098173259805],
+ [-112.53183775844884, 45.311113556754606],
+ [-112.53183775844884, 45.32124538091116],
+ [-112.53183775844884, 45.33137720506771],
+ [-112.53183775844884, 45.34150902922426],
+ [-112.53183775844884, 45.351640853380815],
+ [-112.53183775844884, 45.36177267753737],
+ [-112.53183775844884, 45.37190450169392],
+ [-112.53183775844884, 45.38203632585047],
+ [-112.53183775844884, 45.39216815000702],
+ [-112.53183775844884, 45.402299974163576],
+ [-112.53183775844884, 45.41243179832013],
+ [-112.53183775844884, 45.42256362247668],
+ [-112.53183775844884, 45.43269544663323],
+ [-112.53183775844884, 45.442827270789785],
+ [-112.53183775844884, 45.45295909494634],
+ [-112.53183775844884, 45.46309091910289],
+ [-112.53183775844884, 45.47322274325944],
+ [-112.53183775844884, 45.483354567415994],
+ [-112.53183775844884, 45.493486391572546],
+ [-112.53183775844884, 45.5036182157291],
+ [-112.53183775844884, 45.51375003988565],
+ [-112.53183775844884, 45.5238818640422],
+ [-112.53183775844884, 45.534013688198755],
+ [-112.53183775844884, 45.54414551235531],
+ [-112.53183775844884, 45.55427733651186],
+ [-112.53183775844884, 45.56440916066841],
+ [-112.53183775844884, 45.574540984824964],
+ [-112.53183775844884, 45.584672808981516],
+ [-112.53183775844884, 45.59480463313807],
+ [-112.53183775844884, 45.60493645729462],
+ [-112.53183775844884, 45.61506828145117],
+ [-112.53183775844884, 45.625200105607725],
+ [-112.53183775844884, 45.63533192976428],
+ [-112.53183775844884, 45.64546375392083],
+ [-112.53183775844884, 45.65559557807738],
+ [-112.53183775844884, 45.665727402233934],
+ [-112.53183775844884, 45.675859226390486],
+ [-112.53183775844884, 45.68599105054704],
+ [-112.53183775844884, 45.69612287470359],
+ [-112.53183775844884, 45.70625469886014],
+ [-112.53183775844884, 45.716386523016695],
+ [-112.53183775844884, 45.72651834717325],
+ [-112.53183775844884, 45.7366501713298],
+ [-112.53183775844884, 45.74678199548635],
+ [-112.53183775844884, 45.756913819642904],
+ [-112.53183775844884, 45.767045643799456],
+ [-112.53183775844884, 45.77717746795601],
+ [-112.53183775844884, 45.78730929211256],
+ [-112.53183775844884, 45.79744111626911],
+ [-112.53183775844884, 45.807572940425665],
+ [-112.53183775844884, 45.81770476458222],
+ [-112.53183775844884, 45.82783658873877],
+ [-112.53183775844884, 45.83796841289532],
+ [-112.53183775844884, 45.848100237051874],
+ [-112.53183775844884, 45.858232061208426],
+ [-112.53183775844884, 45.86836388536498],
+ [-112.53183775844884, 45.87849570952153],
+ [-112.53183775844884, 45.88862753367808],
+ [-112.53183775844884, 45.898759357834635],
+ [-112.53183775844884, 45.90889118199119],
+ [-112.53183775844884, 45.91902300614774],
+ [-112.53183775844884, 45.92915483030429],
+ [-112.53183775844884, 45.939286654460844],
+ [-112.53183775844884, 45.949418478617396],
+ [-112.53183775844884, 45.95955030277395],
+ [-112.53183775844884, 45.9696821269305],
+ [-112.53183775844884, 45.97981395108705],
+ [-112.53183775844884, 45.989945775243605],
+ [-112.53183775844884, 46.00007759940016],
+ [-112.53183775844884, 46.01020942355671],
+ [-112.53183775844884, 46.02034124771326],
+ [-112.53183775844884, 46.030473071869814],
+ [-112.53183775844884, 46.040604896026366],
+ [-112.53183775844884, 46.05073672018292],
+ [-112.53183775844884, 46.06086854433947],
+ [-112.53183775844884, 46.07100036849602],
+ [-112.53183775844884, 46.081132192652575],
+ [-112.53183775844884, 46.09126401680913],
+ [-112.53183775844884, 46.10139584096568],
+ [-112.53183775844884, 46.11152766512223],
+ [-112.53183775844884, 46.121659489278784],
+ [-112.53183775844884, 46.131791313435336],
+ [-112.53183775844884, 46.14192313759189],
+ [-112.53183775844884, 46.15205496174844],
+ [-112.53183775844884, 46.16218678590499],
+ [-112.53183775844884, 46.172318610061545],
+ [-112.53183775844884, 46.1824504342181],
+ [-112.53183775844884, 46.19258225837465],
+ [-112.53183775844884, 46.2027140825312],
+ [-112.53183775844884, 46.212845906687754],
+ [-112.53183775844884, 46.222977730844306],
+ [-112.53183775844884, 46.23310955500086],
+ [-112.53183775844884, 46.24324137915741],
+ [-112.53183775844884, 46.25337320331396],
+ [-112.53183775844884, 46.263505027470515],
+ [-112.53183775844884, 46.27363685162707],
+ [-112.53183775844884, 46.28376867578362],
+ [-112.53183775844884, 46.29390049994017],
+ [-112.53183775844884, 46.304032324096724],
+ [-112.53183775844884, 46.314164148253276],
+ [-112.53183775844884, 46.32429597240983],
+ [-112.53183775844884, 46.33442779656638],
+ [-112.53183775844884, 46.34455962072293],
+ [-112.53183775844884, 46.354691444879485],
+ [-112.53183775844884, 46.36482326903604],
+ [-112.53183775844884, 46.37495509319259],
+ [-112.53183775844884, 46.38508691734914],
+ [-112.53183775844884, 46.395218741505694],
+ [-112.53183775844884, 46.405350565662246],
+ [-112.53183775844884, 46.4154823898188],
+ [-112.53183775844884, 46.42561421397535],
+ [-112.53183775844884, 46.4357460381319],
+ [-112.53183775844884, 46.445877862288455],
+ [-112.53183775844884, 46.45600968644501],
+ [-112.53183775844884, 46.46614151060156],
+ [-112.53183775844884, 46.47627333475811],
+ [-112.53183775844884, 46.486405158914664],
+ [-112.53183775844884, 46.496536983071216],
+ [-112.53183775844884, 46.50666880722777],
+ [-112.53183775844884, 46.51680063138432],
+ [-112.53183775844884, 46.52693245554087],
+ [-112.53183775844884, 46.537064279697425],
+ [-112.53183775844884, 46.54719610385398],
+ [-112.53183775844884, 46.55732792801053],
+ [-112.53183775844884, 46.56745975216708],
+ [-112.53183775844884, 46.577591576323634],
+ [-112.53183775844884, 46.587723400480186],
+ [-112.53183775844884, 46.59785522463674],
+ [-112.53183775844884, 46.60798704879329],
+ [-112.53183775844884, 46.61811887294984],
+ [-112.53183775844884, 46.628250697106395],
+ [-112.53183775844884, 46.63838252126295],
+ [-112.53183775844884, 46.6485143454195],
+ [-112.53183775844884, 46.65864616957605],
+ [-112.53183775844884, 46.668777993732604],
+ [-112.53183775844884, 46.678909817889156],
+ [-112.53183775844884, 46.68904164204571],
+ [-112.53183775844884, 46.69917346620226],
+ [-112.53183775844884, 46.70930529035881],
+ [-112.53183775844884, 46.719437114515365],
+ [-112.53183775844884, 46.72956893867192],
+ [-112.53183775844884, 46.73970076282847],
+ [-112.53183775844884, 46.74983258698502],
+ [-112.53183775844884, 46.759964411141574],
+ [-112.53183775844884, 46.770096235298126],
+ [-112.53183775844884, 46.78022805945468],
+ [-112.53183775844884, 46.79035988361123],
+ [-112.53183775844884, 46.80049170776778],
+ [-112.53183775844884, 46.810623531924335],
+ [-112.53183775844884, 46.82075535608089],
+ [-112.53183775844884, 46.83088718023744],
+ [-112.53183775844884, 46.84101900439399],
+ [-112.53183775844884, 46.851150828550544],
+ [-112.53183775844884, 46.8612826527071],
+ [-112.53183775844884, 46.87141447686365],
+ [-112.53183775844884, 46.8815463010202],
+ [-112.53183775844884, 46.89167812517675],
+ [-112.53183775844884, 46.901809949333305],
+ [-112.53183775844884, 46.91194177348986],
+ [-112.53183775844884, 46.92207359764641],
+ [-112.53183775844884, 46.93220542180296],
+ [-112.53183775844884, 46.942337245959514],
+ [-112.53183775844884, 46.95246907011607],
+ [-112.53183775844884, 46.96260089427262],
+ [-112.53183775844884, 46.97273271842917],
+ [-112.53183775844884, 46.98286454258572],
+ [-112.53183775844884, 46.992996366742275],
+ [-112.53183775844884, 47.00312819089883],
+ [-112.53183775844884, 47.01326001505538],
+ [-112.53183775844884, 47.02339183921193],
+ [-112.53183775844884, 47.033523663368484],
+ [-112.53183775844884, 47.04365548752504],
+ [-112.53183775844884, 47.05378731168159],
+ [-112.53183775844884, 47.06391913583814],
+ [-112.53183775844884, 47.07405095999469],
+ [-112.53183775844884, 47.084182784151245],
+ [-112.53183775844884, 47.0943146083078],
+ [-112.53183775844884, 47.10444643246435],
+ [-112.53183775844884, 47.1145782566209],
+ [-112.53183775844884, 47.124710080777454],
+ [-112.53183775844884, 47.13484190493401],
+ [-112.53183775844884, 47.14497372909056],
+ [-112.53183775844884, 47.15510555324711],
+ [-112.53183775844884, 47.16523737740366],
+ [-112.53183775844884, 47.175369201560216],
+ [-112.53183775844884, 47.18550102571677],
+ [-112.53183775844884, 47.19563284987332],
+ [-112.53183775844884, 47.20576467402987],
+ [-112.53183775844884, 47.215896498186424],
+ [-112.53183775844884, 47.22602832234298],
+ [-112.53183775844884, 47.23616014649953],
+ [-112.53183775844884, 47.24629197065608],
+ [-112.53183775844884, 47.25642379481263],
+ [-112.53183775844884, 47.266555618969186],
+ [-112.53183775844884, 47.27668744312574],
+ [-112.53183775844884, 47.28681926728229],
+ [-112.53183775844884, 47.29695109143884],
+ [-112.53183775844884, 47.307082915595394],
+ [-112.5455428864725, 47.307082915595394],
+ [-112.55924801449616, 47.307082915595394],
+ [-112.57295314251982, 47.307082915595394],
+ [-112.58665827054348, 47.307082915595394],
+ [-112.60036339856714, 47.307082915595394],
+ [-112.6140685265908, 47.307082915595394],
+ [-112.62777365461446, 47.307082915595394],
+ [-112.64147878263812, 47.307082915595394],
+ [-112.65518391066178, 47.307082915595394],
+ [-112.66888903868544, 47.307082915595394],
+ [-112.6825941667091, 47.307082915595394],
+ [-112.69629929473275, 47.307082915595394],
+ [-112.71000442275641, 47.307082915595394],
+ [-112.72370955078007, 47.307082915595394],
+ [-112.73741467880373, 47.307082915595394],
+ [-112.75111980682739, 47.307082915595394],
+ [-112.76482493485105, 47.307082915595394],
+ [-112.77853006287471, 47.307082915595394],
+ [-112.79223519089837, 47.307082915595394],
+ [-112.80594031892203, 47.307082915595394],
+ [-112.81964544694569, 47.307082915595394],
+ [-112.83335057496934, 47.307082915595394],
+ [-112.847055702993, 47.307082915595394],
+ [-112.86076083101666, 47.307082915595394],
+ [-112.87446595904032, 47.307082915595394],
+ [-112.88817108706398, 47.307082915595394],
+ [-112.90187621508764, 47.307082915595394],
+ [-112.9155813431113, 47.307082915595394],
+ [-112.92928647113496, 47.307082915595394],
+ [-112.94299159915862, 47.307082915595394],
+ [-112.95669672718228, 47.307082915595394],
+ [-112.97040185520594, 47.307082915595394],
+ [-112.9841069832296, 47.307082915595394],
+ [-112.99781211125325, 47.307082915595394],
+ [-113.01151723927691, 47.307082915595394],
+ [-113.02522236730057, 47.307082915595394],
+ [-113.03892749532423, 47.307082915595394],
+ [-113.05263262334789, 47.307082915595394],
+ [-113.06633775137155, 47.307082915595394],
+ [-113.08004287939521, 47.307082915595394],
+ [-113.09374800741887, 47.307082915595394],
+ [-113.10745313544253, 47.307082915595394],
+ [-113.12115826346619, 47.307082915595394],
+ [-113.13486339148984, 47.307082915595394],
+ [-113.1485685195135, 47.307082915595394],
+ [-113.16227364753716, 47.307082915595394],
+ [-113.17597877556082, 47.307082915595394],
+ [-113.18968390358448, 47.307082915595394],
+ [-113.20338903160814, 47.307082915595394],
+ [-113.2170941596318, 47.307082915595394],
+ [-113.23079928765546, 47.307082915595394],
+ [-113.24450441567912, 47.307082915595394],
+ [-113.25820954370278, 47.307082915595394],
+ [-113.27191467172644, 47.307082915595394],
+ [-113.2856197997501, 47.307082915595394],
+ [-113.29932492777375, 47.307082915595394],
+ [-113.31303005579741, 47.307082915595394],
+ [-113.32673518382107, 47.307082915595394],
+ [-113.34044031184473, 47.307082915595394],
+ [-113.35414543986839, 47.307082915595394],
+ [-113.36785056789205, 47.307082915595394],
+ [-113.38155569591571, 47.307082915595394],
+ [-113.39526082393937, 47.307082915595394],
+ [-113.40896595196303, 47.307082915595394],
+ [-113.42267107998669, 47.307082915595394],
+ [-113.43637620801034, 47.307082915595394],
+ [-113.450081336034, 47.307082915595394],
+ [-113.46378646405766, 47.307082915595394],
+ [-113.47749159208132, 47.307082915595394],
+ [-113.49119672010498, 47.307082915595394],
+ [-113.50490184812864, 47.307082915595394],
+ [-113.5186069761523, 47.307082915595394],
+ [-113.53231210417596, 47.307082915595394],
+ [-113.54601723219962, 47.307082915595394],
+ [-113.55972236022328, 47.307082915595394],
+ [-113.57342748824694, 47.307082915595394],
+ [-113.5871326162706, 47.307082915595394],
+ [-113.60083774429425, 47.307082915595394],
+ [-113.61454287231791, 47.307082915595394],
+ [-113.62824800034157, 47.307082915595394],
+ [-113.64195312836523, 47.307082915595394],
+ [-113.65565825638889, 47.307082915595394],
+ [-113.66936338441255, 47.307082915595394],
+ [-113.68306851243621, 47.307082915595394],
+ [-113.69677364045987, 47.307082915595394],
+ [-113.71047876848353, 47.307082915595394],
+ [-113.72418389650718, 47.307082915595394],
+ [-113.73788902453084, 47.307082915595394],
+ [-113.7515941525545, 47.307082915595394],
+ [-113.76529928057816, 47.307082915595394],
+ [-113.77900440860182, 47.307082915595394],
+ [-113.79270953662548, 47.307082915595394],
+ [-113.80641466464914, 47.307082915595394],
+ [-113.8201197926728, 47.307082915595394],
+ [-113.83382492069646, 47.307082915595394],
+ [-113.84753004872012, 47.307082915595394],
+ [-113.86123517674378, 47.307082915595394],
+ [-113.87494030476743, 47.307082915595394],
+ [-113.8886454327911, 47.307082915595394],
+ [-113.90235056081475, 47.307082915595394],
+ [-113.91605568883841, 47.307082915595394],
+ [-113.92976081686207, 47.307082915595394],
+ [-113.94346594488573, 47.307082915595394],
+ [-113.95717107290939, 47.307082915595394],
+ [-113.97087620093305, 47.307082915595394],
+ [-113.98458132895671, 47.307082915595394],
+ [-113.99828645698037, 47.307082915595394],
+ [-114.01199158500403, 47.307082915595394],
+ [-114.02569671302768, 47.307082915595394],
+ [-114.03940184105134, 47.307082915595394],
+ [-114.053106969075, 47.307082915595394],
+ [-114.06681209709866, 47.307082915595394],
+ [-114.08051722512232, 47.307082915595394],
+ [-114.09422235314598, 47.307082915595394],
+ [-114.10792748116964, 47.307082915595394],
+ [-114.1216326091933, 47.307082915595394],
+ [-114.13533773721696, 47.307082915595394],
+ [-114.14904286524062, 47.307082915595394],
+ [-114.16274799326428, 47.307082915595394],
+ [-114.17645312128793, 47.307082915595394],
+ [-114.1901582493116, 47.307082915595394],
+ [-114.20386337733525, 47.307082915595394],
+ [-114.21756850535891, 47.307082915595394],
+ [-114.23127363338257, 47.307082915595394],
+ [-114.24497876140623, 47.307082915595394],
+ [-114.25868388942989, 47.307082915595394],
+ [-114.27238901745355, 47.307082915595394],
+ [-114.28609414547721, 47.307082915595394],
+ [-114.29979927350087, 47.307082915595394],
+ [-114.31350440152453, 47.307082915595394],
+ [-114.32720952954818, 47.307082915595394],
+ [-114.34091465757184, 47.307082915595394],
+ [-114.3546197855955, 47.307082915595394],
+ [-114.36832491361916, 47.307082915595394],
+ [-114.38203004164282, 47.307082915595394],
+ [-114.39573516966648, 47.307082915595394],
+ [-114.40944029769014, 47.307082915595394],
+ [-114.4231454257138, 47.307082915595394],
+ [-114.43685055373746, 47.307082915595394],
+ [-114.45055568176112, 47.307082915595394],
+ [-114.46426080978478, 47.307082915595394],
+ [-114.47796593780843, 47.307082915595394],
+ [-114.4916710658321, 47.307082915595394],
+ [-114.50537619385575, 47.307082915595394],
+ [-114.51908132187941, 47.307082915595394],
+ [-114.53278644990307, 47.307082915595394],
+ [-114.54649157792673, 47.307082915595394],
+ [-114.56019670595039, 47.307082915595394],
+ [-114.57390183397405, 47.307082915595394],
+ [-114.58760696199771, 47.307082915595394],
+ [-114.60131209002137, 47.307082915595394],
+ [-114.61501721804503, 47.307082915595394],
+ [-114.62872234606868, 47.307082915595394],
+ [-114.64242747409234, 47.307082915595394],
+ [-114.656132602116, 47.307082915595394],
+ [-114.66983773013966, 47.307082915595394],
+ [-114.68354285816332, 47.307082915595394],
+ [-114.69724798618698, 47.307082915595394],
+ [-114.71095311421064, 47.307082915595394],
+ [-114.7246582422343, 47.307082915595394],
+ [-114.73836337025796, 47.307082915595394],
+ [-114.75206849828162, 47.307082915595394],
+ [-114.76577362630528, 47.307082915595394],
+ [-114.77947875432893, 47.307082915595394],
+ [-114.7931838823526, 47.307082915595394],
+ [-114.80688901037625, 47.307082915595394],
+ [-114.82059413839991, 47.307082915595394],
+ [-114.83429926642357, 47.307082915595394],
+ [-114.84800439444723, 47.307082915595394],
+ [-114.86170952247089, 47.307082915595394],
+ [-114.87541465049455, 47.307082915595394],
+ [-114.88911977851821, 47.307082915595394],
+ [-114.90282490654187, 47.307082915595394],
+ [-114.91653003456553, 47.307082915595394],
+ [-114.93023516258918, 47.307082915595394],
+ [-114.94394029061284, 47.307082915595394],
+ [-114.9576454186365, 47.307082915595394],
+ [-114.97135054666016, 47.307082915595394],
+ [-114.98505567468382, 47.307082915595394],
+ [-114.99876080270748, 47.307082915595394],
+ [-115.01246593073114, 47.307082915595394],
+ [-115.0261710587548, 47.307082915595394],
+ [-115.03987618677846, 47.307082915595394],
+ [-115.05358131480212, 47.307082915595394],
+ [-115.06728644282578, 47.307082915595394],
+ [-115.08099157084943, 47.307082915595394],
+ [-115.0946966988731, 47.307082915595394],
+ [-115.10840182689675, 47.307082915595394],
+ [-115.12210695492041, 47.307082915595394],
+ [-115.13581208294407, 47.307082915595394],
+ [-115.14951721096773, 47.307082915595394],
+ [-115.16322233899139, 47.307082915595394],
+ [-115.17692746701505, 47.307082915595394],
+ [-115.19063259503871, 47.307082915595394],
+ [-115.20433772306237, 47.307082915595394],
+ [-115.21804285108603, 47.307082915595394],
+ [-115.23174797910968, 47.307082915595394],
+ [-115.24545310713334, 47.307082915595394],
+ [-115.259158235157, 47.307082915595394],
+ [-115.27286336318066, 47.307082915595394],
+ [-115.28656849120432, 47.307082915595394],
+ [-115.30027361922798, 47.307082915595394],
+ [-115.31397874725164, 47.307082915595394],
+ [-115.3276838752753, 47.307082915595394],
+ [-115.34138900329896, 47.307082915595394],
+ [-115.35509413132262, 47.307082915595394],
+ [-115.36879925934628, 47.307082915595394],
+ [-115.38250438736993, 47.307082915595394],
+ [-115.3962095153936, 47.307082915595394],
+ [-115.40991464341725, 47.307082915595394],
+ [-115.42361977144091, 47.307082915595394],
+ [-115.43732489946457, 47.307082915595394],
+ [-115.45103002748823, 47.307082915595394],
+ [-115.46473515551189, 47.307082915595394],
+ [-115.47844028353555, 47.307082915595394],
+ [-115.4921454115592, 47.307082915595394],
+ [-115.50585053958287, 47.307082915595394],
+ [-115.51955566760653, 47.307082915595394],
+ [-115.53326079563018, 47.307082915595394],
+ [-115.54696592365384, 47.307082915595394],
+ [-115.5606710516775, 47.307082915595394],
+ [-115.57437617970116, 47.307082915595394],
+ [-115.58808130772482, 47.307082915595394],
+ [-115.60178643574848, 47.307082915595394],
+ [-115.61549156377214, 47.307082915595394],
+ [-115.6291966917958, 47.307082915595394],
+ [-115.64290181981946, 47.307082915595394],
+ [-115.65660694784312, 47.307082915595394],
+ [-115.67031207586678, 47.307082915595394],
+ [-115.68401720389043, 47.307082915595394],
+ [-115.6977223319141, 47.307082915595394],
+ [-115.71142745993775, 47.307082915595394],
+ [-115.72513258796141, 47.307082915595394],
+ [-115.73883771598507, 47.307082915595394],
+ [-115.75254284400873, 47.307082915595394],
+ [-115.76624797203239, 47.307082915595394],
+ [-115.77995310005605, 47.307082915595394],
+ [-115.7936582280797, 47.307082915595394],
+ [-115.80736335610337, 47.307082915595394],
+ [-115.82106848412703, 47.307082915595394],
+ [-115.83477361215068, 47.307082915595394],
+ [-115.84847874017434, 47.307082915595394],
+ [-115.862183868198, 47.307082915595394],
+ [-115.87588899622166, 47.307082915595394],
+ [-115.88959412424532, 47.307082915595394],
+ [-115.90329925226898, 47.307082915595394],
+ [-115.91700438029264, 47.307082915595394],
+ [-115.9307095083163, 47.307082915595394],
+ [-115.94441463633996, 47.307082915595394],
+ [-115.95811976436362, 47.307082915595394],
+ [-115.97182489238727, 47.307082915595394],
+ [-115.98553002041093, 47.307082915595394],
+ [-115.9992351484346, 47.307082915595394],
+ [-116.01294027645825, 47.307082915595394],
+ [-116.02664540448191, 47.307082915595394],
+ [-116.04035053250557, 47.307082915595394],
+ [-116.05405566052923, 47.307082915595394],
+ [-116.06776078855289, 47.307082915595394],
+ [-116.08146591657655, 47.307082915595394],
+ [-116.0951710446002, 47.307082915595394],
+ [-116.10887617262387, 47.307082915595394],
+ [-116.12258130064752, 47.307082915595394],
+ [-116.13628642867118, 47.307082915595394],
+ [-116.14999155669484, 47.307082915595394],
+ [-116.1636966847185, 47.307082915595394],
+ [-116.17740181274216, 47.307082915595394],
+ [-116.19110694076582, 47.307082915595394],
+ [-116.20481206878948, 47.307082915595394],
+ [-116.21851719681314, 47.307082915595394],
+ [-116.2322223248368, 47.307082915595394],
+ [-116.24592745286046, 47.307082915595394],
+ [-116.25963258088412, 47.307082915595394],
+ [-116.27333770890777, 47.307082915595394],
+ [-116.28704283693143, 47.307082915595394],
+ [-116.3007479649551, 47.307082915595394],
+ [-116.31445309297875, 47.307082915595394],
+ [-116.32815822100241, 47.307082915595394],
+ [-116.34186334902607, 47.307082915595394],
+ [-116.35556847704973, 47.307082915595394],
+ [-116.36927360507339, 47.307082915595394],
+ [-116.38297873309705, 47.307082915595394],
+ [-116.3966838611207, 47.307082915595394],
+ [-116.41038898914437, 47.307082915595394],
+ [-116.42409411716802, 47.307082915595394],
+ [-116.43779924519168, 47.307082915595394],
+ [-116.45150437321534, 47.307082915595394],
+ [-116.465209501239, 47.307082915595394],
+ [-116.47891462926266, 47.307082915595394],
+ [-116.49261975728632, 47.307082915595394],
+ [-116.50632488530998, 47.307082915595394],
+ [-116.52003001333364, 47.307082915595394],
+ [-116.5337351413573, 47.307082915595394],
+ [-116.54744026938096, 47.307082915595394],
+ [-116.56114539740462, 47.307082915595394],
+ [-116.57485052542827, 47.307082915595394],
+ [-116.58855565345193, 47.307082915595394],
+ [-116.6022607814756, 47.307082915595394],
+ [-116.61596590949925, 47.307082915595394],
+ [-116.62967103752291, 47.307082915595394],
+ [-116.64337616554657, 47.307082915595394],
+ [-116.65708129357023, 47.307082915595394],
+ [-116.67078642159389, 47.307082915595394],
+ [-116.68449154961755, 47.307082915595394],
+ [-116.6981966776412, 47.307082915595394],
+ [-116.71190180566487, 47.307082915595394],
+ [-116.72560693368852, 47.307082915595394],
+ [-116.73931206171218, 47.307082915595394],
+ [-116.75301718973584, 47.307082915595394],
+ [-116.7667223177595, 47.307082915595394],
+ [-116.78042744578316, 47.307082915595394],
+ [-116.79413257380682, 47.307082915595394],
+ [-116.80783770183048, 47.307082915595394],
+ [-116.82154282985414, 47.307082915595394],
+ [-116.8352479578778, 47.307082915595394],
+ [-116.84895308590146, 47.307082915595394],
+ [-116.86265821392512, 47.307082915595394],
+ [-116.87636334194877, 47.307082915595394],
+ [-116.89006846997243, 47.307082915595394],
+ [-116.90377359799609, 47.307082915595394],
+ [-116.91747872601975, 47.307082915595394],
+ [-116.93118385404341, 47.307082915595394],
+ [-116.94488898206707, 47.307082915595394],
+ [-116.95859411009073, 47.307082915595394],
+ [-116.97229923811439, 47.307082915595394],
+ [-116.98600436613805, 47.307082915595394],
+ [-116.9997094941617, 47.307082915595394],
+ [-117.01341462218537, 47.307082915595394],
+ [-117.02711975020902, 47.307082915595394],
+ [-117.04082487823268, 47.307082915595394],
+ [-117.05453000625634, 47.307082915595394],
+ [-117.06823513428, 47.307082915595394],
+ [-117.08194026230366, 47.307082915595394],
+ [-117.09564539032732, 47.307082915595394],
+ [-117.10935051835098, 47.307082915595394],
+ [-117.12305564637464, 47.307082915595394],
+ [-117.1367607743983, 47.307082915595394],
+ [-117.15046590242196, 47.307082915595394],
+ [-117.16417103044562, 47.307082915595394],
+ [-117.17787615846927, 47.307082915595394],
+ [-117.19158128649293, 47.307082915595394],
+ [-117.20528641451659, 47.307082915595394],
+ [-117.21899154254025, 47.307082915595394],
+ [-117.23269667056391, 47.307082915595394],
+ [-117.24640179858757, 47.307082915595394],
+ [-117.26010692661123, 47.307082915595394],
+ [-117.27381205463489, 47.307082915595394],
+ [-117.28751718265855, 47.307082915595394],
+ [-117.3012223106822, 47.307082915595394],
+ [-117.31492743870587, 47.307082915595394],
+ [-117.32863256672952, 47.307082915595394],
+ [-117.34233769475318, 47.307082915595394],
+ [-117.35604282277684, 47.307082915595394],
+ [-117.3697479508005, 47.307082915595394],
+ [-117.38345307882416, 47.307082915595394],
+ [-117.39715820684782, 47.307082915595394],
+ [-117.41086333487148, 47.307082915595394],
+ [-117.42456846289514, 47.307082915595394],
+ [-117.4382735909188, 47.307082915595394],
+ [-117.45197871894246, 47.307082915595394],
+ [-117.46568384696612, 47.307082915595394],
+ [-117.47938897498977, 47.307082915595394],
+ [-117.49309410301343, 47.307082915595394],
+ [-117.50679923103709, 47.307082915595394],
+ [-117.52050435906075, 47.307082915595394],
+ [-117.53420948708441, 47.307082915595394],
+ [-117.54791461510807, 47.307082915595394],
+ [-117.56161974313173, 47.307082915595394],
+ [-117.57532487115539, 47.307082915595394],
+ [-117.58902999917905, 47.307082915595394],
+ [-117.6027351272027, 47.307082915595394],
+ [-117.61644025522637, 47.307082915595394],
+ [-117.63014538325002, 47.307082915595394],
+ [-117.64385051127368, 47.307082915595394],
+ [-117.65755563929734, 47.307082915595394],
+ [-117.671260767321, 47.307082915595394],
+ [-117.68496589534466, 47.307082915595394],
+ [-117.69867102336832, 47.307082915595394],
+ [-117.71237615139198, 47.307082915595394],
+ [-117.72608127941564, 47.307082915595394],
+ [-117.7397864074393, 47.307082915595394],
+ [-117.75349153546296, 47.307082915595394],
+ [-117.76719666348662, 47.307082915595394],
+ [-117.78090179151027, 47.307082915595394],
+ [-117.79460691953393, 47.307082915595394],
+ [-117.80831204755759, 47.307082915595394],
+ [-117.82201717558125, 47.307082915595394],
+ [-117.83572230360491, 47.307082915595394],
+ [-117.84942743162857, 47.307082915595394],
+ [-117.86313255965223, 47.307082915595394],
+ [-117.87683768767589, 47.307082915595394],
+ [-117.89054281569955, 47.307082915595394],
+ [-117.9042479437232, 47.307082915595394],
+ [-117.91795307174687, 47.307082915595394],
+ [-117.93165819977052, 47.307082915595394],
+ [-117.94536332779418, 47.307082915595394],
+ [-117.95906845581784, 47.307082915595394],
+ [-117.9727735838415, 47.307082915595394],
+ [-117.98647871186516, 47.307082915595394],
+ [-118.00018383988882, 47.307082915595394],
+ [-118.01388896791248, 47.307082915595394],
+ [-118.02759409593614, 47.307082915595394],
+ [-118.0412992239598, 47.307082915595394],
+ [-118.05500435198346, 47.307082915595394],
+ [-118.06870948000712, 47.307082915595394],
+ [-118.08241460803077, 47.307082915595394],
+ [-118.09611973605443, 47.307082915595394],
+ [-118.10982486407809, 47.307082915595394],
+ [-118.12352999210175, 47.307082915595394],
+ [-118.13723512012541, 47.307082915595394],
+ [-118.15094024814907, 47.307082915595394],
+ [-118.16464537617273, 47.307082915595394],
+ [-118.17835050419639, 47.307082915595394],
+ [-118.19205563222005, 47.307082915595394],
+ [-118.2057607602437, 47.307082915595394],
+ [-118.21946588826737, 47.307082915595394],
+ [-118.23317101629102, 47.307082915595394],
+ [-118.24687614431468, 47.307082915595394],
+ [-118.26058127233834, 47.307082915595394],
+ [-118.274286400362, 47.307082915595394],
+ [-118.28799152838566, 47.307082915595394],
+ [-118.30169665640932, 47.307082915595394],
+ [-118.31540178443298, 47.307082915595394],
+ [-118.32910691245664, 47.307082915595394],
+ [-118.3428120404803, 47.307082915595394],
+ [-118.35651716850396, 47.307082915595394],
+ [-118.37022229652761, 47.307082915595394],
+ [-118.38392742455127, 47.307082915595394],
+ [-118.39763255257493, 47.307082915595394],
+ [-118.41133768059859, 47.307082915595394],
+ [-118.42504280862225, 47.307082915595394],
+ [-118.43874793664591, 47.307082915595394],
+ [-118.45245306466957, 47.307082915595394],
+ [-118.46615819269323, 47.307082915595394],
+ [-118.47986332071689, 47.307082915595394],
+ [-118.49356844874055, 47.307082915595394],
+ [-118.5072735767642, 47.307082915595394],
+ [-118.52097870478786, 47.307082915595394],
+ [-118.53468383281152, 47.307082915595394],
+ [-118.54838896083518, 47.307082915595394],
+ [-118.56209408885884, 47.307082915595394],
+ [-118.5757992168825, 47.307082915595394],
+ [-118.58950434490616, 47.307082915595394],
+ [-118.60320947292982, 47.307082915595394],
+ [-118.61691460095348, 47.307082915595394],
+ [-118.63061972897714, 47.307082915595394],
+ [-118.6443248570008, 47.307082915595394],
+ [-118.65802998502446, 47.307082915595394],
+ [-118.67173511304811, 47.307082915595394],
+ [-118.68544024107177, 47.307082915595394],
+ [-118.69914536909543, 47.307082915595394],
+ [-118.71285049711909, 47.307082915595394],
+ [-118.72655562514275, 47.307082915595394],
+ [-118.74026075316641, 47.307082915595394],
+ [-118.75396588119007, 47.307082915595394],
+ [-118.76767100921373, 47.307082915595394],
+ [-118.78137613723739, 47.307082915595394],
+ [-118.79508126526105, 47.307082915595394],
+ [-118.8087863932847, 47.307082915595394],
+ [-118.82249152130836, 47.307082915595394],
+ [-118.83619664933202, 47.307082915595394],
+ [-118.84990177735568, 47.307082915595394],
+ [-118.86360690537934, 47.307082915595394],
+ [-118.877312033403, 47.307082915595394],
+ [-118.89101716142666, 47.307082915595394],
+ [-118.90472228945032, 47.307082915595394],
+ [-118.91842741747398, 47.307082915595394],
+ [-118.93213254549764, 47.307082915595394],
+ [-118.9458376735213, 47.307082915595394],
+ [-118.95954280154496, 47.307082915595394],
+ [-118.97324792956861, 47.307082915595394],
+ [-118.98695305759227, 47.307082915595394],
+ [-119.00065818561593, 47.307082915595394],
+ [-119.01436331363959, 47.307082915595394],
+ [-119.02806844166325, 47.307082915595394],
+ [-119.04177356968691, 47.307082915595394],
+ [-119.05547869771057, 47.307082915595394],
+ [-119.06918382573423, 47.307082915595394],
+ [-119.08288895375789, 47.307082915595394],
+ [-119.09659408178155, 47.307082915595394],
+ [-119.1102992098052, 47.307082915595394],
+ [-119.12400433782886, 47.307082915595394],
+ [-119.13770946585252, 47.307082915595394],
+ [-119.15141459387618, 47.307082915595394],
+ [-119.16511972189984, 47.307082915595394],
+ [-119.1788248499235, 47.307082915595394],
+ [-119.19252997794716, 47.307082915595394],
+ [-119.20623510597082, 47.307082915595394],
+ [-119.21994023399448, 47.307082915595394],
+ [-119.23364536201814, 47.307082915595394],
+ [-119.2473504900418, 47.307082915595394],
+ [-119.26105561806546, 47.307082915595394],
+ [-119.27476074608911, 47.307082915595394],
+ [-119.28846587411277, 47.307082915595394],
+ [-119.30217100213643, 47.307082915595394],
+ [-119.31587613016009, 47.307082915595394],
+ [-119.32958125818375, 47.307082915595394],
+ [-119.34328638620741, 47.307082915595394],
+ [-119.35699151423107, 47.307082915595394],
+ [-119.37069664225473, 47.307082915595394],
+ [-119.38440177027839, 47.307082915595394],
+ [-119.39810689830205, 47.307082915595394],
+ [-119.4118120263257, 47.307082915595394],
+ [-119.42551715434936, 47.307082915595394],
+ [-119.43922228237302, 47.307082915595394],
+ [-119.45292741039668, 47.307082915595394],
+ [-119.46663253842034, 47.307082915595394],
+ [-119.480337666444, 47.307082915595394],
+ [-119.49404279446766, 47.307082915595394],
+ [-119.50774792249132, 47.307082915595394],
+ [-119.52145305051498, 47.307082915595394],
+ [-119.53515817853864, 47.307082915595394],
+ [-119.5488633065623, 47.307082915595394],
+ [-119.56256843458596, 47.307082915595394],
+ [-119.57627356260961, 47.307082915595394],
+ [-119.58997869063327, 47.307082915595394],
+ [-119.60368381865693, 47.307082915595394],
+ [-119.61738894668059, 47.307082915595394],
+ [-119.63109407470425, 47.307082915595394],
+ [-119.64479920272791, 47.307082915595394],
+ [-119.65850433075157, 47.307082915595394],
+ [-119.67220945877523, 47.307082915595394],
+ [-119.68591458679889, 47.307082915595394],
+ [-119.69961971482255, 47.307082915595394],
+ [-119.7133248428462, 47.307082915595394],
+ [-119.72702997086986, 47.307082915595394],
+ [-119.74073509889352, 47.307082915595394],
+ [-119.75444022691718, 47.307082915595394],
+ [-119.76814535494084, 47.307082915595394],
+ [-119.7818504829645, 47.307082915595394],
+ [-119.79555561098816, 47.307082915595394],
+ [-119.80926073901182, 47.307082915595394],
+ [-119.82296586703548, 47.307082915595394],
+ [-119.83667099505914, 47.307082915595394],
+ [-119.8503761230828, 47.307082915595394],
+ [-119.86408125110646, 47.307082915595394],
+ [-119.87778637913011, 47.307082915595394],
+ [-119.89149150715377, 47.307082915595394],
+ [-119.90519663517743, 47.307082915595394],
+ [-119.91890176320109, 47.307082915595394],
+ [-119.93260689122475, 47.307082915595394],
+ [-119.94631201924841, 47.307082915595394],
+ [-119.96001714727207, 47.307082915595394],
+ [-119.97372227529573, 47.307082915595394],
+ [-119.98742740331939, 47.307082915595394],
+ [-120.00113253134305, 47.307082915595394],
+ [-120.0148376593667, 47.307082915595394],
+ [-120.02854278739036, 47.307082915595394],
+ [-120.04224791541402, 47.307082915595394],
+ [-120.05595304343768, 47.307082915595394],
+ [-120.05595304343768, 47.29695109143884],
+ [-120.05595304343768, 47.28681926728229],
+ [-120.05595304343768, 47.27668744312574],
+ [-120.05595304343768, 47.266555618969186],
+ [-120.05595304343768, 47.25642379481263],
+ [-120.05595304343768, 47.24629197065608],
+ [-120.05595304343768, 47.23616014649953],
+ [-120.05595304343768, 47.22602832234298],
+ [-120.05595304343768, 47.215896498186424],
+ [-120.05595304343768, 47.20576467402987],
+ [-120.05595304343768, 47.19563284987332],
+ [-120.05595304343768, 47.18550102571677],
+ [-120.05595304343768, 47.175369201560216],
+ [-120.05595304343768, 47.16523737740366],
+ [-120.05595304343768, 47.15510555324711],
+ [-120.05595304343768, 47.14497372909056],
+ [-120.05595304343768, 47.13484190493401],
+ [-120.05595304343768, 47.124710080777454],
+ [-120.05595304343768, 47.1145782566209],
+ [-120.05595304343768, 47.10444643246435],
+ [-120.05595304343768, 47.0943146083078],
+ [-120.05595304343768, 47.084182784151245],
+ [-120.05595304343768, 47.07405095999469],
+ [-120.05595304343768, 47.06391913583814],
+ [-120.05595304343768, 47.05378731168159],
+ [-120.05595304343768, 47.04365548752504],
+ [-120.05595304343768, 47.033523663368484],
+ [-120.05595304343768, 47.02339183921193],
+ [-120.05595304343768, 47.01326001505538],
+ [-120.05595304343768, 47.00312819089883],
+ [-120.05595304343768, 46.992996366742275],
+ [-120.05595304343768, 46.98286454258572],
+ [-120.05595304343768, 46.97273271842917],
+ [-120.05595304343768, 46.96260089427262],
+ [-120.05595304343768, 46.95246907011607],
+ [-120.05595304343768, 46.942337245959514],
+ [-120.05595304343768, 46.93220542180296],
+ [-120.05595304343768, 46.92207359764641],
+ [-120.05595304343768, 46.91194177348986],
+ [-120.05595304343768, 46.901809949333305],
+ [-120.05595304343768, 46.89167812517675],
+ [-120.05595304343768, 46.8815463010202],
+ [-120.05595304343768, 46.87141447686365],
+ [-120.05595304343768, 46.8612826527071],
+ [-120.05595304343768, 46.851150828550544],
+ [-120.05595304343768, 46.84101900439399],
+ [-120.05595304343768, 46.83088718023744],
+ [-120.05595304343768, 46.82075535608089],
+ [-120.05595304343768, 46.810623531924335],
+ [-120.05595304343768, 46.80049170776778],
+ [-120.05595304343768, 46.79035988361123],
+ [-120.05595304343768, 46.78022805945468],
+ [-120.05595304343768, 46.770096235298126],
+ [-120.05595304343768, 46.759964411141574],
+ [-120.05595304343768, 46.74983258698502],
+ [-120.05595304343768, 46.73970076282847],
+ [-120.05595304343768, 46.72956893867192],
+ [-120.05595304343768, 46.719437114515365],
+ [-120.05595304343768, 46.70930529035881],
+ [-120.05595304343768, 46.69917346620226],
+ [-120.05595304343768, 46.68904164204571],
+ [-120.05595304343768, 46.678909817889156],
+ [-120.05595304343768, 46.668777993732604],
+ [-120.05595304343768, 46.65864616957605],
+ [-120.05595304343768, 46.6485143454195],
+ [-120.05595304343768, 46.63838252126295],
+ [-120.05595304343768, 46.628250697106395],
+ [-120.05595304343768, 46.61811887294984],
+ [-120.05595304343768, 46.60798704879329],
+ [-120.05595304343768, 46.59785522463674],
+ [-120.05595304343768, 46.587723400480186],
+ [-120.05595304343768, 46.577591576323634],
+ [-120.05595304343768, 46.56745975216708],
+ [-120.05595304343768, 46.55732792801053],
+ [-120.05595304343768, 46.54719610385398],
+ [-120.05595304343768, 46.537064279697425],
+ [-120.05595304343768, 46.52693245554087],
+ [-120.05595304343768, 46.51680063138432],
+ [-120.05595304343768, 46.50666880722777],
+ [-120.05595304343768, 46.496536983071216],
+ [-120.05595304343768, 46.486405158914664],
+ [-120.05595304343768, 46.47627333475811],
+ [-120.05595304343768, 46.46614151060156],
+ [-120.05595304343768, 46.45600968644501],
+ [-120.05595304343768, 46.445877862288455],
+ [-120.05595304343768, 46.4357460381319],
+ [-120.05595304343768, 46.42561421397535],
+ [-120.05595304343768, 46.4154823898188],
+ [-120.05595304343768, 46.405350565662246],
+ [-120.05595304343768, 46.395218741505694],
+ [-120.05595304343768, 46.38508691734914],
+ [-120.05595304343768, 46.37495509319259],
+ [-120.05595304343768, 46.36482326903604],
+ [-120.05595304343768, 46.354691444879485],
+ [-120.05595304343768, 46.34455962072293],
+ [-120.05595304343768, 46.33442779656638],
+ [-120.05595304343768, 46.32429597240983],
+ [-120.05595304343768, 46.314164148253276],
+ [-120.05595304343768, 46.304032324096724],
+ [-120.05595304343768, 46.29390049994017],
+ [-120.05595304343768, 46.28376867578362],
+ [-120.05595304343768, 46.27363685162707],
+ [-120.05595304343768, 46.263505027470515],
+ [-120.05595304343768, 46.25337320331396],
+ [-120.05595304343768, 46.24324137915741],
+ [-120.05595304343768, 46.23310955500086],
+ [-120.05595304343768, 46.222977730844306],
+ [-120.05595304343768, 46.212845906687754],
+ [-120.05595304343768, 46.2027140825312],
+ [-120.05595304343768, 46.19258225837465],
+ [-120.05595304343768, 46.1824504342181],
+ [-120.05595304343768, 46.172318610061545],
+ [-120.05595304343768, 46.16218678590499],
+ [-120.05595304343768, 46.15205496174844],
+ [-120.05595304343768, 46.14192313759189],
+ [-120.05595304343768, 46.131791313435336],
+ [-120.05595304343768, 46.121659489278784],
+ [-120.05595304343768, 46.11152766512223],
+ [-120.05595304343768, 46.10139584096568],
+ [-120.05595304343768, 46.09126401680913],
+ [-120.05595304343768, 46.081132192652575],
+ [-120.05595304343768, 46.07100036849602],
+ [-120.05595304343768, 46.06086854433947],
+ [-120.05595304343768, 46.05073672018292],
+ [-120.05595304343768, 46.040604896026366],
+ [-120.05595304343768, 46.030473071869814],
+ [-120.05595304343768, 46.02034124771326],
+ [-120.05595304343768, 46.01020942355671],
+ [-120.05595304343768, 46.00007759940016],
+ [-120.05595304343768, 45.989945775243605],
+ [-120.05595304343768, 45.97981395108705],
+ [-120.05595304343768, 45.9696821269305],
+ [-120.05595304343768, 45.95955030277395],
+ [-120.05595304343768, 45.949418478617396],
+ [-120.05595304343768, 45.939286654460844],
+ [-120.05595304343768, 45.92915483030429],
+ [-120.05595304343768, 45.91902300614774],
+ [-120.05595304343768, 45.90889118199119],
+ [-120.05595304343768, 45.898759357834635],
+ [-120.05595304343768, 45.88862753367808],
+ [-120.05595304343768, 45.87849570952153],
+ [-120.05595304343768, 45.86836388536498],
+ [-120.05595304343768, 45.858232061208426],
+ [-120.05595304343768, 45.848100237051874],
+ [-120.05595304343768, 45.83796841289532],
+ [-120.05595304343768, 45.82783658873877],
+ [-120.05595304343768, 45.81770476458222],
+ [-120.05595304343768, 45.807572940425665],
+ [-120.05595304343768, 45.79744111626911],
+ [-120.05595304343768, 45.78730929211256],
+ [-120.05595304343768, 45.77717746795601],
+ [-120.05595304343768, 45.767045643799456],
+ [-120.05595304343768, 45.756913819642904],
+ [-120.05595304343768, 45.74678199548635],
+ [-120.05595304343768, 45.7366501713298],
+ [-120.05595304343768, 45.72651834717325],
+ [-120.05595304343768, 45.716386523016695],
+ [-120.05595304343768, 45.70625469886014],
+ [-120.05595304343768, 45.69612287470359],
+ [-120.05595304343768, 45.68599105054704],
+ [-120.05595304343768, 45.675859226390486],
+ [-120.05595304343768, 45.665727402233934],
+ [-120.05595304343768, 45.65559557807738],
+ [-120.05595304343768, 45.64546375392083],
+ [-120.05595304343768, 45.63533192976428],
+ [-120.05595304343768, 45.625200105607725],
+ [-120.05595304343768, 45.61506828145117],
+ [-120.05595304343768, 45.60493645729462],
+ [-120.05595304343768, 45.59480463313807],
+ [-120.05595304343768, 45.584672808981516],
+ [-120.05595304343768, 45.574540984824964],
+ [-120.05595304343768, 45.56440916066841],
+ [-120.05595304343768, 45.55427733651186],
+ [-120.05595304343768, 45.54414551235531],
+ [-120.05595304343768, 45.534013688198755],
+ [-120.05595304343768, 45.5238818640422],
+ [-120.05595304343768, 45.51375003988565],
+ [-120.05595304343768, 45.5036182157291],
+ [-120.05595304343768, 45.493486391572546],
+ [-120.05595304343768, 45.483354567415994],
+ [-120.05595304343768, 45.47322274325944],
+ [-120.05595304343768, 45.46309091910289],
+ [-120.05595304343768, 45.45295909494634],
+ [-120.05595304343768, 45.442827270789785],
+ [-120.05595304343768, 45.43269544663323],
+ [-120.05595304343768, 45.42256362247668],
+ [-120.05595304343768, 45.41243179832013],
+ [-120.05595304343768, 45.402299974163576],
+ [-120.05595304343768, 45.39216815000702],
+ [-120.05595304343768, 45.38203632585047],
+ [-120.05595304343768, 45.37190450169392],
+ [-120.05595304343768, 45.36177267753737],
+ [-120.05595304343768, 45.351640853380815],
+ [-120.05595304343768, 45.34150902922426],
+ [-120.05595304343768, 45.33137720506771],
+ [-120.05595304343768, 45.32124538091116],
+ [-120.05595304343768, 45.311113556754606],
+ [-120.05595304343768, 45.30098173259805],
+ [-120.05595304343768, 45.2908499084415],
+ [-120.05595304343768, 45.28071808428495],
+ [-120.05595304343768, 45.2705862601284],
+ [-120.05595304343768, 45.260454435971845],
+ [-120.05595304343768, 45.25032261181529],
+ [-120.05595304343768, 45.24019078765874],
+ [-120.05595304343768, 45.23005896350219],
+ [-120.05595304343768, 45.219927139345636],
+ [-120.05595304343768, 45.20979531518908],
+ [-120.05595304343768, 45.19966349103253],
+ [-120.05595304343768, 45.18953166687598],
+ [-120.05595304343768, 45.17939984271943],
+ [-120.05595304343768, 45.169268018562875],
+ [-120.05595304343768, 45.15913619440632],
+ [-120.05595304343768, 45.14900437024977],
+ [-120.05595304343768, 45.13887254609322],
+ [-120.05595304343768, 45.128740721936666],
+ [-120.05595304343768, 45.11860889778011],
+ [-120.05595304343768, 45.10847707362356],
+ [-120.05595304343768, 45.09834524946701],
+ [-120.05595304343768, 45.08821342531046],
+ [-120.05595304343768, 45.078081601153905],
+ [-120.05595304343768, 45.06794977699735],
+ [-120.05595304343768, 45.0578179528408],
+ [-120.05595304343768, 45.04768612868425],
+ [-120.05595304343768, 45.037554304527696],
+ [-120.05595304343768, 45.02742248037114],
+ [-120.05595304343768, 45.01729065621459],
+ [-120.05595304343768, 45.00715883205804],
+ [-120.05595304343768, 44.99702700790149],
+ [-120.05595304343768, 44.986895183744934],
+ [-120.05595304343768, 44.97676335958838],
+ [-120.05595304343768, 44.96663153543183],
+ [-120.05595304343768, 44.95649971127528],
+ [-120.05595304343768, 44.946367887118726],
+ [-120.05595304343768, 44.93623606296217],
+ [-120.05595304343768, 44.92610423880562],
+ [-120.05595304343768, 44.91597241464907],
+ [-120.05595304343768, 44.90584059049252],
+ [-120.05595304343768, 44.895708766335964],
+ [-120.05595304343768, 44.88557694217941],
+ [-120.05595304343768, 44.87544511802286],
+ [-120.05595304343768, 44.86531329386631],
+ [-120.05595304343768, 44.855181469709756],
+ [-120.05595304343768, 44.8450496455532],
+ [-120.05595304343768, 44.83491782139665],
+ [-120.05595304343768, 44.8247859972401],
+ [-120.05595304343768, 44.81465417308355],
+ [-120.05595304343768, 44.804522348926994],
+ [-120.05595304343768, 44.79439052477044],
+ [-120.05595304343768, 44.78425870061389],
+ [-120.05595304343768, 44.77412687645734],
+ [-120.05595304343768, 44.763995052300785],
+ [-120.05595304343768, 44.75386322814423],
+ [-120.05595304343768, 44.74373140398768],
+ [-120.05595304343768, 44.73359957983113],
+ [-120.05595304343768, 44.72346775567458],
+ [-120.05595304343768, 44.713335931518024],
+ [-120.05595304343768, 44.70320410736147],
+ [-120.05595304343768, 44.69307228320492],
+ [-120.05595304343768, 44.68294045904837],
+ [-120.05595304343768, 44.672808634891815],
+ [-120.05595304343768, 44.66267681073526],
+ [-120.05595304343768, 44.65254498657871],
+ [-120.05595304343768, 44.64241316242216],
+ [-120.05595304343768, 44.63228133826561],
+ [-120.05595304343768, 44.622149514109054],
+ [-120.05595304343768, 44.6120176899525],
+ [-120.05595304343768, 44.60188586579595],
+ [-120.05595304343768, 44.5917540416394],
+ [-120.05595304343768, 44.581622217482845],
+ [-120.05595304343768, 44.57149039332629],
+ [-120.05595304343768, 44.56135856916974],
+ [-120.05595304343768, 44.55122674501319],
+ [-120.05595304343768, 44.54109492085664],
+ [-120.05595304343768, 44.530963096700084],
+ [-120.05595304343768, 44.52083127254353],
+ [-120.05595304343768, 44.51069944838698],
+ [-120.05595304343768, 44.50056762423043],
+ [-120.05595304343768, 44.490435800073875],
+ [-120.05595304343768, 44.48030397591732],
+ [-120.05595304343768, 44.47017215176077],
+ [-120.05595304343768, 44.46004032760422],
+ [-120.05595304343768, 44.449908503447666],
+ [-120.05595304343768, 44.439776679291114],
+ [-120.05595304343768, 44.42964485513456],
+ [-120.05595304343768, 44.41951303097801],
+ [-120.05595304343768, 44.40938120682146],
+ [-120.05595304343768, 44.399249382664905],
+ [-120.05595304343768, 44.38911755850835],
+ [-120.05595304343768, 44.3789857343518],
+ [-120.05595304343768, 44.36885391019525],
+ [-120.05595304343768, 44.358722086038696],
+ [-120.05595304343768, 44.348590261882144],
+ [-120.05595304343768, 44.33845843772559],
+ [-120.05595304343768, 44.32832661356904],
+ [-120.05595304343768, 44.31819478941249],
+ [-120.05595304343768, 44.308062965255935],
+ [-120.05595304343768, 44.29793114109938],
+ [-120.05595304343768, 44.28779931694283],
+ [-120.05595304343768, 44.27766749278628],
+ [-120.05595304343768, 44.267535668629726],
+ [-120.05595304343768, 44.257403844473174],
+ [-120.05595304343768, 44.24727202031662],
+ [-120.05595304343768, 44.23714019616007],
+ [-120.05595304343768, 44.22700837200352],
+ [-120.05595304343768, 44.216876547846965],
+ [-120.05595304343768, 44.20674472369041],
+ [-120.05595304343768, 44.19661289953386],
+ [-120.05595304343768, 44.18648107537731],
+ [-120.05595304343768, 44.176349251220756],
+ [-120.05595304343768, 44.166217427064204],
+ [-120.05595304343768, 44.15608560290765],
+ [-120.05595304343768, 44.1459537787511],
+ [-120.05595304343768, 44.13582195459455],
+ [-120.05595304343768, 44.125690130437995],
+ [-120.05595304343768, 44.11555830628144],
+ [-120.05595304343768, 44.10542648212489],
+ [-120.05595304343768, 44.09529465796834],
+ [-120.05595304343768, 44.085162833811786],
+ [-120.05595304343768, 44.075031009655234],
+ [-120.05595304343768, 44.06489918549868],
+ [-120.05595304343768, 44.05476736134213],
+ [-120.05595304343768, 44.04463553718558],
+ [-120.05595304343768, 44.034503713029025],
+ [-120.05595304343768, 44.02437188887247],
+ [-120.05595304343768, 44.01424006471592],
+ [-120.05595304343768, 44.00410824055937],
+ [-120.05595304343768, 43.993976416402816],
+ [-120.05595304343768, 43.983844592246264],
+ [-120.05595304343768, 43.97371276808971],
+ [-120.05595304343768, 43.96358094393316],
+ [-120.05595304343768, 43.95344911977661],
+ [-120.05595304343768, 43.943317295620055],
+ [-120.05595304343768, 43.9331854714635],
+ [-120.05595304343768, 43.92305364730695],
+ [-120.05595304343768, 43.9129218231504],
+ [-120.05595304343768, 43.902789998993846],
+ [-120.05595304343768, 43.892658174837294],
+ [-120.05595304343768, 43.88252635068074],
+ [-120.05595304343768, 43.87239452652419],
+ [-120.05595304343768, 43.86226270236764],
+ [-120.05595304343768, 43.852130878211085],
+ [-120.05595304343768, 43.84199905405453],
+ [-120.05595304343768, 43.83186722989798],
+ [-120.05595304343768, 43.82173540574143],
+ [-120.05595304343768, 43.811603581584876],
+ [-120.05595304343768, 43.801471757428324],
+ [-120.05595304343768, 43.79133993327177],
+ [-120.05595304343768, 43.78120810911522],
+ [-120.05595304343768, 43.77107628495867],
+ [-120.05595304343768, 43.760944460802115],
+ [-120.05595304343768, 43.75081263664556],
+ [-120.05595304343768, 43.74068081248901],
+ [-120.05595304343768, 43.73054898833246],
+ [-120.05595304343768, 43.720417164175906],
+ [-120.05595304343768, 43.710285340019354],
+ [-120.05595304343768, 43.7001535158628],
+ [-120.05595304343768, 43.69002169170625],
+ [-120.05595304343768, 43.6798898675497],
+ [-120.05595304343768, 43.669758043393145],
+ [-120.05595304343768, 43.65962621923659],
+ [-120.05595304343768, 43.64949439508004],
+ [-120.05595304343768, 43.63936257092349],
+ [-120.05595304343768, 43.629230746766936],
+ [-120.05595304343768, 43.619098922610384],
+ [-120.05595304343768, 43.60896709845383],
+ [-120.05595304343768, 43.59883527429728],
+ [-120.05595304343768, 43.58870345014073],
+ [-120.05595304343768, 43.578571625984175],
+ [-120.05595304343768, 43.56843980182762],
+ [-120.05595304343768, 43.55830797767107],
+ [-120.05595304343768, 43.54817615351452],
+ [-120.05595304343768, 43.538044329357966],
+ [-120.05595304343768, 43.527912505201414],
+ [-120.05595304343768, 43.51778068104486],
+ [-120.05595304343768, 43.50764885688831],
+ [-120.05595304343768, 43.49751703273176],
+ [-120.05595304343768, 43.487385208575205],
+ [-120.05595304343768, 43.47725338441865],
+ [-120.05595304343768, 43.4671215602621],
+ [-120.05595304343768, 43.45698973610555],
+ [-120.05595304343768, 43.446857911948996],
+ [-120.05595304343768, 43.436726087792444],
+ [-120.05595304343768, 43.42659426363589],
+ [-120.05595304343768, 43.41646243947934],
+ [-120.05595304343768, 43.40633061532279],
+ [-120.05595304343768, 43.396198791166235],
+ [-120.05595304343768, 43.38606696700968],
+ [-120.05595304343768, 43.37593514285313],
+ [-120.05595304343768, 43.36580331869658],
+ [-120.05595304343768, 43.355671494540026],
+ [-120.05595304343768, 43.345539670383474],
+ [-120.05595304343768, 43.33540784622692],
+ [-120.05595304343768, 43.32527602207037],
+ [-120.05595304343768, 43.31514419791382],
+ [-120.05595304343768, 43.305012373757265],
+ [-120.05595304343768, 43.29488054960071],
+ [-120.05595304343768, 43.28474872544416],
+ [-120.05595304343768, 43.27461690128761],
+ [-120.05595304343768, 43.264485077131056],
+ [-120.05595304343768, 43.254353252974504],
+ [-120.05595304343768, 43.24422142881795],
+ [-120.05595304343768, 43.2340896046614],
+ [-120.05595304343768, 43.22395778050485],
+ [-120.05595304343768, 43.213825956348295],
+ [-120.05595304343768, 43.20369413219174],
+ [-120.05595304343768, 43.19356230803519],
+ [-120.05595304343768, 43.18343048387864],
+ [-120.05595304343768, 43.173298659722086],
+ [-120.05595304343768, 43.163166835565534],
+ [-120.05595304343768, 43.15303501140898],
+ [-120.05595304343768, 43.14290318725243],
+ [-120.05595304343768, 43.13277136309588],
+ [-120.05595304343768, 43.122639538939325],
+ [-120.05595304343768, 43.11250771478277],
+ [-120.05595304343768, 43.10237589062622],
+ [-120.05595304343768, 43.09224406646967],
+ [-120.05595304343768, 43.082112242313116],
+ [-120.05595304343768, 43.07198041815656],
+ [-120.05595304343768, 43.06184859400001],
+ [-120.05595304343768, 43.05171676984346],
+ [-120.05595304343768, 43.04158494568691],
+ [-120.05595304343768, 43.031453121530355],
+ [-120.05595304343768, 43.0213212973738],
+ [-120.05595304343768, 43.01118947321725],
+ [-120.05595304343768, 43.0010576490607],
+ [-120.05595304343768, 42.990925824904146],
+ [-120.05595304343768, 42.98079400074759],
+ [-120.05595304343768, 42.97066217659104],
+ [-120.05595304343768, 42.96053035243449],
+ [-120.05595304343768, 42.95039852827794],
+ [-120.05595304343768, 42.940266704121385],
+ [-120.05595304343768, 42.93013487996483],
+ [-120.05595304343768, 42.92000305580828],
+ [-120.05595304343768, 42.90987123165173],
+ [-120.05595304343768, 42.899739407495176],
+ [-120.05595304343768, 42.88960758333862],
+ [-120.05595304343768, 42.87947575918207],
+ [-120.05595304343768, 42.86934393502552],
+ [-120.05595304343768, 42.85921211086897],
+ [-120.05595304343768, 42.849080286712415],
+ [-120.05595304343768, 42.83894846255586],
+ [-120.05595304343768, 42.82881663839931],
+ [-120.05595304343768, 42.81868481424276],
+ [-120.05595304343768, 42.808552990086206],
+ [-120.05595304343768, 42.79842116592965],
+ [-120.05595304343768, 42.7882893417731],
+ [-120.05595304343768, 42.77815751761655],
+ [-120.05595304343768, 42.76802569346],
+ [-120.05595304343768, 42.757893869303444],
+ [-120.05595304343768, 42.74776204514689],
+ [-120.05595304343768, 42.73763022099034],
+ [-120.05595304343768, 42.72749839683379],
+ [-120.05595304343768, 42.717366572677236],
+ [-120.05595304343768, 42.70723474852068],
+ [-120.05595304343768, 42.69710292436413],
+ [-120.05595304343768, 42.68697110020758],
+ [-120.05595304343768, 42.67683927605103],
+ [-120.05595304343768, 42.666707451894474],
+ [-120.05595304343768, 42.65657562773792],
+ [-120.05595304343768, 42.64644380358137],
+ [-120.05595304343768, 42.63631197942482],
+ [-120.05595304343768, 42.626180155268266],
+ [-120.05595304343768, 42.61604833111171],
+ [-120.05595304343768, 42.60591650695516],
+ [-120.05595304343768, 42.59578468279861],
+ [-120.05595304343768, 42.58565285864206],
+ [-120.05595304343768, 42.575521034485504],
+ [-120.05595304343768, 42.56538921032895],
+ [-120.05595304343768, 42.5552573861724],
+ [-120.05595304343768, 42.54512556201585],
+ [-120.05595304343768, 42.534993737859295],
+ [-120.05595304343768, 42.52486191370274],
+ [-120.05595304343768, 42.51473008954619],
+ [-120.05595304343768, 42.50459826538964],
+ [-120.05595304343768, 42.49446644123309],
+ [-120.05595304343768, 42.484334617076534],
+ [-120.05595304343768, 42.47420279291998],
+ [-120.05595304343768, 42.46407096876343],
+ [-120.05595304343768, 42.45393914460688],
+ [-120.05595304343768, 42.443807320450325],
+ [-120.05595304343768, 42.43367549629377],
+ [-120.05595304343768, 42.42354367213722],
+ [-120.05595304343768, 42.41341184798067],
+ [-120.05595304343768, 42.40328002382412],
+ [-120.05595304343768, 42.393148199667564],
+ [-120.05595304343768, 42.38301637551101],
+ [-120.05595304343768, 42.37288455135446],
+ [-120.05595304343768, 42.36275272719791],
+ [-120.05595304343768, 42.352620903041355],
+ [-120.05595304343768, 42.3424890788848],
+ [-120.05595304343768, 42.33235725472825],
+ [-120.05595304343768, 42.3222254305717],
+ [-120.05595304343768, 42.31209360641515],
+ [-120.04224791541402, 42.31209360641515],
+ [-120.02854278739036, 42.31209360641515],
+ [-120.0148376593667, 42.31209360641515],
+ [-120.00113253134305, 42.31209360641515],
+ [-119.98742740331939, 42.31209360641515],
+ [-119.97372227529573, 42.31209360641515],
+ [-119.96001714727207, 42.31209360641515],
+ [-119.94631201924841, 42.31209360641515],
+ [-119.93260689122475, 42.31209360641515],
+ [-119.91890176320109, 42.31209360641515],
+ [-119.90519663517743, 42.31209360641515],
+ [-119.89149150715377, 42.31209360641515],
+ [-119.87778637913011, 42.31209360641515],
+ [-119.86408125110646, 42.31209360641515],
+ [-119.8503761230828, 42.31209360641515],
+ [-119.83667099505914, 42.31209360641515],
+ [-119.82296586703548, 42.31209360641515],
+ [-119.80926073901182, 42.31209360641515],
+ [-119.79555561098816, 42.31209360641515],
+ [-119.7818504829645, 42.31209360641515],
+ [-119.76814535494084, 42.31209360641515],
+ [-119.75444022691718, 42.31209360641515],
+ [-119.74073509889352, 42.31209360641515],
+ [-119.72702997086986, 42.31209360641515],
+ [-119.7133248428462, 42.31209360641515],
+ [-119.69961971482255, 42.31209360641515],
+ [-119.68591458679889, 42.31209360641515],
+ [-119.67220945877523, 42.31209360641515],
+ [-119.65850433075157, 42.31209360641515],
+ [-119.64479920272791, 42.31209360641515],
+ [-119.63109407470425, 42.31209360641515],
+ [-119.61738894668059, 42.31209360641515],
+ [-119.60368381865693, 42.31209360641515],
+ [-119.58997869063327, 42.31209360641515],
+ [-119.57627356260961, 42.31209360641515],
+ [-119.56256843458596, 42.31209360641515],
+ [-119.5488633065623, 42.31209360641515],
+ [-119.53515817853864, 42.31209360641515],
+ [-119.52145305051498, 42.31209360641515],
+ [-119.50774792249132, 42.31209360641515],
+ [-119.49404279446766, 42.31209360641515],
+ [-119.480337666444, 42.31209360641515],
+ [-119.46663253842034, 42.31209360641515],
+ [-119.45292741039668, 42.31209360641515],
+ [-119.43922228237302, 42.31209360641515],
+ [-119.42551715434936, 42.31209360641515],
+ [-119.4118120263257, 42.31209360641515],
+ [-119.39810689830205, 42.31209360641515],
+ [-119.38440177027839, 42.31209360641515],
+ [-119.37069664225473, 42.31209360641515],
+ [-119.35699151423107, 42.31209360641515],
+ [-119.34328638620741, 42.31209360641515],
+ [-119.32958125818375, 42.31209360641515],
+ [-119.31587613016009, 42.31209360641515],
+ [-119.30217100213643, 42.31209360641515],
+ [-119.28846587411277, 42.31209360641515],
+ [-119.27476074608911, 42.31209360641515],
+ [-119.26105561806546, 42.31209360641515],
+ [-119.2473504900418, 42.31209360641515],
+ [-119.23364536201814, 42.31209360641515],
+ [-119.21994023399448, 42.31209360641515],
+ [-119.20623510597082, 42.31209360641515],
+ [-119.19252997794716, 42.31209360641515],
+ [-119.1788248499235, 42.31209360641515],
+ [-119.16511972189984, 42.31209360641515],
+ [-119.15141459387618, 42.31209360641515],
+ [-119.13770946585252, 42.31209360641515],
+ [-119.12400433782886, 42.31209360641515],
+ [-119.1102992098052, 42.31209360641515],
+ [-119.09659408178155, 42.31209360641515],
+ [-119.08288895375789, 42.31209360641515],
+ [-119.06918382573423, 42.31209360641515],
+ [-119.05547869771057, 42.31209360641515],
+ [-119.04177356968691, 42.31209360641515],
+ [-119.02806844166325, 42.31209360641515],
+ [-119.01436331363959, 42.31209360641515],
+ [-119.00065818561593, 42.31209360641515],
+ [-118.98695305759227, 42.31209360641515],
+ [-118.97324792956861, 42.31209360641515],
+ [-118.95954280154496, 42.31209360641515],
+ [-118.9458376735213, 42.31209360641515],
+ [-118.93213254549764, 42.31209360641515],
+ [-118.91842741747398, 42.31209360641515],
+ [-118.90472228945032, 42.31209360641515],
+ [-118.89101716142666, 42.31209360641515],
+ [-118.877312033403, 42.31209360641515],
+ [-118.86360690537934, 42.31209360641515],
+ [-118.84990177735568, 42.31209360641515],
+ [-118.83619664933202, 42.31209360641515],
+ [-118.82249152130836, 42.31209360641515],
+ [-118.8087863932847, 42.31209360641515],
+ [-118.79508126526105, 42.31209360641515],
+ [-118.78137613723739, 42.31209360641515],
+ [-118.76767100921373, 42.31209360641515],
+ [-118.75396588119007, 42.31209360641515],
+ [-118.74026075316641, 42.31209360641515],
+ [-118.72655562514275, 42.31209360641515],
+ [-118.71285049711909, 42.31209360641515],
+ [-118.69914536909543, 42.31209360641515],
+ [-118.68544024107177, 42.31209360641515],
+ [-118.67173511304811, 42.31209360641515],
+ [-118.65802998502446, 42.31209360641515],
+ [-118.6443248570008, 42.31209360641515],
+ [-118.63061972897714, 42.31209360641515],
+ [-118.61691460095348, 42.31209360641515],
+ [-118.60320947292982, 42.31209360641515],
+ [-118.58950434490616, 42.31209360641515],
+ [-118.5757992168825, 42.31209360641515],
+ [-118.56209408885884, 42.31209360641515],
+ [-118.54838896083518, 42.31209360641515],
+ [-118.53468383281152, 42.31209360641515],
+ [-118.52097870478786, 42.31209360641515],
+ [-118.5072735767642, 42.31209360641515],
+ [-118.49356844874055, 42.31209360641515],
+ [-118.47986332071689, 42.31209360641515],
+ [-118.46615819269323, 42.31209360641515],
+ [-118.45245306466957, 42.31209360641515],
+ [-118.43874793664591, 42.31209360641515],
+ [-118.42504280862225, 42.31209360641515],
+ [-118.41133768059859, 42.31209360641515],
+ [-118.39763255257493, 42.31209360641515],
+ [-118.38392742455127, 42.31209360641515],
+ [-118.37022229652761, 42.31209360641515],
+ [-118.35651716850396, 42.31209360641515],
+ [-118.3428120404803, 42.31209360641515],
+ [-118.32910691245664, 42.31209360641515],
+ [-118.31540178443298, 42.31209360641515],
+ [-118.30169665640932, 42.31209360641515],
+ [-118.28799152838566, 42.31209360641515],
+ [-118.274286400362, 42.31209360641515],
+ [-118.26058127233834, 42.31209360641515],
+ [-118.24687614431468, 42.31209360641515],
+ [-118.23317101629102, 42.31209360641515],
+ [-118.21946588826737, 42.31209360641515],
+ [-118.2057607602437, 42.31209360641515],
+ [-118.19205563222005, 42.31209360641515],
+ [-118.17835050419639, 42.31209360641515],
+ [-118.16464537617273, 42.31209360641515],
+ [-118.15094024814907, 42.31209360641515],
+ [-118.13723512012541, 42.31209360641515],
+ [-118.12352999210175, 42.31209360641515],
+ [-118.10982486407809, 42.31209360641515],
+ [-118.09611973605443, 42.31209360641515],
+ [-118.08241460803077, 42.31209360641515],
+ [-118.06870948000712, 42.31209360641515],
+ [-118.05500435198346, 42.31209360641515],
+ [-118.0412992239598, 42.31209360641515],
+ [-118.02759409593614, 42.31209360641515],
+ [-118.01388896791248, 42.31209360641515],
+ [-118.00018383988882, 42.31209360641515],
+ [-117.98647871186516, 42.31209360641515],
+ [-117.9727735838415, 42.31209360641515],
+ [-117.95906845581784, 42.31209360641515],
+ [-117.94536332779418, 42.31209360641515],
+ [-117.93165819977052, 42.31209360641515],
+ [-117.91795307174687, 42.31209360641515],
+ [-117.9042479437232, 42.31209360641515],
+ [-117.89054281569955, 42.31209360641515],
+ [-117.87683768767589, 42.31209360641515],
+ [-117.86313255965223, 42.31209360641515],
+ [-117.84942743162857, 42.31209360641515],
+ [-117.83572230360491, 42.31209360641515],
+ [-117.82201717558125, 42.31209360641515],
+ [-117.80831204755759, 42.31209360641515],
+ [-117.79460691953393, 42.31209360641515],
+ [-117.78090179151027, 42.31209360641515],
+ [-117.76719666348662, 42.31209360641515],
+ [-117.75349153546296, 42.31209360641515],
+ [-117.7397864074393, 42.31209360641515],
+ [-117.72608127941564, 42.31209360641515],
+ [-117.71237615139198, 42.31209360641515],
+ [-117.69867102336832, 42.31209360641515],
+ [-117.68496589534466, 42.31209360641515],
+ [-117.671260767321, 42.31209360641515],
+ [-117.65755563929734, 42.31209360641515],
+ [-117.64385051127368, 42.31209360641515],
+ [-117.63014538325002, 42.31209360641515],
+ [-117.61644025522637, 42.31209360641515],
+ [-117.6027351272027, 42.31209360641515],
+ [-117.58902999917905, 42.31209360641515],
+ [-117.57532487115539, 42.31209360641515],
+ [-117.56161974313173, 42.31209360641515],
+ [-117.54791461510807, 42.31209360641515],
+ [-117.53420948708441, 42.31209360641515],
+ [-117.52050435906075, 42.31209360641515],
+ [-117.50679923103709, 42.31209360641515],
+ [-117.49309410301343, 42.31209360641515],
+ [-117.47938897498977, 42.31209360641515],
+ [-117.46568384696612, 42.31209360641515],
+ [-117.45197871894246, 42.31209360641515],
+ [-117.4382735909188, 42.31209360641515],
+ [-117.42456846289514, 42.31209360641515],
+ [-117.41086333487148, 42.31209360641515],
+ [-117.39715820684782, 42.31209360641515],
+ [-117.38345307882416, 42.31209360641515],
+ [-117.3697479508005, 42.31209360641515],
+ [-117.35604282277684, 42.31209360641515],
+ [-117.34233769475318, 42.31209360641515],
+ [-117.32863256672952, 42.31209360641515],
+ [-117.31492743870587, 42.31209360641515],
+ [-117.3012223106822, 42.31209360641515],
+ [-117.28751718265855, 42.31209360641515],
+ [-117.27381205463489, 42.31209360641515],
+ [-117.26010692661123, 42.31209360641515],
+ [-117.24640179858757, 42.31209360641515],
+ [-117.23269667056391, 42.31209360641515],
+ [-117.21899154254025, 42.31209360641515],
+ [-117.20528641451659, 42.31209360641515],
+ [-117.19158128649293, 42.31209360641515],
+ [-117.17787615846927, 42.31209360641515],
+ [-117.16417103044562, 42.31209360641515],
+ [-117.15046590242196, 42.31209360641515],
+ [-117.1367607743983, 42.31209360641515],
+ [-117.12305564637464, 42.31209360641515],
+ [-117.10935051835098, 42.31209360641515],
+ [-117.09564539032732, 42.31209360641515],
+ [-117.08194026230366, 42.31209360641515],
+ [-117.06823513428, 42.31209360641515],
+ [-117.05453000625634, 42.31209360641515],
+ [-117.04082487823268, 42.31209360641515],
+ [-117.02711975020902, 42.31209360641515],
+ [-117.01341462218537, 42.31209360641515],
+ [-116.9997094941617, 42.31209360641515],
+ [-116.98600436613805, 42.31209360641515],
+ [-116.97229923811439, 42.31209360641515],
+ [-116.95859411009073, 42.31209360641515],
+ [-116.94488898206707, 42.31209360641515],
+ [-116.93118385404341, 42.31209360641515],
+ [-116.91747872601975, 42.31209360641515],
+ [-116.90377359799609, 42.31209360641515],
+ [-116.89006846997243, 42.31209360641515],
+ [-116.87636334194877, 42.31209360641515],
+ [-116.86265821392512, 42.31209360641515],
+ [-116.84895308590146, 42.31209360641515],
+ [-116.8352479578778, 42.31209360641515],
+ [-116.82154282985414, 42.31209360641515],
+ [-116.80783770183048, 42.31209360641515],
+ [-116.79413257380682, 42.31209360641515],
+ [-116.78042744578316, 42.31209360641515],
+ [-116.7667223177595, 42.31209360641515],
+ [-116.75301718973584, 42.31209360641515],
+ [-116.73931206171218, 42.31209360641515],
+ [-116.72560693368852, 42.31209360641515],
+ [-116.71190180566487, 42.31209360641515],
+ [-116.6981966776412, 42.31209360641515],
+ [-116.68449154961755, 42.31209360641515],
+ [-116.67078642159389, 42.31209360641515],
+ [-116.65708129357023, 42.31209360641515],
+ [-116.64337616554657, 42.31209360641515],
+ [-116.62967103752291, 42.31209360641515],
+ [-116.61596590949925, 42.31209360641515],
+ [-116.6022607814756, 42.31209360641515],
+ [-116.58855565345193, 42.31209360641515],
+ [-116.57485052542827, 42.31209360641515],
+ [-116.56114539740462, 42.31209360641515],
+ [-116.54744026938096, 42.31209360641515],
+ [-116.5337351413573, 42.31209360641515],
+ [-116.52003001333364, 42.31209360641515],
+ [-116.50632488530998, 42.31209360641515],
+ [-116.49261975728632, 42.31209360641515],
+ [-116.47891462926266, 42.31209360641515],
+ [-116.465209501239, 42.31209360641515],
+ [-116.45150437321534, 42.31209360641515],
+ [-116.43779924519168, 42.31209360641515],
+ [-116.42409411716802, 42.31209360641515],
+ [-116.41038898914437, 42.31209360641515],
+ [-116.3966838611207, 42.31209360641515],
+ [-116.38297873309705, 42.31209360641515],
+ [-116.36927360507339, 42.31209360641515],
+ [-116.35556847704973, 42.31209360641515],
+ [-116.34186334902607, 42.31209360641515],
+ [-116.32815822100241, 42.31209360641515],
+ [-116.31445309297875, 42.31209360641515],
+ [-116.3007479649551, 42.31209360641515],
+ [-116.28704283693143, 42.31209360641515],
+ [-116.27333770890777, 42.31209360641515],
+ [-116.25963258088412, 42.31209360641515],
+ [-116.24592745286046, 42.31209360641515],
+ [-116.2322223248368, 42.31209360641515],
+ [-116.21851719681314, 42.31209360641515],
+ [-116.20481206878948, 42.31209360641515],
+ [-116.19110694076582, 42.31209360641515],
+ [-116.17740181274216, 42.31209360641515],
+ [-116.1636966847185, 42.31209360641515],
+ [-116.14999155669484, 42.31209360641515],
+ [-116.13628642867118, 42.31209360641515],
+ [-116.12258130064752, 42.31209360641515],
+ [-116.10887617262387, 42.31209360641515],
+ [-116.0951710446002, 42.31209360641515],
+ [-116.08146591657655, 42.31209360641515],
+ [-116.06776078855289, 42.31209360641515],
+ [-116.05405566052923, 42.31209360641515],
+ [-116.04035053250557, 42.31209360641515],
+ [-116.02664540448191, 42.31209360641515],
+ [-116.01294027645825, 42.31209360641515],
+ [-115.9992351484346, 42.31209360641515],
+ [-115.98553002041093, 42.31209360641515],
+ [-115.97182489238727, 42.31209360641515],
+ [-115.95811976436362, 42.31209360641515],
+ [-115.94441463633996, 42.31209360641515],
+ [-115.9307095083163, 42.31209360641515],
+ [-115.91700438029264, 42.31209360641515],
+ [-115.90329925226898, 42.31209360641515],
+ [-115.88959412424532, 42.31209360641515],
+ [-115.87588899622166, 42.31209360641515],
+ [-115.862183868198, 42.31209360641515],
+ [-115.84847874017434, 42.31209360641515],
+ [-115.83477361215068, 42.31209360641515],
+ [-115.82106848412703, 42.31209360641515],
+ [-115.80736335610337, 42.31209360641515],
+ [-115.7936582280797, 42.31209360641515],
+ [-115.77995310005605, 42.31209360641515],
+ [-115.76624797203239, 42.31209360641515],
+ [-115.75254284400873, 42.31209360641515],
+ [-115.73883771598507, 42.31209360641515],
+ [-115.72513258796141, 42.31209360641515],
+ [-115.71142745993775, 42.31209360641515],
+ [-115.6977223319141, 42.31209360641515],
+ [-115.68401720389043, 42.31209360641515],
+ [-115.67031207586678, 42.31209360641515],
+ [-115.65660694784312, 42.31209360641515],
+ [-115.64290181981946, 42.31209360641515],
+ [-115.6291966917958, 42.31209360641515],
+ [-115.61549156377214, 42.31209360641515],
+ [-115.60178643574848, 42.31209360641515],
+ [-115.58808130772482, 42.31209360641515],
+ [-115.57437617970116, 42.31209360641515],
+ [-115.5606710516775, 42.31209360641515],
+ [-115.54696592365384, 42.31209360641515],
+ [-115.53326079563018, 42.31209360641515],
+ [-115.51955566760653, 42.31209360641515],
+ [-115.50585053958287, 42.31209360641515],
+ [-115.4921454115592, 42.31209360641515],
+ [-115.47844028353555, 42.31209360641515],
+ [-115.46473515551189, 42.31209360641515],
+ [-115.45103002748823, 42.31209360641515],
+ [-115.43732489946457, 42.31209360641515],
+ [-115.42361977144091, 42.31209360641515],
+ [-115.40991464341725, 42.31209360641515],
+ [-115.3962095153936, 42.31209360641515],
+ [-115.38250438736993, 42.31209360641515],
+ [-115.36879925934628, 42.31209360641515],
+ [-115.35509413132262, 42.31209360641515],
+ [-115.34138900329896, 42.31209360641515],
+ [-115.3276838752753, 42.31209360641515],
+ [-115.31397874725164, 42.31209360641515],
+ [-115.30027361922798, 42.31209360641515],
+ [-115.28656849120432, 42.31209360641515],
+ [-115.27286336318066, 42.31209360641515],
+ [-115.259158235157, 42.31209360641515],
+ [-115.24545310713334, 42.31209360641515],
+ [-115.23174797910968, 42.31209360641515],
+ [-115.21804285108603, 42.31209360641515],
+ [-115.20433772306237, 42.31209360641515],
+ [-115.19063259503871, 42.31209360641515],
+ [-115.17692746701505, 42.31209360641515],
+ [-115.16322233899139, 42.31209360641515],
+ [-115.14951721096773, 42.31209360641515],
+ [-115.13581208294407, 42.31209360641515],
+ [-115.12210695492041, 42.31209360641515],
+ [-115.10840182689675, 42.31209360641515],
+ [-115.0946966988731, 42.31209360641515],
+ [-115.08099157084943, 42.31209360641515],
+ [-115.06728644282578, 42.31209360641515],
+ [-115.05358131480212, 42.31209360641515],
+ [-115.03987618677846, 42.31209360641515],
+ [-115.0261710587548, 42.31209360641515],
+ [-115.01246593073114, 42.31209360641515],
+ [-114.99876080270748, 42.31209360641515],
+ [-114.98505567468382, 42.31209360641515],
+ [-114.97135054666016, 42.31209360641515],
+ [-114.9576454186365, 42.31209360641515],
+ [-114.94394029061284, 42.31209360641515],
+ [-114.93023516258918, 42.31209360641515],
+ [-114.91653003456553, 42.31209360641515],
+ [-114.90282490654187, 42.31209360641515],
+ [-114.88911977851821, 42.31209360641515],
+ [-114.87541465049455, 42.31209360641515],
+ [-114.86170952247089, 42.31209360641515],
+ [-114.84800439444723, 42.31209360641515],
+ [-114.83429926642357, 42.31209360641515],
+ [-114.82059413839991, 42.31209360641515],
+ [-114.80688901037625, 42.31209360641515],
+ [-114.7931838823526, 42.31209360641515],
+ [-114.77947875432893, 42.31209360641515],
+ [-114.76577362630528, 42.31209360641515],
+ [-114.75206849828162, 42.31209360641515],
+ [-114.73836337025796, 42.31209360641515],
+ [-114.7246582422343, 42.31209360641515],
+ [-114.71095311421064, 42.31209360641515],
+ [-114.69724798618698, 42.31209360641515],
+ [-114.68354285816332, 42.31209360641515],
+ [-114.66983773013966, 42.31209360641515],
+ [-114.656132602116, 42.31209360641515],
+ [-114.64242747409234, 42.31209360641515],
+ [-114.62872234606868, 42.31209360641515],
+ [-114.61501721804503, 42.31209360641515],
+ [-114.60131209002137, 42.31209360641515],
+ [-114.58760696199771, 42.31209360641515],
+ [-114.57390183397405, 42.31209360641515],
+ [-114.56019670595039, 42.31209360641515],
+ [-114.54649157792673, 42.31209360641515],
+ [-114.53278644990307, 42.31209360641515],
+ [-114.51908132187941, 42.31209360641515],
+ [-114.50537619385575, 42.31209360641515],
+ [-114.4916710658321, 42.31209360641515],
+ [-114.47796593780843, 42.31209360641515],
+ [-114.46426080978478, 42.31209360641515],
+ [-114.45055568176112, 42.31209360641515],
+ [-114.43685055373746, 42.31209360641515],
+ [-114.4231454257138, 42.31209360641515],
+ [-114.40944029769014, 42.31209360641515],
+ [-114.39573516966648, 42.31209360641515],
+ [-114.38203004164282, 42.31209360641515],
+ [-114.36832491361916, 42.31209360641515],
+ [-114.3546197855955, 42.31209360641515],
+ [-114.34091465757184, 42.31209360641515],
+ [-114.32720952954818, 42.31209360641515],
+ [-114.31350440152453, 42.31209360641515],
+ [-114.29979927350087, 42.31209360641515],
+ [-114.28609414547721, 42.31209360641515],
+ [-114.27238901745355, 42.31209360641515],
+ [-114.25868388942989, 42.31209360641515],
+ [-114.24497876140623, 42.31209360641515],
+ [-114.23127363338257, 42.31209360641515],
+ [-114.21756850535891, 42.31209360641515],
+ [-114.20386337733525, 42.31209360641515],
+ [-114.1901582493116, 42.31209360641515],
+ [-114.17645312128793, 42.31209360641515],
+ [-114.16274799326428, 42.31209360641515],
+ [-114.14904286524062, 42.31209360641515],
+ [-114.13533773721696, 42.31209360641515],
+ [-114.1216326091933, 42.31209360641515],
+ [-114.10792748116964, 42.31209360641515],
+ [-114.09422235314598, 42.31209360641515],
+ [-114.08051722512232, 42.31209360641515],
+ [-114.06681209709866, 42.31209360641515],
+ [-114.053106969075, 42.31209360641515],
+ [-114.03940184105134, 42.31209360641515],
+ [-114.02569671302768, 42.31209360641515],
+ [-114.01199158500403, 42.31209360641515],
+ [-113.99828645698037, 42.31209360641515],
+ [-113.98458132895671, 42.31209360641515],
+ [-113.97087620093305, 42.31209360641515],
+ [-113.95717107290939, 42.31209360641515],
+ [-113.94346594488573, 42.31209360641515],
+ [-113.92976081686207, 42.31209360641515],
+ [-113.91605568883841, 42.31209360641515],
+ [-113.90235056081475, 42.31209360641515],
+ [-113.8886454327911, 42.31209360641515],
+ [-113.87494030476743, 42.31209360641515],
+ [-113.86123517674378, 42.31209360641515],
+ [-113.84753004872012, 42.31209360641515],
+ [-113.83382492069646, 42.31209360641515],
+ [-113.8201197926728, 42.31209360641515],
+ [-113.80641466464914, 42.31209360641515],
+ [-113.79270953662548, 42.31209360641515],
+ [-113.77900440860182, 42.31209360641515],
+ [-113.76529928057816, 42.31209360641515],
+ [-113.7515941525545, 42.31209360641515],
+ [-113.73788902453084, 42.31209360641515],
+ [-113.72418389650718, 42.31209360641515],
+ [-113.71047876848353, 42.31209360641515],
+ [-113.69677364045987, 42.31209360641515],
+ [-113.68306851243621, 42.31209360641515],
+ [-113.66936338441255, 42.31209360641515],
+ [-113.65565825638889, 42.31209360641515],
+ [-113.64195312836523, 42.31209360641515],
+ [-113.62824800034157, 42.31209360641515],
+ [-113.61454287231791, 42.31209360641515],
+ [-113.60083774429425, 42.31209360641515],
+ [-113.5871326162706, 42.31209360641515],
+ [-113.57342748824694, 42.31209360641515],
+ [-113.55972236022328, 42.31209360641515],
+ [-113.54601723219962, 42.31209360641515],
+ [-113.53231210417596, 42.31209360641515],
+ [-113.5186069761523, 42.31209360641515],
+ [-113.50490184812864, 42.31209360641515],
+ [-113.49119672010498, 42.31209360641515],
+ [-113.47749159208132, 42.31209360641515],
+ [-113.46378646405766, 42.31209360641515],
+ [-113.450081336034, 42.31209360641515],
+ [-113.43637620801034, 42.31209360641515],
+ [-113.42267107998669, 42.31209360641515],
+ [-113.40896595196303, 42.31209360641515],
+ [-113.39526082393937, 42.31209360641515],
+ [-113.38155569591571, 42.31209360641515],
+ [-113.36785056789205, 42.31209360641515],
+ [-113.35414543986839, 42.31209360641515],
+ [-113.34044031184473, 42.31209360641515],
+ [-113.32673518382107, 42.31209360641515],
+ [-113.31303005579741, 42.31209360641515],
+ [-113.29932492777375, 42.31209360641515],
+ [-113.2856197997501, 42.31209360641515],
+ [-113.27191467172644, 42.31209360641515],
+ [-113.25820954370278, 42.31209360641515],
+ [-113.24450441567912, 42.31209360641515],
+ [-113.23079928765546, 42.31209360641515],
+ [-113.2170941596318, 42.31209360641515],
+ [-113.20338903160814, 42.31209360641515],
+ [-113.18968390358448, 42.31209360641515],
+ [-113.17597877556082, 42.31209360641515],
+ [-113.16227364753716, 42.31209360641515],
+ [-113.1485685195135, 42.31209360641515],
+ [-113.13486339148984, 42.31209360641515],
+ [-113.12115826346619, 42.31209360641515],
+ [-113.10745313544253, 42.31209360641515],
+ [-113.09374800741887, 42.31209360641515],
+ [-113.08004287939521, 42.31209360641515],
+ [-113.06633775137155, 42.31209360641515],
+ [-113.05263262334789, 42.31209360641515],
+ [-113.03892749532423, 42.31209360641515],
+ [-113.02522236730057, 42.31209360641515],
+ [-113.01151723927691, 42.31209360641515],
+ [-112.99781211125325, 42.31209360641515],
+ [-112.9841069832296, 42.31209360641515],
+ [-112.97040185520594, 42.31209360641515],
+ [-112.95669672718228, 42.31209360641515],
+ [-112.94299159915862, 42.31209360641515],
+ [-112.92928647113496, 42.31209360641515],
+ [-112.9155813431113, 42.31209360641515],
+ [-112.90187621508764, 42.31209360641515],
+ [-112.88817108706398, 42.31209360641515],
+ [-112.87446595904032, 42.31209360641515],
+ [-112.86076083101666, 42.31209360641515],
+ [-112.847055702993, 42.31209360641515],
+ [-112.83335057496934, 42.31209360641515],
+ [-112.81964544694569, 42.31209360641515],
+ [-112.80594031892203, 42.31209360641515],
+ [-112.79223519089837, 42.31209360641515],
+ [-112.77853006287471, 42.31209360641515],
+ [-112.76482493485105, 42.31209360641515],
+ [-112.75111980682739, 42.31209360641515],
+ [-112.73741467880373, 42.31209360641515],
+ [-112.72370955078007, 42.31209360641515],
+ [-112.71000442275641, 42.31209360641515],
+ [-112.69629929473275, 42.31209360641515],
+ [-112.6825941667091, 42.31209360641515],
+ [-112.66888903868544, 42.31209360641515],
+ [-112.65518391066178, 42.31209360641515],
+ [-112.64147878263812, 42.31209360641515],
+ [-112.62777365461446, 42.31209360641515],
+ [-112.6140685265908, 42.31209360641515],
+ [-112.60036339856714, 42.31209360641515],
+ [-112.58665827054348, 42.31209360641515],
+ [-112.57295314251982, 42.31209360641515],
+ [-112.55924801449616, 42.31209360641515],
+ [-112.5455428864725, 42.31209360641515],
+ [-112.53183775844884, 42.31209360641515],
+ [-112.53183775844884, 42.3222254305717],
+ [-112.53183775844884, 42.33235725472825],
+ [-112.53183775844884, 42.3424890788848],
+ [-112.53183775844884, 42.352620903041355],
+ [-112.53183775844884, 42.36275272719791],
+ [-112.53183775844884, 42.37288455135446],
+ [-112.53183775844884, 42.38301637551101],
+ [-112.53183775844884, 42.393148199667564],
+ [-112.53183775844884, 42.40328002382412],
+ [-112.53183775844884, 42.41341184798067],
+ [-112.53183775844884, 42.42354367213722],
+ [-112.53183775844884, 42.43367549629377],
+ [-112.53183775844884, 42.443807320450325],
+ [-112.53183775844884, 42.45393914460688],
+ [-112.53183775844884, 42.46407096876343],
+ [-112.53183775844884, 42.46407164219668],
+ [-112.53183911551118, 42.46407096876343],
+ [-112.5455428864725, 42.45743333572362],
+ [-112.55312167444629, 42.45393914460688],
+ [-112.55924801449616, 42.45117703853316],
+ [-112.57295314251982, 42.445290681953146],
+ [-112.5765741917885, 42.443807320450325],
+ [-112.58665827054348, 42.43975762756627],
+ [-112.60036339856714, 42.43456757919092],
+ [-112.60284171575255, 42.43367549629377],
+ [-112.6140685265908, 42.429703090576425],
+ [-112.62777365461446, 42.42516143306544],
+ [-112.63296220683394, 42.42354367213722],
+ [-112.64147878263812, 42.420925705714495],
+ [-112.65518391066178, 42.41699171763953],
+ [-112.66868966335001, 42.41341184798067],
+ [-112.66888903868544, 42.413359579272814],
+ [-112.6825941667091, 42.40999978161306],
+ [-112.69629929473275, 42.40692869672025],
+ [-112.71000442275641, 42.404141139114465],
+ [-112.71466087745031, 42.40328002382412],
+ [-112.72370955078007, 42.40161552944166],
+ [-112.73741467880373, 42.39935515688168],
+ [-112.75111980682739, 42.39736404150381],
+ [-112.76482493485105, 42.39563839831063],
+ [-112.77853006287471, 42.394174774448686],
+ [-112.79018923159455, 42.393148199667564],
+ [-112.79223519089837, 42.39296754268192],
+ [-112.80594031892203, 42.392004773785864],
+ [-112.81964544694569, 42.39129871687154],
+ [-112.83335057496934, 42.390848229447535],
+ [-112.847055702993, 42.39065276972591],
+ [-112.86076083101666, 42.390712459367926],
+ [-112.87446595904032, 42.391028148787946],
+ [-112.88817108706398, 42.3916014833951],
+ [-112.90187621508764, 42.39243496879562],
+ [-112.91078471940487, 42.393148199667564],
+ [-112.9155813431113, 42.39352445180484],
+ [-112.92928647113496, 42.39486173077692],
+ [-112.94299159915862, 42.39646570490142],
+ [-112.95669672718228, 42.39834271780587],
+ [-112.97040185520594, 42.40050031481582],
+ [-112.9841069832296, 42.40294725788474],
+ [-112.98578094867543, 42.40328002382412],
+ [-112.99781211125325, 42.405641171334985],
+ [-113.01151723927691, 42.408631301283194],
+ [-113.02522236730057, 42.41193766819636],
+ [-113.03082749368544, 42.41341184798067],
+ [-113.03892749532423, 42.41552719701788],
+ [-113.05263262334789, 42.419423990430566],
+ [-113.06591380602471, 42.42354367213722],
+ [-113.06633775137155, 42.42367488460027],
+ [-113.08004287939521, 42.42820675777086],
+ [-113.09374800741887, 42.43313068203823],
+ [-113.09518114992184, 42.43367549629377],
+ [-113.10745313544253, 42.43837267064318],
+ [-113.12061010626375, 42.443807320450325],
+ [-113.12115826346619, 42.444036180006684],
+ [-113.13486339148984, 42.45005492201062],
+ [-113.1431560158819, 42.45393914460688],
+ [-113.1485685195135, 42.45652328786444],
+ [-113.16227364753716, 42.463454446114014],
+ [-113.16344621444057, 42.46407096876343],
+ [-113.17597877556082, 42.4708561252114],
+ [-113.18186163163321, 42.47420279291998],
+ [-113.18968390358448, 42.47881558226231],
+ [-113.19863837212992, 42.484334617076534],
+ [-113.20338903160814, 42.48739311673383],
+ [-113.2139593063209, 42.49446644123309],
+ [-113.2170941596318, 42.49667721225926],
+ [-113.22796257789527, 42.50459826538964],
+ [-113.23079928765546, 42.50680001519599],
+ [-113.24074383573588, 42.51473008954619],
+ [-113.24450441567912, 42.51796420866447],
+ [-113.25235741545494, 42.52486191370274],
+ [-113.25820954370278, 42.5304925471981],
+ [-113.26281688855782, 42.534993737859295],
+ [-113.27191467172644, 42.544925828146944],
+ [-113.27209585749144, 42.54512556201585],
+ [-113.28053600515295, 42.5552573861724],
+ [-113.2856197997501, 42.56227938728684],
+ [-113.28785031857281, 42.56538921032895],
+ [-113.29434799153012, 42.575521034485504],
+ [-113.29932492777375, 42.58459354095839],
+ [-113.29989970297527, 42.58565285864206],
+ [-113.30492501327458, 42.59578468279861],
+ [-113.30923443565125, 42.60591650695516],
+ [-113.31299728606055, 42.61604833111171],
+ [-113.31303005579741, 42.61614083942071],
+ [-113.3165197583472, 42.626180155268266],
+ [-113.31968810471639, 42.63631197942482],
+ [-113.32260162781385, 42.64644380358137],
+ [-113.32533490392764, 42.65657562773792],
+ [-113.32673518382107, 42.66189507181254],
+ [-113.32798400159312, 42.666707451894474],
+ [-113.33057669493186, 42.67683927605103],
+ [-113.33308057692112, 42.68697110020758],
+ [-113.33550244342702, 42.69710292436413],
+ [-113.33783500198346, 42.70723474852068],
+ [-113.34005978243773, 42.717366572677236],
+ [-113.34044031184473, 42.719183825671614],
+ [-113.34221616566167, 42.72749839683379]
+ ],
+ [
+ [-119.53522312522625, 43.47725338441865],
+ [-119.53527587190514, 43.487385208575205],
+ [-119.53518892600178, 43.49751703273176],
+ [-119.53515817853864, 43.49888888883545],
+ [-119.53496420490033, 43.50764885688831],
+ [-119.53460212367186, 43.51778068104486],
+ [-119.53410299203496, 43.527912505201414],
+ [-119.5334672590258, 43.538044329357966],
+ [-119.53269531058862, 43.54817615351452],
+ [-119.53178746974663, 43.55830797767107],
+ [-119.53074399674249, 43.56843980182762],
+ [-119.52956508914849, 43.578571625984175],
+ [-119.52825088194665, 43.58870345014073],
+ [-119.52680144757832, 43.59883527429728],
+ [-119.52521679596376, 43.60896709845383],
+ [-119.52349687449114, 43.619098922610384],
+ [-119.52164156797518, 43.629230746766936],
+ [-119.52145305051498, 43.630186540012105],
+ [-119.51966389473192, 43.63936257092349],
+ [-119.5175529816661, 43.64949439508004],
+ [-119.51530717164947, 43.65962621923659],
+ [-119.51292611557565, 43.669758043393145],
+ [-119.5104094011423, 43.6798898675497],
+ [-119.5077565526503, 43.69002169170625],
+ [-119.50774792249132, 43.69005292638875],
+ [-119.50498812472966, 43.7001535158628],
+ [-119.50208377800193, 43.710285340019354],
+ [-119.49904279731109, 43.720417164175906],
+ [-119.49586446823395, 43.73054898833246],
+ [-119.49404279446766, 43.73610629193532],
+ [-119.49255958489952, 43.74068081248901],
+ [-119.489131114097, 43.75081263664556],
+ [-119.48556413590482, 43.760944460802115],
+ [-119.48185769267499, 43.77107628495867],
+ [-119.480337666444, 43.77507295301579],
+ [-119.47802911546422, 43.78120810911522],
+ [-119.47407230901544, 43.79133993327177],
+ [-119.46997420361348, 43.801471757428324],
+ [-119.46663253842034, 43.80945161106528],
+ [-119.4657407716129, 43.811603581584876],
+ [-119.46139158566177, 43.82173540574143],
+ [-119.45689876043161, 43.83186722989798],
+ [-119.45292741039668, 43.84054030875756],
+ [-119.45226628657676, 43.84199905405453],
+ [-119.4475207622884, 43.852130878211085],
+ [-119.44262874172233, 43.86226270236764],
+ [-119.43922228237302, 43.869106390183966],
+ [-119.43760197251893, 43.87239452652419],
+ [-119.43245470790536, 43.88252635068074],
+ [-119.42715756301475, 43.892658174837294],
+ [-119.42551715434936, 43.895705152227166],
+ [-119.4217401240507, 43.902789998993846],
+ [-119.41618423893024, 43.9129218231504],
+ [-119.4118120263257, 43.92067785354356],
+ [-119.41048561841093, 43.92305364730695],
+ [-119.40466889469127, 43.9331854714635],
+ [-119.39869599685838, 43.943317295620055],
+ [-119.39810689830205, 43.94428988191518],
+ [-119.39261102739388, 43.95344911977661],
+ [-119.38637217791653, 43.96358094393316],
+ [-119.38440177027839, 43.96669858528968],
+ [-119.38000938457846, 43.97371276808971],
+ [-119.37350141808736, 43.983844592246264],
+ [-119.37069664225473, 43.98810233270555],
+ [-119.36686194131117, 43.993976416402816],
+ [-119.36008125988508, 44.00410824055937],
+ [-119.35699151423107, 44.00861290499456],
+ [-119.35316587796402, 44.01424006471592],
+ [-119.34610844424958, 44.02437188887247],
+ [-119.34328638620741, 44.02832721358141],
+ [-119.33891755897073, 44.034503713029025],
+ [-119.33157889018663, 44.04463553718558],
+ [-119.32958125818375, 44.04732954626016],
+ [-119.324112512867, 44.05476736134213],
+ [-119.31648767585682, 44.06489918549868],
+ [-119.31587613016009, 44.06569341587006],
+ [-119.30874541395536, 44.075031009655234],
+ [-119.30217100213643, 44.08344575660615],
+ [-119.30084033127949, 44.085162833811786],
+ [-119.29281006596838, 44.09529465796834],
+ [-119.28846587411277, 44.1006546374866],
+ [-119.28462887592275, 44.10542648212489],
+ [-119.27629938813661, 44.11555830628144],
+ [-119.27476074608911, 44.11738970007563],
+ [-119.26784063942232, 44.125690130437995],
+ [-119.26105561806546, 44.13365253466446],
+ [-119.25922093206131, 44.13582195459455],
+ [-119.25046719829564, 44.1459537787511],
+ [-119.2473504900418, 44.149485306444454],
+ [-119.24156807473707, 44.15608560290765],
+ [-119.23364536201814, 44.16493825446374],
+ [-119.23250878122329, 44.166217427064204],
+ [-119.22331808669384, 44.176349251220756],
+ [-119.21994023399448, 44.17999656646849],
+ [-119.21397647126733, 44.18648107537731],
+ [-119.20623510597082, 44.194725523040255],
+ [-119.20447494581221, 44.19661289953386],
+ [-119.19483300268115, 44.20674472369041],
+ [-119.19252997794716, 44.20911672667772],
+ [-119.18504515157048, 44.216876547846965],
+ [-119.1788248499235, 44.22319649352894],
+ [-119.17509708124172, 44.22700837200352],
+ [-119.16511972189984, 44.23700846605382],
+ [-119.16498911230377, 44.23714019616007],
+ [-119.15474849987095, 44.24727202031662],
+ [-119.15141459387618, 44.250506513187936],
+ [-119.14434782534858, 44.257403844473174],
+ [-119.13770946585252, 44.263758179855195],
+ [-119.13378612206769, 44.267535668629726],
+ [-119.12400433782886, 44.27677381073029],
+ [-119.12306342268919, 44.27766749278628],
+ [-119.1121947004809, 44.28779931694283],
+ [-119.1102992098052, 44.2895336269875],
+ [-119.10117073680263, 44.29793114109938],
+ [-119.09659408178155, 44.3020633115478],
+ [-119.08998375360866, 44.308062965255935],
+ [-119.08288895375789, 44.31438410949521],
+ [-119.07863346295375, 44.31819478941249],
+ [-119.06918382573423, 44.326502793927574],
+ [-119.06711949006026, 44.32832661356904],
+ [-119.05547869771057, 44.33842590076518],
+ [-119.05544137033063, 44.33845843772559],
+ [-119.04361242991207, 44.348590261882144],
+ [-119.04177356968691, 44.35013762298242],
+ [-119.0316168544961, 44.358722086038696],
+ [-119.02806844166325, 44.36166902965539],
+ [-119.01945362310568, 44.36885391019525],
+ [-119.01436331363959, 44.37302623168594],
+ [-119.00712190300273, 44.3789857343518],
+ [-119.00065818561593, 44.38421466849969],
+ [-118.99462075986841, 44.38911755850835],
+ [-118.98695305759227, 44.3952395798582],
+ [-118.98194915508422, 44.399249382664905],
+ [-118.97324792956861, 44.40610601089834],
+ [-118.96910594308135, 44.40938120682146],
+ [-118.95954280154496, 44.41681881701954],
+ [-118.95608986877426, 44.41951303097801],
+ [-118.9458376735213, 44.42738266862898],
+ [-118.94289956509664, 44.42964485513456],
+ [-118.93213254549764, 44.43780205575446],
+ [-118.92953355065859, 44.439776679291114],
+ [-118.91842741747398, 44.448081292534],
+ [-118.91599022754531, 44.449908503447666],
+ [-118.90472228945032, 44.45822452159103],
+ [-118.90226787927934, 44.46004032760422],
+ [-118.89101716142666, 44.46823571830338],
+ [-118.88836466896943, 44.47017215176077],
+ [-118.877312033403, 44.47811869497392],
+ [-118.87427863767067, 44.48030397591732],
+ [-118.86360690537934, 44.48787710491022],
+ [-118.86000770298196, 44.490435800073875],
+ [-118.84990177735568, 44.497514446420126],
+ [-118.84554965790822, 44.50056762423043],
+ [-118.83619664933202, 44.507034066729844],
+ [-118.83090217001636, 44.51069944838698],
+ [-118.82249152130836, 44.516439165830334],
+ [-118.81606278091493, 44.52083127254353],
+ [-118.8087863932847, 44.52573280025778],
+ [-118.80102890608927, 44.530963096700084],
+ [-118.79508126526105, 44.53491788681305],
+ [-118.78579783512467, 44.54109492085664],
+ [-118.78137613723739, 44.54399720622494],
+ [-118.77036673235146, 44.55122674501319],
+ [-118.76767100921373, 44.55297340676115],
+ [-118.75473263794703, 44.56135856916974],
+ [-118.75396588119007, 44.5618490077908],
+ [-118.74026075316641, 44.57061895042585],
+ [-118.73889901630956, 44.57149039332629],
+ [-118.72655562514275, 44.57928847936053],
+ [-118.72286015459702, 44.581622217482845],
+ [-118.71285049711909, 44.5878641855958],
+ [-118.70660881755296, 44.5917540416394],
+ [-118.69914536909543, 44.59634818714131],
+ [-118.69014144630539, 44.60188586579595],
+ [-118.68544024107177, 44.6047424861173],
+ [-118.67345436569579, 44.6120176899525],
+ [-118.67173511304811, 44.6130489721921],
+ [-118.65802998502446, 44.62126295324659],
+ [-118.65654932179385, 44.622149514109054],
+ [-118.6443248570008, 44.62938507368238],
+ [-118.63942318835787, 44.63228133826561],
+ [-118.63061972897714, 44.63742480597723],
+ [-118.62206509445303, 44.64241316242216],
+ [-118.61691460095348, 44.64538368156165],
+ [-118.60447079598387, 44.65254498657871],
+ [-118.60320947292982, 44.65326313239204],
+ [-118.58950434490616, 44.66105426507512],
+ [-118.58664381264305, 44.66267681073526],
+ [-118.5757992168825, 44.66876446265948],
+ [-118.56857447786805, 44.672808634891815],
+ [-118.56209408885884, 44.67639965206256],
+ [-118.5502544061973, 44.68294045904837],
+ [-118.54838896083518, 44.68396094209895],
+ [-118.53468383281152, 44.6914402864317],
+ [-118.53168453260004, 44.69307228320492],
+ [-118.52097870478786, 44.69884259228015],
+ [-118.51285659278152, 44.70320410736147],
+ [-118.5072735767642, 44.70617469290364],
+ [-118.49376161598568, 44.713335931518024],
+ [-118.49356844874055, 44.71343740058236],
+ [-118.47986332071689, 44.720617705792606],
+ [-118.47439989296295, 44.72346775567458],
+ [-118.46615819269323, 44.727730502411276],
+ [-118.4547587606244, 44.73359957983113],
+ [-118.45245306466957, 44.73477691865394],
+ [-118.43874793664591, 44.741748925810406],
+ [-118.43483369976283, 44.74373140398768],
+ [-118.42504280862225, 44.74865130891299],
+ [-118.41461652823713, 44.75386322814423],
+ [-118.41133768059859, 44.75548986785718],
+ [-118.39763255257493, 44.7622583080683],
+ [-118.39409885427513, 44.763995052300785],
+ [-118.38392742455127, 44.76895817965763],
+ [-118.37327252126346, 44.77412687645734],
+ [-118.37022229652761, 44.77559634400252],
+ [-118.35651716850396, 44.782165979306335],
+ [-118.35212710571183, 44.78425870061389],
+ [-118.3428120404803, 44.788670264134716],
+ [-118.33065521196222, 44.79439052477044],
+ [-118.32910691245664, 44.79511453809175],
+ [-118.31540178443298, 44.80149009475102],
+ [-118.3088406171582, 44.804522348926994],
+ [-118.30169665640932, 44.80780475657093],
+ [-118.28799152838566, 44.81405914341526],
+ [-118.28668003695641, 44.81465417308355],
+ [-118.274286400362, 44.82024680663477],
+ [-118.26415153380121, 44.8247859972401],
+ [-118.26058127233834, 44.82637686937674],
+ [-118.24687614431468, 44.8324437561753],
+ [-118.24124666255014, 44.83491782139665],
+ [-118.23317101629102, 44.83845024508791],
+ [-118.21946588826737, 44.84439856668841],
+ [-118.21795544428633, 44.8450496455532],
+ [-118.2057607602437, 44.85028362561339],
+ [-118.19425210939916, 44.855181469709756],
+ [-118.19205563222005, 44.856112511919164],
+ [-118.17835050419639, 44.86187967461937],
+ [-118.17012096788832, 44.86531329386631],
+ [-118.16464537617273, 44.867589706213366],
+ [-118.15094024814907, 44.873240906942954],
+ [-118.14554922782553, 44.87544511802286],
+ [-118.13723512012541, 44.878833739152526],
+ [-118.12352999210175, 44.884369671517184],
+ [-118.12051554964923, 44.88557694217941],
+ [-118.10982486407809, 44.88984677801794],
+ [-118.09611973605443, 44.895268134998595],
+ [-118.09499603312604, 44.895708766335964],
+ [-118.08241460803077, 44.90063080405596],
+ [-118.06896206199097, 44.90584059049252],
+ [-118.06870948000712, 44.90593820961515],
+ [-118.05500435198346, 44.911187597781854],
+ [-118.04238070147603, 44.91597241464907],
+ [-118.0412992239598, 44.916381672667704],
+ [-118.02759409593614, 44.92151872531974],
+ [-118.01522819230225, 44.92610423880562],
+ [-118.01388896791248, 44.92660025596393],
+ [-118.00018383988882, 44.93162552588539],
+ [-117.9874696070826, 44.93623606296217],
+ [-117.98647871186516, 44.93659511015849],
+ [-117.9727735838415, 44.94150910049133],
+ [-117.95906845581784, 44.94636714749949],
+ [-117.95906634588934, 44.946367887118726],
+ [-117.94536332779418, 44.95117030192608],
+ [-117.93165819977052, 44.95591728289386],
+ [-117.92995683037704, 44.95649971127528],
+ [-117.91795307174687, 44.960609726030555],
+ [-117.9042479437232, 44.96524602093315],
+ [-117.90010174357431, 44.96663153543183],
+ [-117.89054281569955, 44.969827704267665],
+ [-117.87683768767589, 44.974353610480804],
+ [-117.86944706165156, 44.97676335958838],
+ [-117.86313255965223, 44.97882429755421],
+ [-117.84942743162857, 44.98324002245635],
+ [-117.83793335183925, 44.986895183744934],
+ [-117.83572230360491, 44.9875992912996],
+ [-117.82201717558125, 44.99190494565757],
+ [-117.80831204755759, 44.99615320497414],
+ [-117.80545266197653, 44.99702700790149],
+ [-117.79460691953393, 45.00034778371416],
+ [-117.78090179151027, 45.004485725555476],
+ [-117.77191962018243, 45.00715883205804],
+ [-117.76719666348662, 45.00856765306026],
+ [-117.75349153546296, 45.012595152436255],
+ [-117.7397864074393, 45.016564463843885],
+ [-117.73723885246761, 45.01729065621459],
+ [-117.72608127941564, 45.02048019745524],
+ [-117.71237615139198, 45.024338516813536],
+ [-117.70124901580346, 45.02742248037114],
+ [-117.69867102336832, 45.02813928050392],
+ [-117.68496589534466, 45.03188620981457],
+ [-117.671260767321, 45.035574052281504],
+ [-117.6637748150333, 45.037554304527696],
+ [-117.65755563929734, 45.03920554599275],
+ [-117.64385051127368, 45.04278108421308],
+ [-117.63014538325002, 45.04629690241664],
+ [-117.62462868056808, 45.04768612868425],
+ [-117.61644025522637, 45.049756773353],
+ [-117.6027351272027, 45.05315914408133],
+ [-117.58902999917905, 45.05650110252246],
+ [-117.5835213837988, 45.0578179528408],
+ [-117.57532487115539, 45.059786453318196],
+ [-117.56161974313173, 45.06301357367986],
+ [-117.54791461510807, 45.06617951470225],
+ [-117.54008983932746, 45.06794977699735],
+ [-117.53420948708441, 45.06928691090573],
+ [-117.52050435906075, 45.07233636029011],
+ [-117.50679923103709, 45.07532377379034],
+ [-117.4938754456039, 45.078081601153905],
+ [-117.49309410301343, 45.07824925380816],
+ [-117.47938897498977, 45.08111824615909],
+ [-117.46568384696612, 45.083924242965104],
+ [-117.45197871894246, 45.08666694348814],
+ [-117.44405523426772, 45.08821342531046],
+ [-117.4382735909188, 45.089348688747386],
+ [-117.42456846289514, 45.09196997738588],
+ [-117.41086333487148, 45.09452686330759],
+ [-117.39715820684782, 45.09701900734041],
+ [-117.3896551540311, 45.09834524946701],
+ [-117.38345307882416, 45.09944869381233],
+ [-117.3697479508005, 45.101815918542286],
+ [-117.35604282277684, 45.10411712339747],
+ [-117.34233769475318, 45.10635191950743],
+ [-117.32890213278088, 45.10847707362356],
+ [-117.32863256672952, 45.108520010113445],
+ [-117.31492743870587, 45.11062583076819],
+ [-117.3012223106822, 45.112663770552665],
+ [-117.28751718265855, 45.11463338021681],
+ [-117.27381205463489, 45.11653419560026],
+ [-117.26010692661123, 45.11836573665801],
+ [-117.25820687292227, 45.11860889778011],
+ [-117.24640179858757, 45.12013113474514],
+ [-117.23269667056391, 45.12182658253298],
+ [-117.21899154254025, 45.1234509558296],
+ [-117.20528641451659, 45.125003697866866],
+ [-117.19158128649293, 45.126484231918035],
+ [-117.17787615846927, 45.12789196035031],
+ [-117.16913987085125, 45.128740721936666],
+ [-117.16417103044562, 45.129227385182354],
+ [-117.15046590242196, 45.130490475618096],
+ [-117.1367607743983, 45.13167857922774],
+ [-117.12305564637464, 45.132791006350494],
+ [-117.10935051835098, 45.13382704252023],
+ [-117.09564539032732, 45.134785947540124],
+ [-117.08194026230366, 45.13566695455786],
+ [-117.06823513428, 45.136469269140804],
+ [-117.05453000625634, 45.137192068349904],
+ [-117.04082487823268, 45.13783449981143],
+ [-117.02711975020902, 45.13839568078512],
+ [-117.01347574865356, 45.13887254609322],
+ [-117.01341462218537, 45.13887470148902],
+ [-116.9997094941617, 45.13927137338273],
+ [-116.98600436613805, 45.13958375920678],
+ [-116.97229923811439, 45.13981085416664],
+ [-116.95859411009073, 45.139951619049384],
+ [-116.94488898206707, 45.140004979225544],
+ [-116.93118385404341, 45.13996982363306],
+ [-116.91747872601975, 45.13984500374081],
+ [-116.90377359799609, 45.13962933248896],
+ [-116.89006846997243, 45.139321583203426],
+ [-116.87636334194877, 45.138920488481446],
+ [-116.87502849095142, 45.13887254609322],
+ [-116.86265821392512, 45.138425375706696],
+ [-116.84895308590146, 45.13783440216784],
+ [-116.8352479578778, 45.13714608463027],
+ [-116.82154282985414, 45.13635896445483],
+ [-116.80783770183048, 45.135471535475574],
+ [-116.79413257380682, 45.13448224263877],
+ [-116.78042744578316, 45.13338948058678],
+ [-116.7667223177595, 45.1321915921827],
+ [-116.75301718973584, 45.1308868669715],
+ [-116.73931206171218, 45.12947353957347],
+ [-116.7326905012636, 45.128740721936666],
+ [-116.72560693368852, 45.12795033739053],
+ [-116.71190180566487, 45.126315260470406],
+ [-116.6981966776412, 45.124565788464125],
+ [-116.68449154961755, 45.122699894128985],
+ [-116.67078642159389, 45.1207154852483],
+ [-116.65708129357023, 45.11861040248578],
+ [-116.65707194945391, 45.11860889778011],
+ [-116.64337616554657, 45.11638276179393],
+ [-116.62967103752291, 45.11402961847223],
+ [-116.61596590949925, 45.11154856749304],
+ [-116.6022607814756, 45.10893712628213],
+ [-116.59994431217079, 45.10847707362356],
+ [-116.58855565345193, 45.1061920968559],
+ [-116.57485052542827, 45.10331092320687],
+ [-116.56114539740462, 45.10029093053864],
+ [-116.55267804773226, 45.09834524946701],
+ [-116.54744026938096, 45.09712845895412],
+ [-116.5337351413573, 45.093819633454764],
+ [-116.52003001333364, 45.090362491154835],
+ [-116.5118331596086, 45.08821342531046],
+ [-116.50632488530998, 45.08675229483565],
+ [-116.49261975728632, 45.082984433283606],
+ [-116.47891462926266, 45.0790575356376],
+ [-116.47561656559502, 45.078081601153905],
+ [-116.465209501239, 45.074963443406084],
+ [-116.45150437321534, 45.07070073283112],
+ [-116.44296485623288, 45.06794977699735],
+ [-116.43779924519168, 45.06626380489296],
+ [-116.42409411716802, 45.061645831704176],
+ [-116.41313575715013, 45.0578179528408],
+ [-116.41038898914437, 45.05684522420283],
+ [-116.3966838611207, 45.051850440119196],
+ [-116.38565233088144, 45.04768612868425],
+ [-116.38297873309705, 45.046662249762505],
+ [-116.36927360507339, 45.04126675062442],
+ [-116.36014703780042, 45.037554304527696],
+ [-116.35556847704973, 45.035663595028986],
+ [-116.34186334902607, 45.02984082097118],
+ [-116.33633261484766, 45.02742248037114],
+ [-116.32815822100241, 45.02379134554449],
+ [-116.31445309297875, 45.01751172977042],
+ [-116.31398176656731, 45.01729065621459],
+ [-116.3007479649551, 45.01098002497467],
+ [-116.29296810141213, 45.00715883205804],
+ [-116.28704283693143, 45.00419845671397],
+ [-116.27333770890777, 44.997155489019676],
+ [-116.2730931962162, 44.99702700790149],
+ [-116.25963258088412, 44.9898265579862],
+ [-116.25429749022308, 44.986895183744934],
+ [-116.24592745286046, 44.982210593539314],
+ [-116.23644255829159, 44.97676335958838],
+ [-116.2322223248368, 44.974292990870666],
+ [-116.219455003637, 44.96663153543183],
+ [-116.21851719681314, 44.96605757302125],
+ [-116.20481206878948, 44.957480399235344],
+ [-116.20327998674985, 44.95649971127528],
+ [-116.19110694076582, 44.94854531805554],
+ [-116.18784935887278, 44.946367887118726],
+ [-116.17740181274216, 44.93923402113604],
+ [-116.17310624152519, 44.93623606296217],
+ [-116.1636966847185, 44.929522539738194],
+ [-116.15900567194109, 44.92610423880562],
+ [-116.14999155669484, 44.91938419687349],
+ [-116.14550733366653, 44.91597241464907],
+ [-116.13628642867118, 44.908789248676136],
+ [-116.13257500563876, 44.90584059049252],
+ [-116.12258130064752, 44.89770446616954],
+ [-116.12017608774555, 44.895708766335964],
+ [-116.10887617262387, 44.8860926454916],
+ [-116.1082811907893, 44.88557694217941],
+ [-116.096870340719, 44.87544511802286],
+ [-116.0951710446002, 44.87389644429947],
+ [-116.08591579991321, 44.86531329386631],
+ [-116.08146591657655, 44.86107033179053],
+ [-116.07539301789012, 44.855181469709756],
+ [-116.06776078855289, 44.84756417521137],
+ [-116.06528201843281, 44.8450496455532],
+ [-116.0555691584222, 44.83491782139665],
+ [-116.05405566052923, 44.833295187269336],
+ [-116.04624057423965, 44.8247859972401],
+ [-116.04035053250557, 44.81816529828701],
+ [-116.03727324743569, 44.81465417308355],
+ [-116.02865828550122, 44.804522348926994],
+ [-116.02664540448191, 44.80208367703279],
+ [-116.02038499436205, 44.79439052477044],
+ [-116.01294027645825, 44.78491217960418],
+ [-116.01243400286214, 44.78425870061389],
+ [-116.00480536145584, 44.77412687645734],
+ [-115.9992351484346, 44.76644831967116],
+ [-115.99747853264512, 44.763995052300785],
+ [-115.99045174208288, 44.75386322814423],
+ [-115.98553002041093, 44.746490802911495],
+ [-115.98371053231995, 44.74373140398768],
+ [-115.97725196837406, 44.73359957983113],
+ [-115.97182489238727, 44.72472780663699],
+ [-115.97106308089873, 44.72346775567458],
+ [-115.96514301227276, 44.713335931518024],
+ [-115.95947909675003, 44.70320410736147],
+ [-115.95811976436362, 44.70067873527145],
+ [-115.95406988319175, 44.69307228320492],
+ [-115.9489070078848, 44.68294045904837],
+ [-115.94441463633996, 44.67370199979234],
+ [-115.94398468932006, 44.672808634891815],
+ [-115.93930092367657, 44.66267681073526],
+ [-115.93484798439171, 44.65254498657871],
+ [-115.9307095083163, 44.642625186222624],
+ [-115.93062189776137, 44.64241316242216],
+ [-115.92662046645242, 44.63228133826561],
+ [-115.92283798129853, 44.622149514109054],
+ [-115.9192710665568, 44.6120176899525],
+ [-115.91700438029264, 44.605190428379764],
+ [-115.91591675100707, 44.60188586579595],
+ [-115.9127720699649, 44.5917540416394],
+ [-115.90983367950042, 44.581622217482845],
+ [-115.90709895366801, 44.57149039332629],
+ [-115.90456543243857, 44.56135856916974],
+ [-115.90329925226898, 44.55588301684123],
+ [-115.90223077091403, 44.55122674501319],
+ [-115.90009276374924, 44.54109492085664],
+ [-115.89814949224146, 44.530963096700084],
+ [-115.89639916660856, 44.52083127254353],
+ [-115.89484015089113, 44.51069944838698],
+ [-115.89347096187497, 44.50056762423043],
+ [-115.89229026824437, 44.490435800073875],
+ [-115.8912968899631, 44.48030397591732],
+ [-115.89048979788178, 44.47017215176077],
+ [-115.88986811357108, 44.46004032760422],
+ [-115.88959412424532, 44.453702743607835],
+ [-115.88943106793218, 44.449908503447666],
+ [-115.88917810505647, 44.439776679291114],
+ [-115.88910886956693, 44.42964485513456],
+ [-115.88922308496639, 44.41951303097801],
+ [-115.88952062477793, 44.40938120682146],
+ [-115.88959412424532, 44.407839824282036],
+ [-115.89000143269878, 44.399249382664905],
+ [-115.89066573775125, 44.38911755850835],
+ [-115.89151390485509, 44.3789857343518],
+ [-115.89254644283244, 44.36885391019525],
+ [-115.89376402255951, 44.358722086038696],
+ [-115.8951674795149, 44.348590261882144],
+ [-115.89675781661097, 44.33845843772559],
+ [-115.89853620731343, 44.32832661356904],
+ [-115.90050399905368, 44.31819478941249],
+ [-115.9026627169365, 44.308062965255935],
+ [-115.90329925226898, 44.30532781099556],
+ [-115.90501462510052, 44.29793114109938],
+ [-115.9075615870306, 44.28779931694283],
+ [-115.91030558358918, 44.27766749278628],
+ [-115.91324896895644, 44.267535668629726],
+ [-115.91639430533479, 44.257403844473174],
+ [-115.91700438029264, 44.25556307030699],
+ [-115.91974674662015, 44.24727202031662],
+ [-115.92330818254538, 44.23714019616007],
+ [-115.92708147278653, 44.22700837200352],
+ [-115.9307095083163, 44.21779457875339],
+ [-115.93107069434937, 44.216876547846965],
+ [-115.9352849795743, 44.20674472369041],
+ [-115.93972399028763, 44.19661289953386],
+ [-115.94439226208016, 44.18648107537731],
+ [-115.94441463633996, 44.18643489197152],
+ [-115.94930496749943, 44.176349251220756],
+ [-115.95445893041924, 44.166217427064204],
+ [-115.95811976436362, 44.15935132048128],
+ [-115.95986450340772, 44.15608560290765],
+ [-115.96553489001376, 44.1459537787511],
+ [-115.97146745809512, 44.13582195459455],
+ [-115.97182489238727, 44.13523790643134],
+ [-115.97769027098873, 44.125690130437995],
+ [-115.98419475308657, 44.11555830628144],
+ [-115.98553002041093, 44.113565344290414],
+ [-115.99101205351171, 44.10542648212489],
+ [-115.99813729059161, 44.09529465796834],
+ [-115.9992351484346, 44.093796894571206],
+ [-116.00560858535518, 44.085162833811786],
+ [-116.01294027645825, 44.07564486736619],
+ [-116.0134171005015, 44.075031009655234],
+ [-116.02161563975707, 44.06489918549868],
+ [-116.02664540448191, 44.05893743389195],
+ [-116.03020069406773, 44.05476736134213],
+ [-116.03920463722625, 44.04463553718558],
+ [-116.04035053250557, 44.0433962835041],
+ [-116.04868019669146, 44.034503713029025],
+ [-116.05405566052923, 44.02899728549648],
+ [-116.05863860274303, 44.02437188887247],
+ [-116.06776078855289, 44.0155384454548],
+ [-116.06912457867014, 44.01424006471592],
+ [-116.08020844423957, 44.00410824055937],
+ [-116.08146591657655, 44.00300373536224],
+ [-116.09195557915815, 43.993976416402816],
+ [-116.0951710446002, 43.99131981241916],
+ [-116.1044313086278, 43.983844592246264],
+ [-116.10887617262387, 43.980400024230704],
+ [-116.1177358625356, 43.97371276808971],
+ [-116.12258130064752, 43.9702017174448],
+ [-116.13199581346377, 43.96358094393316],
+ [-116.13628642867118, 43.96068417107967],
+ [-116.14737312554762, 43.95344911977661],
+ [-116.14999155669484, 43.951808583488585],
+ [-116.1636966847185, 43.94354436690504],
+ [-116.16408841831257, 43.943317295620055],
+ [-116.17740181274216, 43.93591157698978],
+ [-116.1825431806892, 43.9331854714635],
+ [-116.19110694076582, 43.92882725584015],
+ [-116.20309265191676, 43.92305364730695],
+ [-116.20481206878948, 43.92225852070758],
+ [-116.21851719681314, 43.916260953821556],
+ [-116.2266840646963, 43.9129218231504],
+ [-116.2322223248368, 43.91074803512479],
+ [-116.24592745286046, 43.9057448043566],
+ [-116.25473788968444, 43.902789998993846],
+ [-116.25963258088412, 43.90121358545072],
+ [-116.27333770890777, 43.897183802866856],
+ [-116.28704283693143, 43.89358984275807],
+ [-116.29105520142556, 43.892658174837294],
+ [-116.3007479649551, 43.89049410927973],
+ [-116.31445309297875, 43.88786429946432],
+ [-116.32815822100241, 43.88569176533463],
+ [-116.34186334902607, 43.88399385921864],
+ [-116.35556847704973, 43.88279261710494],
+ [-116.36091945960607, 43.88252635068074],
+ [-116.36927360507339, 43.882123688002466],
+ [-116.38297873309705, 43.882008886473336],
+ [-116.3966838611207, 43.88249189554871],
+ [-116.397093117926, 43.88252635068074],
+ [-116.41038898914437, 43.88364838585067],
+ [-116.42409411716802, 43.88554749859815],
+ [-116.43779924519168, 43.88828763516563],
+ [-116.45150437321534, 43.89199814686204],
+ [-116.45336155552828, 43.892658174837294],
+ [-116.465209501239, 43.896744749712475],
+ [-116.47891462926266, 43.90266284596636],
+ [-116.47915045378984, 43.902789998993846],
+ [-116.49261975728632, 43.90953390747364],
+ [-116.49829609112655, 43.9129218231504],
+ [-116.50632488530998, 43.9172343420311],
+ [-116.51578579759678, 43.92305364730695],
+ [-116.52003001333364, 43.92534786121884],
+ [-116.53331078794808, 43.9331854714635],
+ [-116.5337351413573, 43.93340334670575],
+ [-116.54744026938096, 43.94095194974572],
+ [-116.55169098424216, 43.943317295620055],
+ [-116.56114539740462, 43.94786832754544],
+ [-116.57362876300121, 43.95344911977661],
+ [-116.57485052542827, 43.953938561721735],
+ [-116.58855565345193, 43.95921654258521],
+ [-116.6022607814756, 43.96345425328445],
+ [-116.6027373192208, 43.96358094393316],
+ [-116.61596590949925, 43.967042096052545],
+ [-116.62967103752291, 43.96964302910831],
+ [-116.64337616554657, 43.97127041464911],
+ [-116.65708129357023, 43.97195467856259],
+ [-116.67078642159389, 43.971684259095454],
+ [-116.68449154961755, 43.97033480242812],
+ [-116.6981966776412, 43.96752845402574],
+ [-116.70884015306149, 43.96358094393316],
+ [-116.71190180566487, 43.96270266909236],
+ [-116.72560693368852, 43.956296587564665],
+ [-116.72945621668786, 43.95344911977661],
+ [-116.73931206171218, 43.94711766510548],
+ [-116.74330643184807, 43.943317295620055],
+ [-116.75301718973584, 43.934217300088235],
+ [-116.75383941138541, 43.9331854714635],
+ [-116.76202345714805, 43.92305364730695],
+ [-116.7667223177595, 43.91570300336632],
+ [-116.76828949327478, 43.9129218231504],
+ [-116.77309970061351, 43.902789998993846],
+ [-116.77640861933088, 43.892658174837294],
+ [-116.77860113853555, 43.88252635068074],
+ [-116.78030264591261, 43.87239452652419],
+ [-116.78042744578316, 43.87176035436495],
+ [-116.7828086687086, 43.86226270236764],
+ [-116.78808118468342, 43.852130878211085],
+ [-116.79413257380682, 43.84656030138522],
+ [-116.79942898584538, 43.84199905405453],
+ [-116.80783770183048, 43.83721150889017],
+ [-116.81659069498339, 43.83186722989798],
+ [-116.82154282985414, 43.82937627582854],
+ [-116.8352479578778, 43.82264648517068],
+ [-116.8376913396375, 43.82173540574143],
+ [-116.84895308590146, 43.818397597308554],
+ [-116.86265821392512, 43.816731453222836],
+ [-116.87636334194877, 43.81604309616671],
+ [-116.89006846997243, 43.81509412154722],
+ [-116.90377359799609, 43.81380901427909],
+ [-116.91747872601975, 43.81435248119724],
+ [-116.93118385404341, 43.81721572135458],
+ [-116.94488898206707, 43.81701513111838],
+ [-116.95473275434757, 43.811603581584876],
+ [-116.95859411009073, 43.80702717384809],
+ [-116.96093635692603, 43.801471757428324],
+ [-116.95859411009073, 43.79419325528071],
+ [-116.95617587302401, 43.79133993327177],
+ [-116.94738022079105, 43.78120810911522],
+ [-116.94752837491072, 43.77107628495867],
+ [-116.95859411009073, 43.76209456172517],
+ [-116.97229923811439, 43.761171329630955],
+ [-116.97861308097863, 43.760944460802115],
+ [-116.98600436613805, 43.760796032384334],
+ [-116.9997094941617, 43.758631870059745],
+ [-117.01341462218537, 43.75342066559516],
+ [-117.01829176255394, 43.75081263664556],
+ [-117.02711975020902, 43.744592849418666],
+ [-117.03215838994667, 43.74068081248901],
+ [-117.03925501437648, 43.73054898833246],
+ [-117.04082487823268, 43.72412649467213],
+ [-117.04240740975897, 43.720417164175906],
+ [-117.04286763512744, 43.710285340019354],
+ [-117.04232182546934, 43.7001535158628],
+ [-117.04249076568155, 43.69002169170625],
+ [-117.04357750480814, 43.6798898675497],
+ [-117.0448805035839, 43.669758043393145],
+ [-117.04588518086292, 43.65962621923659],
+ [-117.04648922987535, 43.64949439508004],
+ [-117.04682062891749, 43.63936257092349],
+ [-117.04707186578445, 43.629230746766936],
+ [-117.04740087742876, 43.619098922610384],
+ [-117.04788993182156, 43.60896709845383],
+ [-117.0485529892255, 43.59883527429728],
+ [-117.0493657900345, 43.58870345014073],
+ [-117.0502933624564, 43.578571625984175],
+ [-117.05130534520568, 43.56843980182762],
+ [-117.05238115035499, 43.55830797767107],
+ [-117.05350972617794, 43.54817615351452],
+ [-117.05453000625634, 43.5393234555306],
+ [-117.05469290239087, 43.538044329357966],
+ [-117.05596075736011, 43.527912505201414],
+ [-117.05727779302964, 43.51778068104486],
+ [-117.0586484282306, 43.50764885688831],
+ [-117.06007663190239, 43.49751703273176],
+ [-117.061565102078, 43.487385208575205],
+ [-117.06311493249912, 43.47725338441865],
+ [-117.06472563589723, 43.4671215602621],
+ [-117.066395387978, 43.45698973610555],
+ [-117.06812137610152, 43.446857911948996],
+ [-117.06823513428, 43.44618229818058],
+ [-117.06994277627457, 43.436726087792444],
+ [-117.07181550214565, 43.42659426363589],
+ [-117.07373321102685, 43.41646243947934],
+ [-117.07569271244445, 43.40633061532279],
+ [-117.0776912175578, 43.396198791166235],
+ [-117.0797265407075, 43.38606696700968],
+ [-117.08179726913679, 43.37593514285313],
+ [-117.08194026230366, 43.375222370366664],
+ [-117.0839514557976, 43.36580331869658],
+ [-117.08614357091992, 43.355671494540026],
+ [-117.08837157605382, 43.345539670383474],
+ [-117.09063813584308, 43.33540784622692],
+ [-117.0929470429448, 43.32527602207037],
+ [-117.09530321700063, 43.31514419791382],
+ [-117.09564539032732, 43.31366101045751],
+ [-117.0977606687251, 43.305012373757265],
+ [-117.10028501392063, 43.29488054960071],
+ [-117.10287610419536, 43.28474872544416],
+ [-117.1055428207135, 43.27461690128761],
+ [-117.10829481852848, 43.264485077131056],
+ [-117.10935051835098, 43.260648796519305],
+ [-117.11118073531826, 43.254353252974504],
+ [-117.11419475761697, 43.24422142881795],
+ [-117.11732486927582, 43.2340896046614],
+ [-117.12058259162409, 43.22395778050485],
+ [-117.12305564637464, 43.2165181800549],
+ [-117.12399808257216, 43.213825956348295],
+ [-117.12761417847567, 43.20369413219174],
+ [-117.1313911008469, 43.19356230803519],
+ [-117.13533996598937, 43.18343048387864],
+ [-117.1367607743983, 43.17987831386483],
+ [-117.13952263275793, 43.173298659722086],
+ [-117.14392443814711, 43.163166835565534],
+ [-117.14852709562997, 43.15303501140898],
+ [-117.15046590242196, 43.1488857338372],
+ [-117.153392312048, 43.14290318725243],
+ [-117.15851054405104, 43.13277136309588],
+ [-117.16385162482771, 43.122639538939325],
+ [-117.16417103044562, 43.12204447762189],
+ [-117.1695170466046, 43.11250771478277],
+ [-117.17542088544785, 43.10237589062622],
+ [-117.17787615846927, 43.09826635609869],
+ [-117.18162890949742, 43.09224406646967],
+ [-117.18812129296077, 43.082112242313116],
+ [-117.19158128649293, 43.07684834230919],
+ [-117.19491442981726, 43.07198041815656],
+ [-117.2020130715288, 43.06184859400001],
+ [-117.20528641451659, 43.057276371875105],
+ [-117.20942778249758, 43.05171676984346],
+ [-117.21714258522896, 43.04158494568691],
+ [-117.21899154254025, 43.0391929359156],
+ [-117.22520963301017, 43.031453121530355],
+ [-117.23269667056391, 43.02233354918676],
+ [-117.23356021502522, 43.0213212973738],
+ [-117.24228830039098, 43.01118947321725],
+ [-117.24640179858757, 43.006488605751855],
+ [-117.2513351463513, 43.0010576490607],
+ [-117.26010692661123, 42.99153885682313],
+ [-117.2606932416233, 42.990925824904146],
+ [-117.27044429719717, 42.98079400074759],
+ [-117.27381205463489, 42.97733051714292],
+ [-117.28053564874087, 42.97066217659104],
+ [-117.28751718265855, 42.963799638701914],
+ [-117.29096540839207, 42.96053035243449],
+ [-117.3012223106822, 42.95087258440075],
+ [-117.30174418623707, 42.95039852827794],
+ [-117.31292801749318, 42.940266704121385],
+ [-117.31492743870587, 42.93846290778147],
+ [-117.32448877425581, 42.93013487996483],
+ [-117.32863256672952, 42.92653726020552],
+ [-117.33642665339512, 42.92000305580828],
+ [-117.34233769475318, 42.915056553636255],
+ [-117.34875365848399, 42.90987123165173],
+ [-117.35604282277684, 42.90398348108665],
+ [-117.36148236968613, 42.899739407495176],
+ [-117.3697479508005, 42.89328661016985],
+ [-117.37462594751604, 42.88960758333862],
+ [-117.38345307882416, 42.88293930117762],
+ [-117.38819813785837, 42.87947575918207],
+ [-117.39715820684782, 42.87291885399914],
+ [-117.40221327826457, 42.86934393502552],
+ [-117.41086333487148, 42.86320582946999],
+ [-117.41668630553659, 42.85921211086897],
+ [-117.42456846289514, 42.85378350503521],
+ [-117.4316327646041, 42.849080286712415],
+ [-117.4382735909188, 42.84463743481339],
+ [-117.44706881870003, 42.83894846255586],
+ [-117.45197871894246, 42.83575509152314],
+ [-117.46301126083945, 42.82881663839931],
+ [-117.46568384696612, 42.82712557312227],
+ [-117.47938897498977, 42.81873867150017],
+ [-117.47947989217249, 42.81868481424276],
+ [-117.49309410301343, 42.81056244770717],
+ [-117.49657729633859, 42.808552990086206],
+ [-117.50679923103709, 42.80261114802561],
+ [-117.51425255360736, 42.79842116592965],
+ [-117.52050435906075, 42.79487848221542],
+ [-117.5325260589415, 42.7882893417731],
+ [-117.53420948708441, 42.787358909658906],
+ [-117.54791461510807, 42.780023949334606],
+ [-117.55151877393767, 42.77815751761655],
+ [-117.56161974313173, 42.77287901903836],
+ [-117.57122148980318, 42.76802569346],
+ [-117.57532487115539, 42.76593208159497],
+ [-117.58902999917905, 42.759164012680486],
+ [-117.59168711789108, 42.757893869303444],
+ [-117.6027351272027, 42.75255996799345],
+ [-117.61300926033157, 42.74776204514689],
+ [-117.61644025522637, 42.74614342736707],
+ [-117.63014538325002, 42.739884551913164],
+ [-117.63524700767529, 42.73763022099034],
+ [-117.64385051127368, 42.73378777346649],
+ [-117.65755563929734, 42.727866749893344],
+ [-117.65843662817352, 42.72749839683379],
+ [-117.671260767321, 42.72207679955082],
+ [-117.68278082468875, 42.717366572677236],
+ [-117.68496589534466, 42.716463091303],
+ [-117.69867102336832, 42.7109801615489],
+ [-117.70835188313191, 42.70723474852068],
+ [-117.71237615139198, 42.7056597239258],
+ [-117.72608127941564, 42.70047234740328],
+ [-117.73528880118842, 42.69710292436413],
+ [-117.7397864074393, 42.695437448990106],
+ [-117.75349153546296, 42.6905319258448],
+ [-117.7637846679723, 42.68697110020758],
+ [-117.76719666348662, 42.68577637433943],
+ [-117.78090179151027, 42.68114092980942],
+ [-117.7940645265208, 42.67683927605103],
+ [-117.79460691953393, 42.676659820108995],
+ [-117.80831204755759, 42.67228434766091],
+ [-117.82201717558125, 42.668058936379204],
+ [-117.82656303411453, 42.666707451894474],
+ [-117.83572230360491, 42.663949701290356],
+ [-117.84942743162857, 42.659970109746745],
+ [-117.86154975260888, 42.65657562773792],
+ [-117.86313255965223, 42.65612669464755],
+ [-117.87683768767589, 42.652386220165425],
+ [-117.89054281569955, 42.648782248790546],
+ [-117.89978537201618, 42.64644380358137],
+ [-117.9042479437232, 42.6452998987452],
+ [-117.91795307174687, 42.641925506157435],
+ [-117.93165819977052, 42.63868100817676],
+ [-117.9420818814959, 42.63631197942482],
+ [-117.94536332779418, 42.63555624807906],
+ [-117.95906845581784, 42.632534019421534],
+ [-117.9727735838415, 42.62963631951217],
+ [-117.98647871186516, 42.62686100981407],
+ [-117.99000327032275, 42.626180155268266],
+ [-118.00018383988882, 42.62418685525218],
+ [-118.01388896791248, 42.621626228099224],
+ [-118.02759409593614, 42.619184065939464],
+ [-118.0412992239598, 42.616858728543505],
+ [-118.04633858567209, 42.61604833111171],
+ [-118.05500435198346, 42.61463562721356],
+ [-118.06870948000712, 42.61252029727512],
+ [-118.08241460803077, 42.61051906344229],
+ [-118.09611973605443, 42.60863070746023],
+ [-118.10982486407809, 42.60685411713704],
+ [-118.11755560719513, 42.60591650695516],
+ [-118.12352999210175, 42.60518185482583],
+ [-118.13723512012541, 42.60361237299303],
+ [-118.15094024814907, 42.60215319002267],
+ [-118.16464537617273, 42.60080354180319],
+ [-118.17835050419639, 42.59956275352748],
+ [-118.19205563222005, 42.598430236767115],
+ [-118.2057607602437, 42.59740548671553],
+ [-118.21946588826737, 42.59648807959199],
+ [-118.23137064711096, 42.59578468279861],
+ [-118.23317101629102, 42.59567681456734],
+ [-118.24687614431468, 42.59496759453482],
+ [-118.26058127233834, 42.59436588860731],
+ [-118.274286400362, 42.59387153911447],
+ [-118.28799152838566, 42.59348445902941],
+ [-118.30169665640932, 42.59320463016978],
+ [-118.31540178443298, 42.59303210151503],
+ [-118.32910691245664, 42.59296698763523],
+ [-118.3428120404803, 42.59300946722652],
+ [-118.35651716850396, 42.59315978174918],
+ [-118.37022229652761, 42.593418234164034],
+ [-118.38392742455127, 42.59378518776361],
+ [-118.39763255257493, 42.594261065094386],
+ [-118.41133768059859, 42.59484634696686],
+ [-118.42504280862225, 42.59554157155033],
+ [-118.42919957496076, 42.59578468279861],
+ [-118.43874793664591, 42.59634376705483],
+ [-118.45245306466957, 42.597255062036005],
+ [-118.46615819269323, 42.598277759998],
+ [-118.47986332071689, 42.599412651983954],
+ [-118.49356844874055, 42.60066058296807],
+ [-118.5072735767642, 42.602022451430145],
+ [-118.52097870478786, 42.603499208998606],
+ [-118.53468383281152, 42.605091860160215],
+ [-118.54132318699415, 42.60591650695516],
+ [-118.54838896083518, 42.60679665506058],
+ [-118.56209408885884, 42.608614679483466],
+ [-118.5757992168825, 42.61055169414935],
+ [-118.58950434490616, 42.61260894462834],
+ [-118.60320947292982, 42.61478772900211],
+ [-118.61074566459891, 42.61604833111171],
+ [-118.61691460095348, 42.617084366351285],
+ [-118.63061972897714, 42.6194989708487],
+ [-118.6443248570008, 42.62203925963116],
+ [-118.65802998502446, 42.62470677519263],
+ [-118.66528278771487, 42.626180155268266],
+ [-118.67173511304811, 42.6274973826514],
+ [-118.68544024107177, 42.63041197515419],
+ [-118.69914536909543, 42.63345883502402],
+ [-118.71145034533193, 42.63631197942482],
+ [-118.71285049711909, 42.63663846956731],
+ [-118.72655562514275, 42.63994266598625],
+ [-118.74026075316641, 42.64338489674345],
+ [-118.75198046127015, 42.64644380358137],
+ [-118.75396588119007, 42.64696532277326],
+ [-118.76767100921373, 42.65067704226005],
+ [-118.78137613723739, 42.65453332750518],
+ [-118.78840323743948, 42.65657562773792],
+ [-118.79508126526105, 42.65853031463699],
+ [-118.8087863932847, 42.6626702508283],
+ [-118.82168632396923, 42.666707451894474],
+ [-118.82249152130836, 42.66696138689212],
+ [-118.83619664933202, 42.67139571772068],
+ [-118.84990177735568, 42.67598753585409],
+ [-118.8523800566024, 42.67683927605103],
+ [-118.86360690537934, 42.68073028634373],
+ [-118.877312033403, 42.68563448113778],
+ [-118.88095407773822, 42.68697110020758],
+ [-118.89101716142666, 42.690697483265645],
+ [-118.90472228945032, 42.695927748674286],
+ [-118.90772926044478, 42.69710292436413],
+ [-118.91842741747398, 42.7013240257064],
+ [-118.93213254549764, 42.70689544014809],
+ [-118.93294978594608, 42.70723474852068],
+ [-118.9458376735213, 42.71264007833316],
+ [-118.95678863427348, 42.717366572677236],
+ [-118.95954280154496, 42.71856787328802],
+ [-118.97324792956861, 42.72467954951627],
+ [-118.9794154828415, 42.72749839683379],
+ [-118.98695305759227, 42.73098196490109],
+ [-119.00065818561593, 42.73748043286199],
+ [-119.000968194181, 42.73763022099034],
+ [-119.01436331363959, 42.744178816937264],
+ [-119.02151602370368, 42.74776204514689],
+ [-119.02806844166325, 42.751084756977754],
+ [-119.04118402520612, 42.757893869303444],
+ [-119.04177356968691, 42.758203824959175],
+ [-119.05547869771057, 42.765543187998645],
+ [-119.06001511914981, 42.76802569346],
+ [-119.06918382573423, 42.77311012839473],
+ [-119.07809314263982, 42.77815751761655],
+ [-119.08288895375789, 42.7809120240718],
+ [-119.09547132958693, 42.7882893417731],
+ [-119.09659408178155, 42.78895704714389],
+ [-119.1102992098052, 42.79725579108641],
+ [-119.11218869181036, 42.79842116592965],
+ [-119.12400433782886, 42.805817908226125],
+ [-119.12829205665238, 42.808552990086206],
+ [-119.13770946585252, 42.814653301994895],
+ [-119.1438213656983, 42.81868481424276],
+ [-119.15141459387618, 42.82377362606514],
+ [-119.15880908839286, 42.82881663839931],
+ [-119.16511972189984, 42.8331916561194],
+ [-119.17328466306513, 42.83894846255586],
+ [-119.1788248499235, 42.84292139607459],
+ [-119.18727481077843, 42.849080286712415],
+ [-119.19252997794716, 42.85297819753159],
+ [-119.20080381057899, 42.85921211086897],
+ [-119.20623510597082, 42.86337889438582],
+ [-119.21389374155139, 42.86934393502552],
+ [-119.21994023399448, 42.87414195486536],
+ [-119.22656469623796, 42.87947575918207],
+ [-119.23364536201814, 42.88528765365992],
+ [-119.23883496927584, 42.88960758333862],
+ [-119.2473504900418, 42.896838267279335],
+ [-119.25072122452221, 42.899739407495176],
+ [-119.26105561806546, 42.90881829635395],
+ [-119.2622386434519, 42.90987123165173],
+ [-119.27340163210302, 42.92000305580828],
+ [-119.27476074608911, 42.92126182446822],
+ [-119.28422386556008, 42.93013487996483],
+ [-119.28846587411277, 42.934202030252514],
+ [-119.29471676738937, 42.940266704121385],
+ [-119.30217100213643, 42.947667250334085],
+ [-119.30489091639501, 42.95039852827794],
+ [-119.31475730622093, 42.96053035243449],
+ [-119.31587613016009, 42.961703574037195],
+ [-119.32432811172488, 42.97066217659104],
+ [-119.32958125818375, 42.97637155559158],
+ [-119.33360856362387, 42.98079400074759],
+ [-119.34260708877463, 42.990925824904146],
+ [-119.34328638620741, 42.99170713244528],
+ [-119.35133769843335, 43.0010576490607],
+ [-119.35699151423107, 43.00780600238873],
+ [-119.35980000958259, 43.01118947321725],
+ [-119.3680054092408, 43.0213212973738],
+ [-119.37069664225473, 43.02472903834112],
+ [-119.37596097670362, 43.031453121530355],
+ [-119.3836669923806, 43.04158494568691],
+ [-119.38440177027839, 43.042573817347105],
+ [-119.39114052281188, 43.05171676984346],
+ [-119.39810689830205, 43.06147386133526],
+ [-119.39837238616946, 43.06184859400001],
+ [-119.40538463929673, 43.07198041815656],
+ [-119.4118120263257, 43.08158246374917],
+ [-119.41216410644435, 43.082112242313116],
+ [-119.41873411901808, 43.09224406646967],
+ [-119.42507981901723, 43.10237589062622],
+ [-119.42551715434936, 43.103092622501414],
+ [-119.43122503188476, 43.11250771478277],
+ [-119.43715616103307, 43.122639538939325],
+ [-119.43922228237302, 43.12627710084131],
+ [-119.4428891416153, 43.13277136309588],
+ [-119.44842202726764, 43.14290318725243],
+ [-119.45292741039668, 43.15145666261113],
+ [-119.45375427139936, 43.15303501140898],
+ [-119.45890359502673, 43.163166835565534],
+ [-119.46385613026379, 43.173298659722086],
+ [-119.46663253842034, 43.17918742685612],
+ [-119.46862354439425, 43.18343048387864],
+ [-119.47321213707949, 43.19356230803519],
+ [-119.47761343573286, 43.20369413219174],
+ [-119.480337666444, 43.21021951529918],
+ [-119.48183713908212, 43.213825956348295],
+ [-119.48589130852599, 43.22395778050485],
+ [-119.48976654621744, 43.2340896046614],
+ [-119.49346547528329, 43.24422142881795],
+ [-119.49404279446766, 43.24586944252415],
+ [-119.49700505648764, 43.254353252974504],
+ [-119.500375802238, 43.264485077131056],
+ [-119.50357726372658, 43.27461690128761],
+ [-119.5066116891846, 43.28474872544416],
+ [-119.50774792249132, 43.28874188694903],
+ [-119.50949032400999, 43.29488054960071],
+ [-119.51221161163524, 43.305012373757265],
+ [-119.51477166597245, 43.31514419791382],
+ [-119.51717238884888, 43.32527602207037],
+ [-119.51941560687256, 43.33540784622692],
+ [-119.52145305051498, 43.34529518166363],
+ [-119.5215033541714, 43.345539670383474],
+ [-119.52344777797352, 43.355671494540026],
+ [-119.52523912503283, 43.36580331869658],
+ [-119.52687890299968, 43.37593514285313],
+ [-119.52836854930182, 43.38606696700968],
+ [-119.52970943185383, 43.396198791166235],
+ [-119.53090284972824, 43.40633061532279],
+ [-119.53195003378866, 43.41646243947934],
+ [-119.53285214728653, 43.42659426363589],
+ [-119.53361028642136, 43.436726087792444],
+ [-119.53422548086604, 43.446857911948996],
+ [-119.5346986942573, 43.45698973610555],
+ [-119.53503082465221, 43.4671215602621],
+ [-119.53515817853864, 43.47383306724233],
+ [-119.53522312522625, 43.47725338441865]
+ ],
+ [
+ [-114.0136927073745, 42.54512556201585],
+ [-114.01414284136537, 42.5552573861724],
+ [-114.01288251260199, 42.56538921032895],
+ [-114.01199158500403, 42.56832486014446],
+ [-114.00984284361346, 42.575521034485504],
+ [-114.00469398783419, 42.58565285864206],
+ [-113.99828645698037, 42.59453871842251],
+ [-113.99717267819241, 42.59578468279861],
+ [-113.98658048640402, 42.60591650695516],
+ [-113.98458132895671, 42.60772974231212],
+ [-113.97238581012545, 42.61604833111171],
+ [-113.97087620093305, 42.61715550539719],
+ [-113.95717107290939, 42.62496835091605],
+ [-113.95453105234772, 42.626180155268266],
+ [-113.94346594488573, 42.63241347550435],
+ [-113.93611428483877, 42.63631197942482],
+ [-113.92976081686207, 42.64033376912334],
+ [-113.92025294166112, 42.64644380358137],
+ [-113.91605568883841, 42.64940515813895],
+ [-113.90592934448148, 42.65657562773792],
+ [-113.90235056081475, 42.65913746869773],
+ [-113.89121753898787, 42.666707451894474],
+ [-113.8886454327911, 42.66840961538033],
+ [-113.87494030476743, 42.67649029671274],
+ [-113.87424677356063, 42.67683927605103],
+ [-113.86123517674378, 42.68327874891987],
+ [-113.85173706906531, 42.68697110020758],
+ [-113.84753004872012, 42.688646906897716],
+ [-113.83382492069646, 42.692824685533246],
+ [-113.8201197926728, 42.695698963530006],
+ [-113.80867765727439, 42.69710292436413],
+ [-113.80641466464914, 42.697411991475825],
+ [-113.79270953662548, 42.69801685518446],
+ [-113.77900440860182, 42.697331846567685],
+ [-113.77743213882752, 42.69710292436413],
+ [-113.76529928057816, 42.69537093453644],
+ [-113.7515941525545, 42.69183887629663],
+ [-113.73942929514874, 42.68697110020758],
+ [-113.73788902453084, 42.68634347686286],
+ [-113.72418389650718, 42.67885748014091],
+ [-113.72132231874359, 42.67683927605103],
+ [-113.71047876848353, 42.66931667582945],
+ [-113.70730737454447, 42.666707451894474],
+ [-113.69677364045987, 42.65894511027814],
+ [-113.69373114701662, 42.65657562773792],
+ [-113.68306851243621, 42.65007196732361],
+ [-113.67587924645505, 42.64644380358137],
+ [-113.66936338441255, 42.644095270934905],
+ [-113.65565825638889, 42.641034226722084],
+ [-113.64195312836523, 42.639588098461886],
+ [-113.62824800034157, 42.63846774218043],
+ [-113.61454287231791, 42.63670254312647],
+ [-113.613242923384, 42.63631197942482],
+ [-113.60083774429425, 42.63343095210009],
+ [-113.5871326162706, 42.62930601104247],
+ [-113.5767144452266, 42.626180155268266],
+ [-113.57342748824694, 42.623720350898886],
+ [-113.55972236022328, 42.61685377992577],
+ [-113.55744839754301, 42.61604833111171],
+ [-113.54601723219962, 42.60733883315857],
+ [-113.54317166969987, 42.60591650695516],
+ [-113.53232590671482, 42.59578468279861],
+ [-113.53231210417596, 42.595762725751904],
+ [-113.52256912269297, 42.58565285864206],
+ [-113.5186069761523, 42.579421667941304],
+ [-113.51508574339283, 42.575521034485504],
+ [-113.5090444694288, 42.56538921032895],
+ [-113.50490184812864, 42.55544806402605],
+ [-113.50479908494258, 42.5552573861724],
+ [-113.50157689072657, 42.54512556201585],
+ [-113.50001803789074, 42.534993737859295],
+ [-113.49997132183358, 42.52486191370274],
+ [-113.50138460443267, 42.51473008954619],
+ [-113.50426325412636, 42.50459826538964],
+ [-113.50490184812864, 42.503075853927605],
+ [-113.50828191712884, 42.49446644123309],
+ [-113.51372480344818, 42.484334617076534],
+ [-113.5186069761523, 42.47726335778495],
+ [-113.52062998239097, 42.47420279291998],
+ [-113.52885492697327, 42.46407096876343],
+ [-113.53231210417596, 42.460524689920994],
+ [-113.53862821390881, 42.45393914460688],
+ [-113.54601723219962, 42.447450398708774],
+ [-113.55018764825267, 42.443807320450325],
+ [-113.55972236022328, 42.436632179851365],
+ [-113.56376876347474, 42.43367549629377],
+ [-113.57342748824694, 42.42746399570343],
+ [-113.57987373411532, 42.42354367213722],
+ [-113.5871326162706, 42.41957722546278],
+ [-113.59940673363384, 42.41341184798067],
+ [-113.60083774429425, 42.41275336223344],
+ [-113.61454287231791, 42.40685837876366],
+ [-113.62398841416338, 42.40328002382412],
+ [-113.62824800034157, 42.40176513719972],
+ [-113.64195312836523, 42.39738516255913],
+ [-113.65565825638889, 42.39368744996993],
+ [-113.65795857554376, 42.393148199667564],
+ [-113.66936338441255, 42.390565816377894],
+ [-113.68306851243621, 42.3880211677949],
+ [-113.69677364045987, 42.3860330723039],
+ [-113.71047876848353, 42.38457663061803],
+ [-113.72418389650718, 42.38363489334134],
+ [-113.73788902453084, 42.38319936400248],
+ [-113.7515941525545, 42.38327024390179],
+ [-113.76529928057816, 42.383857551332085],
+ [-113.77900440860182, 42.38498391290792],
+ [-113.79270953662548, 42.38668876054653],
+ [-113.80641466464914, 42.38903235265606],
+ [-113.8201197926728, 42.392097069110214],
+ [-113.8238860075606, 42.393148199667564],
+ [-113.83382492069646, 42.395791950384414],
+ [-113.84753004872012, 42.40031081120322],
+ [-113.85505282995018, 42.40328002382412],
+ [-113.86123517674378, 42.40570206019717],
+ [-113.87494030476743, 42.412050150366746],
+ [-113.87758835825726, 42.41341184798067],
+ [-113.8886454327911, 42.41937388821177],
+ [-113.89571517401735, 42.42354367213722],
+ [-113.90235056081475, 42.427791330064714],
+ [-113.91126665251342, 42.43367549629377],
+ [-113.91605568883841, 42.43719438946594],
+ [-113.92538373197601, 42.443807320450325],
+ [-113.92976081686207, 42.44727310076698],
+ [-113.93899767995846, 42.45393914460688],
+ [-113.94346594488573, 42.45744897203959],
+ [-113.95285283058338, 42.46407096876343],
+ [-113.95717107290939, 42.46725228662868],
+ [-113.96693731122342, 42.47420279291998],
+ [-113.97087620093305, 42.4770659332263],
+ [-113.97971235962038, 42.484334617076534],
+ [-113.98458132895671, 42.488599427672874],
+ [-113.9897501635004, 42.49446644123309],
+ [-113.99729936373706, 42.50459826538964],
+ [-113.99828645698037, 42.505843139263554],
+ [-114.00361912743209, 42.51473008954619],
+ [-114.00834151234791, 42.52486191370274],
+ [-114.01164032150294, 42.534993737859295],
+ [-114.01199158500403, 42.536610524953375],
+ [-114.0136927073745, 42.54512556201585]
+ ],
+ [
+ [-114.95892991047133, 42.575521034485504],
+ [-114.96312156614681, 42.58565285864206],
+ [-114.96619793402144, 42.59578468279861],
+ [-114.96825748779179, 42.60591650695516],
+ [-114.96937345527397, 42.61604833111171],
+ [-114.96959165280397, 42.626180155268266],
+ [-114.96892762417441, 42.63631197942482],
+ [-114.96736306619606, 42.64644380358137],
+ [-114.96484155039411, 42.65657562773792],
+ [-114.96126357542884, 42.666707451894474],
+ [-114.9576454186365, 42.674426216185296],
+ [-114.95659689617929, 42.67683927605103],
+ [-114.95099123661362, 42.68697110020758],
+ [-114.94394029061284, 42.69689777364858],
+ [-114.94379993768524, 42.69710292436413],
+ [-114.93539813961338, 42.70723474852068],
+ [-114.93023516258918, 42.71229865878816],
+ [-114.92495367539026, 42.717366572677236],
+ [-114.91653003456553, 42.7240856559338],
+ [-114.91193400590328, 42.72749839683379],
+ [-114.90282490654187, 42.73328825603011],
+ [-114.89494050419277, 42.73763022099034],
+ [-114.88911977851821, 42.74047341797946],
+ [-114.87541465049455, 42.74595022785014],
+ [-114.86947943083139, 42.74776204514689],
+ [-114.86170952247089, 42.74998451215532],
+ [-114.84800439444723, 42.75271205365038],
+ [-114.83429926642357, 42.7541481501015],
+ [-114.82059413839991, 42.75440511352331],
+ [-114.80688901037625, 42.75354095000205],
+ [-114.7931838823526, 42.75152573083763],
+ [-114.77947875432893, 42.748184685199995],
+ [-114.77836558083723, 42.74776204514689],
+ [-114.76577362630528, 42.744251991835796],
+ [-114.75206849828162, 42.738832409877325],
+ [-114.74991880517621, 42.73763022099034],
+ [-114.73836337025796, 42.73293217679827],
+ [-114.72862610585078, 42.72749839683379],
+ [-114.7246582422343, 42.725865865817795],
+ [-114.71095311421064, 42.718539968911976],
+ [-114.70905204359273, 42.717366572677236],
+ [-114.69724798618698, 42.7115037017722],
+ [-114.68881789181685, 42.70723474852068],
+ [-114.68354285816332, 42.70477043143549],
+ [-114.66983773013966, 42.69914080872036],
+ [-114.66371414154956, 42.69710292436413],
+ [-114.656132602116, 42.69446899621769],
+ [-114.64242747409234, 42.69031255299942],
+ [-114.63170501191782, 42.68697110020758],
+ [-114.62872234606868, 42.68584866318543],
+ [-114.61501721804503, 42.680062264742475],
+ [-114.60862743277612, 42.67683927605103],
+ [-114.60131209002137, 42.67074517381703],
+ [-114.59679976890996, 42.666707451894474],
+ [-114.59171301113408, 42.65657562773792],
+ [-114.59107859457953, 42.64644380358137],
+ [-114.5930528553438, 42.63631197942482],
+ [-114.59678904335306, 42.626180155268266],
+ [-114.60131209002137, 42.6177011642807],
+ [-114.60191539904376, 42.61604833111171],
+ [-114.60569153118014, 42.60591650695516],
+ [-114.61086150030454, 42.59578468279861],
+ [-114.61501721804503, 42.5885511393762],
+ [-114.61638004209006, 42.58565285864206],
+ [-114.62121355044695, 42.575521034485504],
+ [-114.62661951455411, 42.56538921032895],
+ [-114.62872234606868, 42.56132663841244],
+ [-114.63248982859353, 42.5552573861724],
+ [-114.63923246959904, 42.54512556201585],
+ [-114.64242747409234, 42.54054922697579],
+ [-114.64736385416268, 42.534993737859295],
+ [-114.656132602116, 42.52575738825287],
+ [-114.65724078488465, 42.52486191370274],
+ [-114.66968832090062, 42.51473008954619],
+ [-114.66983773013966, 42.51460794022433],
+ [-114.68354285816332, 42.50579800146197],
+ [-114.68602605645292, 42.50459826538964],
+ [-114.69724798618698, 42.498788743913614],
+ [-114.70849281460583, 42.49446644123309],
+ [-114.71095311421064, 42.49343880398266],
+ [-114.7246582422343, 42.489015217896245],
+ [-114.73836337025796, 42.48581854371609],
+ [-114.74747452643666, 42.484334617076534],
+ [-114.75206849828162, 42.48349088319917],
+ [-114.76577362630528, 42.4819090204155],
+ [-114.77947875432893, 42.48118603768064],
+ [-114.7931838823526, 42.48127423832086],
+ [-114.80688901037625, 42.48216757820466],
+ [-114.82059413839991, 42.48389415729276],
+ [-114.82300131200333, 42.484334617076534],
+ [-114.83429926642357, 42.48632070860434],
+ [-114.84800439444723, 42.48963825083719],
+ [-114.86170952247089, 42.49401573617105],
+ [-114.86289749452499, 42.49446644123309],
+ [-114.87541465049455, 42.49926976902602],
+ [-114.88662141983485, 42.50459826538964],
+ [-114.88911977851821, 42.505830137181306],
+ [-114.90282490654187, 42.51374490262121],
+ [-114.90432625725151, 42.51473008954619],
+ [-114.91653003456553, 42.523389099371556],
+ [-114.91838275301959, 42.52486191370274],
+ [-114.92985258637569, 42.534993737859295],
+ [-114.93023516258918, 42.535372047858374],
+ [-114.93940269770437, 42.54512556201585],
+ [-114.94394029061284, 42.550854879854214],
+ [-114.94726572190643, 42.5552573861724],
+ [-114.95374922331133, 42.56538921032895],
+ [-114.9576454186365, 42.57298775561533],
+ [-114.95892991047133, 42.575521034485504]
+ ],
+ [
+ [-117.08194026230366, 43.97695961990943],
+ [-117.0871867997788, 43.983844592246264],
+ [-117.09140657165014, 43.993976416402816],
+ [-117.09305544013806, 44.00410824055937],
+ [-117.0925306554588, 44.01424006471592],
+ [-117.0898251840492, 44.02437188887247],
+ [-117.08476607716904, 44.034503713029025],
+ [-117.08194026230366, 44.03872550281173],
+ [-117.07704415113658, 44.04463553718558],
+ [-117.06823513428, 44.053217345059345],
+ [-117.06609045999559, 44.05476736134213],
+ [-117.05453000625634, 44.06283176368848],
+ [-117.0502968990489, 44.06489918549868],
+ [-117.04082487823268, 44.06990654413104],
+ [-117.02711975020902, 44.07495179921449],
+ [-117.02681615899769, 44.075031009655234],
+ [-117.01341462218537, 44.07932757913934],
+ [-116.9997094941617, 44.082717913594486],
+ [-116.98870105381074, 44.085162833811786],
+ [-116.98600436613805, 44.08592696434802],
+ [-116.97229923811439, 44.090035718714695],
+ [-116.9591695104854, 44.09529465796834],
+ [-116.95859411009073, 44.09555631766747],
+ [-116.94488898206707, 44.10305525729536],
+ [-116.94111191478292, 44.10542648212489],
+ [-116.93118385404341, 44.1112903950014],
+ [-116.92375336536193, 44.11555830628144],
+ [-116.91747872601975, 44.118938152538654],
+ [-116.90377359799609, 44.12528552570216],
+ [-116.90270893590379, 44.125690130437995],
+ [-116.89006846997243, 44.13055455451456],
+ [-116.87636334194877, 44.134326272509185],
+ [-116.86814718536947, 44.13582195459455],
+ [-116.86265821392512, 44.13694580286492],
+ [-116.84895308590146, 44.138530762781755],
+ [-116.8352479578778, 44.13891491693971],
+ [-116.82154282985414, 44.1381078142],
+ [-116.80783770183048, 44.136020121267485],
+ [-116.80699361531758, 44.13582195459455],
+ [-116.79413257380682, 44.132884992904515],
+ [-116.78042744578316, 44.128080775437645],
+ [-116.77517765533536, 44.125690130437995],
+ [-116.7667223177595, 44.1214530149147],
+ [-116.75738211822676, 44.11555830628144],
+ [-116.75301718973584, 44.112216710100995],
+ [-116.74510788110518, 44.10542648212489],
+ [-116.73931206171218, 44.09866490701836],
+ [-116.736450205376, 44.09529465796834],
+ [-116.73024714728184, 44.085162833811786],
+ [-116.72656824542902, 44.075031009655234],
+ [-116.72560693368852, 44.06945751760869],
+ [-116.72464029623706, 44.06489918549868],
+ [-116.72458113386767, 44.05476736134213],
+ [-116.72560693368852, 44.049790492273104],
+ [-116.7264640863704, 44.04463553718558],
+ [-116.73014761008557, 44.034503713029025],
+ [-116.7369850904954, 44.02437188887247],
+ [-116.73931206171218, 44.02201312615051],
+ [-116.74709185356144, 44.01424006471592],
+ [-116.75301718973584, 44.01025680846988],
+ [-116.7639631955127, 44.00410824055937],
+ [-116.7667223177595, 44.002919998703085],
+ [-116.78042744578316, 43.99778495087122],
+ [-116.79413257380682, 43.994427906778284],
+ [-116.79653091978622, 43.993976416402816],
+ [-116.80783770183048, 43.991938201159535],
+ [-116.82154282985414, 43.990458994630465],
+ [-116.8352479578778, 43.98990002309571],
+ [-116.84895308590146, 43.9901369642241],
+ [-116.86265821392512, 43.99099644920258],
+ [-116.87636334194877, 43.99206802380406],
+ [-116.89006846997243, 43.99239078479071],
+ [-116.90377359799609, 43.9901975562597],
+ [-116.91648421132619, 43.983844592246264],
+ [-116.91747872601975, 43.98340976881947],
+ [-116.93118385404341, 43.97456930091547],
+ [-116.9322945754438, 43.97371276808971],
+ [-116.94488898206707, 43.96727860552231],
+ [-116.95565917737206, 43.96358094393316],
+ [-116.95859411009073, 43.96277193331079],
+ [-116.97229923811439, 43.962281897000295],
+ [-116.97417943931502, 43.96358094393316],
+ [-116.98600436613805, 43.96681444309526],
+ [-116.9997094941617, 43.97353572546294],
+ [-117.00184867082109, 43.97371276808971],
+ [-117.01341462218537, 43.97427402380936],
+ [-117.01474573085193, 43.97371276808971],
+ [-117.02711975020902, 43.96545518846686],
+ [-117.03374878949032, 43.96358094393316],
+ [-117.04082487823268, 43.957503867402764],
+ [-117.05453000625634, 43.95847539819558],
+ [-117.06640009531058, 43.96358094393316],
+ [-117.06823513428, 43.964617644994874],
+ [-117.07958508176003, 43.97371276808971],
+ [-117.08194026230366, 43.97695961990943]
+ ],
+ [
+ [-119.33100137484142, 46.587723400480186],
+ [-119.3314320724573, 46.59785522463674],
+ [-119.32967658096172, 46.60798704879329],
+ [-119.32958125818375, 46.60826808666631],
+ [-119.32613473410858, 46.61811887294984],
+ [-119.32110339445556, 46.628250697106395],
+ [-119.31625597928932, 46.63838252126295],
+ [-119.31587613016009, 46.64043489025695],
+ [-119.31423065261606, 46.6485143454195],
+ [-119.31587613016009, 46.65540181869136],
+ [-119.31649865666293, 46.65864616957605],
+ [-119.3203284463831, 46.668777993732604],
+ [-119.32329498326204, 46.678909817889156],
+ [-119.32417640005305, 46.68904164204571],
+ [-119.32245621428957, 46.69917346620226],
+ [-119.31748399828871, 46.70930529035881],
+ [-119.31587613016009, 46.711144875536164],
+ [-119.30830516863735, 46.719437114515365],
+ [-119.30217100213643, 46.7236822612812],
+ [-119.29109128190083, 46.72956893867192],
+ [-119.28846587411277, 46.73062091649028],
+ [-119.27476074608911, 46.734245385116246],
+ [-119.26105561806546, 46.73559439321092],
+ [-119.2473504900418, 46.7348323576108],
+ [-119.23364536201814, 46.73190273670894],
+ [-119.22736879170162, 46.72956893867192],
+ [-119.21994023399448, 46.726168265581364],
+ [-119.20951149615868, 46.719437114515365],
+ [-119.20623510597082, 46.71622277418532],
+ [-119.1999196369508, 46.70930529035881],
+ [-119.19479600085229, 46.69917346620226],
+ [-119.19286133643467, 46.68904164204571],
+ [-119.19339970464999, 46.678909817889156],
+ [-119.1956716370133, 46.668777993732604],
+ [-119.19782728983432, 46.65864616957605],
+ [-119.1960751724472, 46.6485143454195],
+ [-119.19252997794716, 46.64387141250943],
+ [-119.18883548248691, 46.63838252126295],
+ [-119.17981301866008, 46.628250697106395],
+ [-119.1788248499235, 46.62707909157698],
+ [-119.17205439585766, 46.61811887294984],
+ [-119.16639050041661, 46.60798704879329],
+ [-119.16511972189984, 46.604419776033566],
+ [-119.16254996376178, 46.59785522463674],
+ [-119.16021094961239, 46.587723400480186],
+ [-119.15864277453703, 46.577591576323634],
+ [-119.15602773475017, 46.56745975216708],
+ [-119.15141459387618, 46.5608226553629],
+ [-119.14863953145567, 46.55732792801053],
+ [-119.13770946585252, 46.549510131062895],
+ [-119.13488827047573, 46.54719610385398],
+ [-119.12400433782886, 46.539679523242874],
+ [-119.12107262487656, 46.537064279697425],
+ [-119.1108612778305, 46.52693245554087],
+ [-119.1102992098052, 46.5261943770833],
+ [-119.10432255082237, 46.51680063138432],
+ [-119.10100117668479, 46.50666880722777],
+ [-119.1006299372161, 46.496536983071216],
+ [-119.1030917856313, 46.486405158914664],
+ [-119.1083560062849, 46.47627333475811],
+ [-119.1102992098052, 46.4735133512026],
+ [-119.11589716100421, 46.46614151060156],
+ [-119.12281627441956, 46.45600968644501],
+ [-119.12400433782886, 46.45239843682699],
+ [-119.1258900474509, 46.445877862288455],
+ [-119.12674105787187, 46.4357460381319],
+ [-119.1291789463678, 46.42561421397535],
+ [-119.13534466310182, 46.4154823898188],
+ [-119.13770946585252, 46.41358461401899],
+ [-119.14884236537834, 46.405350565662246],
+ [-119.15141459387618, 46.40420818080315],
+ [-119.16511972189984, 46.40026711119237],
+ [-119.1788248499235, 46.398945927953015],
+ [-119.19252997794716, 46.40045144356604],
+ [-119.20623510597082, 46.40463617402765],
+ [-119.2080189304618, 46.405350565662246],
+ [-119.21994023399448, 46.41428743586814],
+ [-119.22154668218575, 46.4154823898188],
+ [-119.22852300284677, 46.42561421397535],
+ [-119.23200530972086, 46.4357460381319],
+ [-119.23364536201814, 46.44273116668036],
+ [-119.2346274895638, 46.445877862288455],
+ [-119.23863171410474, 46.45600968644501],
+ [-119.24452349342492, 46.46614151060156],
+ [-119.2473504900418, 46.47091524077303],
+ [-119.250572867558, 46.47627333475811],
+ [-119.25549365988188, 46.486405158914664],
+ [-119.25896783962699, 46.496536983071216],
+ [-119.26105561806546, 46.50448046906965],
+ [-119.26178452703049, 46.50666880722777],
+ [-119.26577438509503, 46.51680063138432],
+ [-119.27410694090361, 46.52693245554087],
+ [-119.27476074608911, 46.527375037344925],
+ [-119.28846587411277, 46.53692861489282],
+ [-119.28864204091862, 46.537064279697425],
+ [-119.30217100213643, 46.54614910580203],
+ [-119.30344318144641, 46.54719610385398],
+ [-119.31495377554619, 46.55732792801053],
+ [-119.31587613016009, 46.558334720813406],
+ [-119.32312746314817, 46.56745975216708],
+ [-119.32829797784068, 46.577591576323634],
+ [-119.32958125818375, 46.58246159489228],
+ [-119.33100137484142, 46.587723400480186]
+ ],
+ [
+ [-115.69865031345786, 42.97066217659104],
+ [-115.70474827227991, 42.98079400074759],
+ [-115.70540226524878, 42.990925824904146],
+ [-115.70191280606109, 43.0010576490607],
+ [-115.6977223319141, 43.00696374573378],
+ [-115.69399068953697, 43.01118947321725],
+ [-115.68401720389043, 43.01908501288857],
+ [-115.6798573937691, 43.0213212973738],
+ [-115.67031207586678, 43.02600366102439],
+ [-115.65660694784312, 43.03022810398834],
+ [-115.64959727712036, 43.031453121530355],
+ [-115.64290181981946, 43.03272048239445],
+ [-115.6291966917958, 43.033920197949264],
+ [-115.61549156377214, 43.034145277158935],
+ [-115.60178643574848, 43.0338004417489],
+ [-115.58808130772482, 43.03324145832469],
+ [-115.57437617970116, 43.03262551123242],
+ [-115.5606710516775, 43.03183012367171],
+ [-115.55669486822805, 43.031453121530355],
+ [-115.54696592365384, 43.030597366837036],
+ [-115.53326079563018, 43.028636620442875],
+ [-115.51955566760653, 43.02559215503927],
+ [-115.50654790049012, 43.0213212973738],
+ [-115.50585053958287, 43.021095338591216],
+ [-115.4921454115592, 43.0149216827745],
+ [-115.48591377549826, 43.01118947321725],
+ [-115.47844028353555, 43.00612631440157],
+ [-115.47235524701279, 43.0010576490607],
+ [-115.46473515551189, 42.99299107391171],
+ [-115.46298844702513, 42.990925824904146],
+ [-115.45656422104831, 42.98079400074759],
+ [-115.45267969526918, 42.97066217659104],
+ [-115.45103002748823, 42.96086284404678],
+ [-115.45097008867873, 42.96053035243449],
+ [-115.45103002748823, 42.95867756992416],
+ [-115.45127037302942, 42.95039852827794],
+ [-115.45362606157595, 42.940266704121385],
+ [-115.4583909128919, 42.93013487996483],
+ [-115.46473515551189, 42.92172836937011],
+ [-115.4661474359369, 42.92000305580828],
+ [-115.47781609135279, 42.90987123165173],
+ [-115.47844028353555, 42.90943626614758],
+ [-115.4921454115592, 42.901829056051454],
+ [-115.49789081741898, 42.899739407495176],
+ [-115.50585053958287, 42.89706128833523],
+ [-115.51955566760653, 42.89459925731166],
+ [-115.53326079563018, 42.89431452727093],
+ [-115.54696592365384, 42.896333782717974],
+ [-115.55636195658423, 42.899739407495176],
+ [-115.5606710516775, 42.90115499123748],
+ [-115.57437617970116, 42.909697535821365],
+ [-115.5745519838756, 42.90987123165173],
+ [-115.5849701312228, 42.92000305580828],
+ [-115.58808130772482, 42.92319024533971],
+ [-115.59349173316076, 42.93013487996483],
+ [-115.60178643574848, 42.93939809277968],
+ [-115.60273431456746, 42.940266704121385],
+ [-115.61549156377214, 42.94698765340934],
+ [-115.6291966917958, 42.94871263723435],
+ [-115.64290181981946, 42.949806690961815],
+ [-115.6465950527906, 42.95039852827794],
+ [-115.65660694784312, 42.952173329729355],
+ [-115.67031207586678, 42.95572040903331],
+ [-115.68401720389043, 42.96028043406244],
+ [-115.68481812446879, 42.96053035243449],
+ [-115.6977223319141, 42.97004672920412],
+ [-115.69865031345786, 42.97066217659104]
+ ],
+ [
+ [-119.71822955946546, 46.87141447686365],
+ [-119.72351430001441, 46.8815463010202],
+ [-119.72605621668352, 46.89167812517675],
+ [-119.72617412117303, 46.901809949333305],
+ [-119.72375210989777, 46.91194177348986],
+ [-119.71812284000296, 46.92207359764641],
+ [-119.7133248428462, 46.92724477116954],
+ [-119.70872192318495, 46.93220542180296],
+ [-119.69961971482255, 46.9388321416381],
+ [-119.69424802347838, 46.942337245959514],
+ [-119.68591458679889, 46.94657781398509],
+ [-119.67220945877523, 46.952069592643966],
+ [-119.67097265226806, 46.95246907011607],
+ [-119.65850433075157, 46.95620709543105],
+ [-119.64479920272791, 46.95896750465276],
+ [-119.63109407470425, 46.96049783614691],
+ [-119.61738894668059, 46.96097723757672],
+ [-119.60368381865693, 46.96055041540475],
+ [-119.58997869063327, 46.95930452890363],
+ [-119.57627356260961, 46.957260881807116],
+ [-119.56256843458596, 46.954366130998956],
+ [-119.55536675209842, 46.95246907011607],
+ [-119.5488633065623, 46.95072251879603],
+ [-119.53515817853864, 46.9458442483375],
+ [-119.52760558392423, 46.942337245959514],
+ [-119.52145305051498, 46.93854805078301],
+ [-119.5130677760962, 46.93220542180296],
+ [-119.50774792249132, 46.92543509435213],
+ [-119.50526971275583, 46.92207359764641],
+ [-119.50104804687581, 46.91194177348986],
+ [-119.49954893452399, 46.901809949333305],
+ [-119.4998758674195, 46.89167812517675],
+ [-119.50171128715753, 46.8815463010202],
+ [-119.50506682395539, 46.87141447686365],
+ [-119.50774792249132, 46.86581669622562],
+ [-119.50990004399938, 46.8612826527071],
+ [-119.51665657134839, 46.851150828550544],
+ [-119.52145305051498, 46.84569325617478],
+ [-119.5263268963511, 46.84101900439399],
+ [-119.53515817853864, 46.834079094428255],
+ [-119.54061919428865, 46.83088718023744],
+ [-119.5488633065623, 46.826415381724466],
+ [-119.56256843458596, 46.82151013849836],
+ [-119.56595636993794, 46.82075535608089],
+ [-119.57627356260961, 46.81828080702192],
+ [-119.58997869063327, 46.81669140719908],
+ [-119.60368381865693, 46.81656774415909],
+ [-119.61738894668059, 46.817772777312285],
+ [-119.63109407470425, 46.820295277105835],
+ [-119.63278510242804, 46.82075535608089],
+ [-119.64479920272791, 46.823715283681],
+ [-119.65850433075157, 46.82849691971518],
+ [-119.66404267363659, 46.83088718023744],
+ [-119.67220945877523, 46.83454009057191],
+ [-119.68410751654086, 46.84101900439399],
+ [-119.68591458679889, 46.84215126919949],
+ [-119.69887038737299, 46.851150828550544],
+ [-119.69961971482255, 46.851821437231585],
+ [-119.71011159946012, 46.8612826527071],
+ [-119.7133248428462, 46.86548221747415],
+ [-119.71822955946546, 46.87141447686365]
+ ],
+ [
+ [-119.20651736417547, 46.28376867578362],
+ [-119.21494713592436, 46.29390049994017],
+ [-119.21888663694281, 46.304032324096724],
+ [-119.21966909031468, 46.314164148253276],
+ [-119.21771753844922, 46.32429597240983],
+ [-119.21257290160132, 46.33442779656638],
+ [-119.20623510597082, 46.341006665186995],
+ [-119.20343484319048, 46.34455962072293],
+ [-119.19252997794716, 46.35256539443583],
+ [-119.18996157202653, 46.354691444879485],
+ [-119.1788248499235, 46.36069222562544],
+ [-119.17121051179605, 46.36482326903604],
+ [-119.16511972189984, 46.367343526134064],
+ [-119.15141459387618, 46.37299573730383],
+ [-119.14627909632901, 46.37495509319259],
+ [-119.13770946585252, 46.37823839381351],
+ [-119.12400433782886, 46.382820262579116],
+ [-119.11516864224036, 46.38508691734914],
+ [-119.1102992098052, 46.38676579856239],
+ [-119.09659408178155, 46.390124313251945],
+ [-119.08288895375789, 46.39210449088688],
+ [-119.06918382573423, 46.392763035806],
+ [-119.05547869771057, 46.391946928641666],
+ [-119.04177356968691, 46.38921586735886],
+ [-119.0308031562245, 46.38508691734914],
+ [-119.02806844166325, 46.383874762419254],
+ [-119.01460463648716, 46.37495509319259],
+ [-119.01436331363959, 46.37472563294426],
+ [-119.00536888235322, 46.36482326903604],
+ [-119.00065818561593, 46.35517337273151],
+ [-119.00042007678496, 46.354691444879485],
+ [-118.9978072227763, 46.34455962072293],
+ [-118.99787951386132, 46.33442779656638],
+ [-119.00065818561593, 46.32488324580569],
+ [-119.00079725743431, 46.32429597240983],
+ [-119.0062084650114, 46.314164148253276],
+ [-119.01436331363959, 46.306173735920936],
+ [-119.01645441621537, 46.304032324096724],
+ [-119.02806844166325, 46.29649223683097],
+ [-119.03232909510696, 46.29390049994017],
+ [-119.04177356968691, 46.28950633138651],
+ [-119.05547869771057, 46.283952565499575],
+ [-119.05597347553488, 46.28376867578362],
+ [-119.06918382573423, 46.278835825872264],
+ [-119.08288895375789, 46.274597022038144],
+ [-119.08678835125683, 46.27363685162707],
+ [-119.09659408178155, 46.27053787443255],
+ [-119.1102992098052, 46.26724351465015],
+ [-119.12400433782886, 46.264975614526236],
+ [-119.13770946585252, 46.26373205572955],
+ [-119.15141459387618, 46.26361972271951],
+ [-119.16511972189984, 46.264911717811465],
+ [-119.1788248499235, 46.26809071092943],
+ [-119.19203654356116, 46.27363685162707],
+ [-119.19252997794716, 46.27389466480953],
+ [-119.20623510597082, 46.28352794366084],
+ [-119.20651736417547, 46.28376867578362]
+ ],
+ [
+ [-114.6754071585276, 42.73763022099034],
+ [-114.68084402142158, 42.74776204514689],
+ [-114.68032206747762, 42.757893869303444],
+ [-114.67456536819188, 42.76802569346],
+ [-114.66983773013966, 42.77386022002639],
+ [-114.66391192473634, 42.77815751761655],
+ [-114.656132602116, 42.78538671861156],
+ [-114.65270476544629, 42.7882893417731],
+ [-114.64242747409234, 42.79736221119483],
+ [-114.64106091255924, 42.79842116592965],
+ [-114.62872234606868, 42.80627410070958],
+ [-114.62294571467423, 42.808552990086206],
+ [-114.61501721804503, 42.8117838697774],
+ [-114.60131209002137, 42.814910837870194],
+ [-114.58760696199771, 42.81671987760703],
+ [-114.57850331086479, 42.81868481424276],
+ [-114.57390183397405, 42.820472178355146],
+ [-114.56605361458872, 42.82881663839931],
+ [-114.56019670595039, 42.83552906750955],
+ [-114.55803136239163, 42.83894846255586],
+ [-114.54804236187591, 42.849080286712415],
+ [-114.54649157792673, 42.85025229089967],
+ [-114.53278644990307, 42.85883559248218],
+ [-114.5318849099357, 42.85921211086897],
+ [-114.51908132187941, 42.86392297248886],
+ [-114.50537619385575, 42.8663218589844],
+ [-114.4916710658321, 42.86642859320919],
+ [-114.47796593780843, 42.864218284260396],
+ [-114.46442019552057, 42.85921211086897],
+ [-114.46426080978478, 42.859146361180066],
+ [-114.45055568176112, 42.84984444906864],
+ [-114.44973965279343, 42.849080286712415],
+ [-114.44197657322543, 42.83894846255586],
+ [-114.43832514256425, 42.82881663839931],
+ [-114.43804174125408, 42.81868481424276],
+ [-114.44101201214045, 42.808552990086206],
+ [-114.44791224277154, 42.79842116592965],
+ [-114.45055568176112, 42.795995007235376],
+ [-114.4608014508113, 42.7882893417731],
+ [-114.46426080978478, 42.78637484155087],
+ [-114.47796593780843, 42.78113268918405],
+ [-114.4916710658321, 42.77852182856578],
+ [-114.49975298115022, 42.77815751761655],
+ [-114.50537619385575, 42.777868945465585],
+ [-114.51159047292698, 42.77815751761655],
+ [-114.51908132187941, 42.77855510082506],
+ [-114.53278644990307, 42.77903557690195],
+ [-114.53565286534872, 42.77815751761655],
+ [-114.54649157792673, 42.77277909598936],
+ [-114.54936787591355, 42.76802569346],
+ [-114.55855547734683, 42.757893869303444],
+ [-114.56019670595039, 42.75675398353134],
+ [-114.5731399674765, 42.74776204514689],
+ [-114.57390183397405, 42.74740786620646],
+ [-114.58760696199771, 42.74243857964177],
+ [-114.60131209002137, 42.73923061183476],
+ [-114.60662081515453, 42.73763022099034],
+ [-114.61501721804503, 42.735405929991565],
+ [-114.62872234606868, 42.72966513166126],
+ [-114.63557710506491, 42.72749839683379],
+ [-114.64242747409234, 42.72636779658008],
+ [-114.656132602116, 42.7269878289298],
+ [-114.65779568572779, 42.72749839683379],
+ [-114.66983773013966, 42.73322293826863],
+ [-114.6754071585276, 42.73763022099034]
+ ],
+ [
+ [-119.52198673797385, 45.88862753367808],
+ [-119.52796984239684, 45.898759357834635],
+ [-119.53102582531943, 45.90889118199119],
+ [-119.53151051653774, 45.91902300614774],
+ [-119.52968085657031, 45.92915483030429],
+ [-119.52555967526774, 45.939286654460844],
+ [-119.52145305051498, 45.9454736056492],
+ [-119.5192791277206, 45.949418478617396],
+ [-119.51129274133892, 45.95955030277395],
+ [-119.50774792249132, 45.963360039773384],
+ [-119.50095160579707, 45.9696821269305],
+ [-119.49404279446766, 45.975849781436374],
+ [-119.48749217147954, 45.97981395108705],
+ [-119.480337666444, 45.984725534738374],
+ [-119.466766533474, 45.989945775243605],
+ [-119.46663253842034, 45.99001189193104],
+ [-119.45292741039668, 45.99314138636447],
+ [-119.43922228237302, 45.993225432278315],
+ [-119.42551715434936, 45.99038851250378],
+ [-119.42438986623073, 45.989945775243605],
+ [-119.4118120263257, 45.985200929066266],
+ [-119.40275582038421, 45.97981395108705],
+ [-119.39810689830205, 45.97674941936297],
+ [-119.38916830345248, 45.9696821269305],
+ [-119.38440177027839, 45.9649276747882],
+ [-119.37896913304607, 45.95955030277395],
+ [-119.37151004440781, 45.949418478617396],
+ [-119.37069664225473, 45.94776271014299],
+ [-119.36565781884259, 45.939286654460844],
+ [-119.36210491648102, 45.92915483030429],
+ [-119.3606386515469, 45.91902300614774],
+ [-119.36118856576408, 45.90889118199119],
+ [-119.36399222422867, 45.898759357834635],
+ [-119.3695660585756, 45.88862753367808],
+ [-119.37069664225473, 45.8871360043552],
+ [-119.37832117196137, 45.87849570952153],
+ [-119.38440177027839, 45.87340364075518],
+ [-119.39234022729359, 45.86836388536498],
+ [-119.39810689830205, 45.86516439860227],
+ [-119.4118120263257, 45.85992096988507],
+ [-119.41926157537277, 45.858232061208426],
+ [-119.42551715434936, 45.856759454495084],
+ [-119.43922228237302, 45.85525071992399],
+ [-119.45292741039668, 45.85542407983477],
+ [-119.46663253842034, 45.85729931403405],
+ [-119.47005099098823, 45.858232061208426],
+ [-119.480337666444, 45.86066701141747],
+ [-119.49404279446766, 45.86621000386913],
+ [-119.49766367823727, 45.86836388536498],
+ [-119.50774792249132, 45.87446084132791],
+ [-119.51243535425193, 45.87849570952153],
+ [-119.52145305051498, 45.88791027876347],
+ [-119.52198673797385, 45.88862753367808]
+ ],
+ [
+ [-114.19234259669732, 42.47420279291998],
+ [-114.19094967444937, 42.484334617076534],
+ [-114.1901582493116, 42.48560782976055],
+ [-114.18388661003908, 42.49446644123309],
+ [-114.17645312128793, 42.50266108788966],
+ [-114.17470398938855, 42.50459826538964],
+ [-114.16700594827194, 42.51473008954619],
+ [-114.16274799326428, 42.51821672246781],
+ [-114.1519341581101, 42.52486191370274],
+ [-114.14904286524062, 42.52621034442768],
+ [-114.13533773721696, 42.52798461072985],
+ [-114.1216326091933, 42.52602981276713],
+ [-114.11746828752177, 42.52486191370274],
+ [-114.10792748116964, 42.519180466806425],
+ [-114.1001695683569, 42.51473008954619],
+ [-114.09422235314598, 42.5080621276399],
+ [-114.08886253220062, 42.50459826538964],
+ [-114.08051722512232, 42.498332883087365],
+ [-114.07129396803965, 42.49446644123309],
+ [-114.06681209709866, 42.49278791833002],
+ [-114.053106969075, 42.488261734625496],
+ [-114.0425321922702, 42.484334617076534],
+ [-114.03940184105134, 42.48291906671911],
+ [-114.02569671302768, 42.475712702616065],
+ [-114.02290642193726, 42.47420279291998],
+ [-114.01292381681989, 42.46407096876343],
+ [-114.01199158500403, 42.46189984052614],
+ [-114.00773470873581, 42.45393914460688],
+ [-114.00684735279653, 42.443807320450325],
+ [-114.00924416056624, 42.43367549629377],
+ [-114.01199158500403, 42.428997012630724],
+ [-114.01430930388207, 42.42354367213722],
+ [-114.02270130676342, 42.41341184798067],
+ [-114.02569671302768, 42.411085436591236],
+ [-114.03632130252937, 42.40328002382412],
+ [-114.03940184105134, 42.40166217193376],
+ [-114.053106969075, 42.395892909691796],
+ [-114.06467932406446, 42.393148199667564],
+ [-114.06681209709866, 42.39269085928237],
+ [-114.08051722512232, 42.39149625228385],
+ [-114.09422235314598, 42.39240109007032],
+ [-114.09743329162798, 42.393148199667564],
+ [-114.10792748116964, 42.395322217762704],
+ [-114.1216326091933, 42.400871744915825],
+ [-114.12556532543834, 42.40328002382412],
+ [-114.13533773721696, 42.41006652894923],
+ [-114.13906207916656, 42.41341184798067],
+ [-114.14809697459667, 42.42354367213722],
+ [-114.14904286524062, 42.42488348890542],
+ [-114.15601779300825, 42.43367549629377],
+ [-114.16274799326428, 42.43996725377015],
+ [-114.16681684015722, 42.443807320450325],
+ [-114.17645312128793, 42.45007252063551],
+ [-114.18020679623451, 42.45393914460688],
+ [-114.18898546757872, 42.46407096876343],
+ [-114.1901582493116, 42.46674381055032],
+ [-114.19234259669732, 42.47420279291998]
+ ],
+ [
+ [-118.82320378890073, 46.212845906687754],
+ [-118.82951521411147, 46.222977730844306],
+ [-118.8325791685314, 46.23310955500086],
+ [-118.83294148364119, 46.24324137915741],
+ [-118.83072022960346, 46.25337320331396],
+ [-118.8255196702342, 46.263505027470515],
+ [-118.82249152130836, 46.26766771077412],
+ [-118.8160945065367, 46.27363685162707],
+ [-118.8087863932847, 46.27900381616626],
+ [-118.79508126526105, 46.28179819698006],
+ [-118.78137613723739, 46.28125752012723],
+ [-118.76767100921373, 46.279167488938576],
+ [-118.75396588119007, 46.27583084443901],
+ [-118.74776487444937, 46.27363685162707],
+ [-118.74026075316641, 46.27125601090615],
+ [-118.72655562514275, 46.26561871463291],
+ [-118.72158083280944, 46.263505027470515],
+ [-118.71285049711909, 46.25777827821854],
+ [-118.70542211633946, 46.25337320331396],
+ [-118.69914536909543, 46.24628114217386],
+ [-118.69578849893895, 46.24324137915741],
+ [-118.69088717430486, 46.23310955500086],
+ [-118.69024887347939, 46.222977730844306],
+ [-118.69366443069215, 46.212845906687754],
+ [-118.69914536909543, 46.20563859527237],
+ [-118.70193880367417, 46.2027140825312],
+ [-118.71285049711909, 46.19499794462908],
+ [-118.71804500005098, 46.19258225837465],
+ [-118.72655562514275, 46.18914550458026],
+ [-118.74026075316641, 46.185956409232375],
+ [-118.75396588119007, 46.184808560913346],
+ [-118.76767100921373, 46.185431903987215],
+ [-118.78137613723739, 46.18788313079603],
+ [-118.79508126526105, 46.19251853598447],
+ [-118.79521519549566, 46.19258225837465],
+ [-118.8087863932847, 46.199812603114914],
+ [-118.81277371140655, 46.2027140825312],
+ [-118.82249152130836, 46.2120406758941],
+ [-118.82320378890073, 46.212845906687754]
+ ],
+ [
+ [-118.86919057387004, 46.33442779656638],
+ [-118.87194738110858, 46.34455962072293],
+ [-118.8718259954862, 46.354691444879485],
+ [-118.86877728037545, 46.36482326903604],
+ [-118.86360690537934, 46.3733431432168],
+ [-118.86237539848379, 46.37495509319259],
+ [-118.85095584140262, 46.38508691734914],
+ [-118.84990177735568, 46.38585173483328],
+ [-118.83619664933202, 46.39265588481236],
+ [-118.82666529678893, 46.395218741505694],
+ [-118.82249152130836, 46.39636513292292],
+ [-118.8087863932847, 46.39775079398662],
+ [-118.79508126526105, 46.39683631083105],
+ [-118.78835160297373, 46.395218741505694],
+ [-118.78137613723739, 46.39341046581431],
+ [-118.76767100921373, 46.38625338069236],
+ [-118.76617422919874, 46.38508691734914],
+ [-118.75748085555205, 46.37495509319259],
+ [-118.75432058454523, 46.36482326903604],
+ [-118.75507902796296, 46.354691444879485],
+ [-118.75898681061643, 46.34455962072293],
+ [-118.76563622290442, 46.33442779656638],
+ [-118.76767100921373, 46.331957803687565],
+ [-118.77511481820301, 46.32429597240983],
+ [-118.78137613723739, 46.31784783873638],
+ [-118.78727286656975, 46.314164148253276],
+ [-118.79508126526105, 46.307496725030504],
+ [-118.80498100872835, 46.304032324096724],
+ [-118.8087863932847, 46.30132239520588],
+ [-118.82249152130836, 46.3005089197161],
+ [-118.83314660295486, 46.304032324096724],
+ [-118.83619664933202, 46.30464240067634],
+ [-118.84990177735568, 46.31157627205566],
+ [-118.85288079118818, 46.314164148253276],
+ [-118.86337950795387, 46.32429597240983],
+ [-118.86360690537934, 46.32460199456934],
+ [-118.86919057387004, 46.33442779656638]
+ ],
+ [
+ [-119.80952690107762, 45.898759357834635],
+ [-119.80976026823446, 45.90889118199119],
+ [-119.80926073901182, 45.9122474294388],
+ [-119.80768221957025, 45.91902300614774],
+ [-119.80239387819864, 45.92915483030429],
+ [-119.79555561098816, 45.93696498523033],
+ [-119.79158652524883, 45.939286654460844],
+ [-119.7818504829645, 45.94458124452079],
+ [-119.76814535494084, 45.9476527483273],
+ [-119.75444022691718, 45.947909037899535],
+ [-119.74073509889352, 45.94567132002085],
+ [-119.72702997086986, 45.94039975228642],
+ [-119.72513333577305, 45.939286654460844],
+ [-119.7133248428462, 45.930825735526504],
+ [-119.71162974213242, 45.92915483030429],
+ [-119.70409100060746, 45.91902300614774],
+ [-119.70006888464559, 45.90889118199119],
+ [-119.69961971482255, 45.9052957711407],
+ [-119.69883331038196, 45.898759357834635],
+ [-119.69961971482255, 45.893041686437996],
+ [-119.70024134455187, 45.88862753367808],
+ [-119.70459818423357, 45.87849570952153],
+ [-119.7125663226626, 45.86836388536498],
+ [-119.7133248428462, 45.86764590172117],
+ [-119.72702997086986, 45.8583195813722],
+ [-119.72724437867065, 45.858232061208426],
+ [-119.74073509889352, 45.85337418140954],
+ [-119.75444022691718, 45.851589482020906],
+ [-119.76814535494084, 45.852681334421106],
+ [-119.7818504829645, 45.85739785426186],
+ [-119.7830338171326, 45.858232061208426],
+ [-119.79555561098816, 45.86740565582375],
+ [-119.79625101157922, 45.86836388536498],
+ [-119.80281915314738, 45.87849570952153],
+ [-119.80716978081553, 45.88862753367808],
+ [-119.80926073901182, 45.8973569128517],
+ [-119.80952690107762, 45.898759357834635]
+ ],
+ [
+ [-119.81388898284207, 47.13484190493401],
+ [-119.8204603422537, 47.14497372909056],
+ [-119.8197791084352, 47.15510555324711],
+ [-119.81580152113581, 47.16523737740366],
+ [-119.80962562669899, 47.175369201560216],
+ [-119.80926073901182, 47.17592820013667],
+ [-119.80510033559575, 47.18550102571677],
+ [-119.80106790917985, 47.19563284987332],
+ [-119.79694327798596, 47.20576467402987],
+ [-119.79555561098816, 47.20934463177412],
+ [-119.79069854177708, 47.215896498186424],
+ [-119.7818504829645, 47.224707374878506],
+ [-119.7781477285629, 47.22602832234298],
+ [-119.76814535494084, 47.23015682072424],
+ [-119.75444022691718, 47.230814680632975],
+ [-119.74073509889352, 47.227483312841144],
+ [-119.73807602443807, 47.22602832234298],
+ [-119.72702997086986, 47.21972824253055],
+ [-119.72333242077134, 47.215896498186424],
+ [-119.71635995934915, 47.20576467402987],
+ [-119.7133248428462, 47.19613891187583],
+ [-119.71319490958037, 47.19563284987332],
+ [-119.71229585558463, 47.18550102571677],
+ [-119.71331527315763, 47.175369201560216],
+ [-119.7133248428462, 47.17533526722638],
+ [-119.71567497816068, 47.16523737740366],
+ [-119.72051634809847, 47.15510555324711],
+ [-119.72702997086986, 47.14768561270635],
+ [-119.73000020938497, 47.14497372909056],
+ [-119.74073509889352, 47.137803596393624],
+ [-119.74765910400892, 47.13484190493401],
+ [-119.75444022691718, 47.13188599984463],
+ [-119.76814535494084, 47.12824938957753],
+ [-119.7818504829645, 47.12677246415643],
+ [-119.79555561098816, 47.127528806146074],
+ [-119.80926073901182, 47.13191014424262],
+ [-119.81388898284207, 47.13484190493401]
+ ],
+ [
+ [-115.28960913767195, 42.92000305580828],
+ [-115.29654150395145, 42.93013487996483],
+ [-115.2993854971193, 42.940266704121385],
+ [-115.29903006968024, 42.95039852827794],
+ [-115.29532390044983, 42.96053035243449],
+ [-115.286931023576, 42.97066217659104],
+ [-115.28656849120432, 42.97094983585128],
+ [-115.27286336318066, 42.979780628657686],
+ [-115.27040030822411, 42.98079400074759],
+ [-115.259158235157, 42.98433081069949],
+ [-115.24545310713334, 42.9858775385351],
+ [-115.23174797910968, 42.98470354337131],
+ [-115.21957527360846, 42.98079400074759],
+ [-115.21804285108603, 42.98035862961229],
+ [-115.20433772306237, 42.97172859902917],
+ [-115.20342399212261, 42.97066217659104],
+ [-115.1958691652098, 42.96053035243449],
+ [-115.19106745361485, 42.95039852827794],
+ [-115.19063259503871, 42.94684191335961],
+ [-115.1900890051021, 42.940266704121385],
+ [-115.19063259503871, 42.9367344718118],
+ [-115.19235234188196, 42.93013487996483],
+ [-115.19846228596387, 42.92000305580828],
+ [-115.20433772306237, 42.91331044760238],
+ [-115.21016932331915, 42.90987123165173],
+ [-115.21804285108603, 42.9053665770045],
+ [-115.23174797910968, 42.90180443122036],
+ [-115.24545310713334, 42.90112925572532],
+ [-115.259158235157, 42.903067891760706],
+ [-115.27286336318066, 42.90794184645064],
+ [-115.27655914081821, 42.90987123165173],
+ [-115.28656849120432, 42.91728607794983],
+ [-115.28960913767195, 42.92000305580828]
+ ],
+ [
+ [-119.79770707100339, 46.69917346620226],
+ [-119.8042468392743, 46.70930529035881],
+ [-119.80773835713786, 46.719437114515365],
+ [-119.80844945794264, 46.72956893867192],
+ [-119.80609790621041, 46.73970076282847],
+ [-119.79967413960044, 46.74983258698502],
+ [-119.79555561098816, 46.75370840012432],
+ [-119.78393779165764, 46.759964411141574],
+ [-119.7818504829645, 46.76084828109439],
+ [-119.76814535494084, 46.76360597598368],
+ [-119.75444022691718, 46.76358819519753],
+ [-119.74073509889352, 46.7611483253934],
+ [-119.73726329385084, 46.759964411141574],
+ [-119.72702997086986, 46.75571873559882],
+ [-119.71747284710708, 46.74983258698502],
+ [-119.7133248428462, 46.74602690619728],
+ [-119.7075121156021, 46.73970076282847],
+ [-119.70253183029958, 46.72956893867192],
+ [-119.7013782140353, 46.719437114515365],
+ [-119.70393272671971, 46.70930529035881],
+ [-119.7107869195035, 46.69917346620226],
+ [-119.7133248428462, 46.696742697764634],
+ [-119.72480912432832, 46.68904164204571],
+ [-119.72702997086986, 46.687859932772284],
+ [-119.74073509889352, 46.68339922121535],
+ [-119.75444022691718, 46.68191114168961],
+ [-119.76814535494084, 46.68306568321488],
+ [-119.7818504829645, 46.687427146369316],
+ [-119.784464438647, 46.68904164204571],
+ [-119.79555561098816, 46.696647398873466],
+ [-119.79770707100339, 46.69917346620226]
+ ],
+ [
+ [-116.1525245166627, 42.96053035243449],
+ [-116.15653832208801, 42.97066217659104],
+ [-116.15672857570067, 42.98079400074759],
+ [-116.15324761164116, 42.990925824904146],
+ [-116.14999155669484, 42.995409302514226],
+ [-116.14527525320372, 43.0010576490607],
+ [-116.13628642867118, 43.0076001844766],
+ [-116.12864424240999, 43.01118947321725],
+ [-116.12258130064752, 43.013433109016894],
+ [-116.10887617262387, 43.01567446630763],
+ [-116.0951710446002, 43.01482077197076],
+ [-116.08452716222556, 43.01118947321725],
+ [-116.08146591657655, 43.01024374740555],
+ [-116.06962666779528, 43.0010576490607],
+ [-116.06776078855289, 42.999277076961995],
+ [-116.0635884724299, 42.990925824904146],
+ [-116.06179589674483, 42.98079400074759],
+ [-116.06327360349424, 42.97066217659104],
+ [-116.06753791040222, 42.96053035243449],
+ [-116.06776078855289, 42.96012671269586],
+ [-116.07824500290663, 42.95039852827794],
+ [-116.08146591657655, 42.947330756823604],
+ [-116.0951710446002, 42.941587100465185],
+ [-116.10501229036306, 42.940266704121385],
+ [-116.10887617262387, 42.93956798503197],
+ [-116.11672884985596, 42.940266704121385],
+ [-116.12258130064752, 42.94085020318215],
+ [-116.13628642867118, 42.94585515117262],
+ [-116.14336752636886, 42.95039852827794],
+ [-116.14999155669484, 42.95735004486889],
+ [-116.1525245166627, 42.96053035243449]
+ ],
+ [
+ [-119.37426807234291, 46.93220542180296],
+ [-119.3758994825046, 46.942337245959514],
+ [-119.37182637507536, 46.95246907011607],
+ [-119.37069664225473, 46.95386184880706],
+ [-119.36080754365874, 46.96260089427262],
+ [-119.35699151423107, 46.96502241049267],
+ [-119.34328638620741, 46.97020540699658],
+ [-119.32958125818375, 46.972195680580654],
+ [-119.31587613016009, 46.972057442745104],
+ [-119.30217100213643, 46.96975436163782],
+ [-119.28846587411277, 46.96432803075368],
+ [-119.28550461047222, 46.96260089427262],
+ [-119.27476074608911, 46.95392607436571],
+ [-119.27330737918909, 46.95246907011607],
+ [-119.2673248901495, 46.942337245959514],
+ [-119.26633493107667, 46.93220542180296],
+ [-119.27014240491097, 46.92207359764641],
+ [-119.27476074608911, 46.91771585944957],
+ [-119.28066941553358, 46.91194177348986],
+ [-119.28846587411277, 46.90835545424265],
+ [-119.30217100213643, 46.904467780586536],
+ [-119.31587613016009, 46.903521093047964],
+ [-119.32958125818375, 46.90498765988595],
+ [-119.34328638620741, 46.90868747747235],
+ [-119.35158845010052, 46.91194177348986],
+ [-119.35699151423107, 46.91555837506191],
+ [-119.36700285268249, 46.92207359764641],
+ [-119.37069664225473, 46.92822647750051],
+ [-119.37426807234291, 46.93220542180296]
+ ],
+ [
+ [-114.25252686644069, 42.54512556201585],
+ [-114.25466607903736, 42.5552573861724],
+ [-114.25368149531975, 42.56538921032895],
+ [-114.24934617198836, 42.575521034485504],
+ [-114.24497876140623, 42.58107112908261],
+ [-114.24045423558599, 42.58565285864206],
+ [-114.23127363338257, 42.59206069515737],
+ [-114.22000801598543, 42.59578468279861],
+ [-114.21756850535891, 42.59662133587991],
+ [-114.20386337733525, 42.59802219174787],
+ [-114.19024492932499, 42.59578468279861],
+ [-114.1901582493116, 42.59577421229065],
+ [-114.17645312128793, 42.590286049427114],
+ [-114.17082398436708, 42.58565285864206],
+ [-114.16301500767422, 42.575521034485504],
+ [-114.16274799326428, 42.574617434056165],
+ [-114.16038922181114, 42.56538921032895],
+ [-114.16267046757666, 42.5552573861724],
+ [-114.16274799326428, 42.555167316967044],
+ [-114.16850660562372, 42.54512556201585],
+ [-114.17645312128793, 42.53852437122962],
+ [-114.1813590476809, 42.534993737859295],
+ [-114.1901582493116, 42.529874839483455],
+ [-114.20386337733525, 42.52601517699979],
+ [-114.21756850535891, 42.525210558942646],
+ [-114.23127363338257, 42.52748559713975],
+ [-114.24456862951384, 42.534993737859295],
+ [-114.24497876140623, 42.53550753730769],
+ [-114.25252686644069, 42.54512556201585]
+ ],
+ [
+ [-119.0694098540011, 46.2027140825312],
+ [-119.07442853976066, 46.212845906687754],
+ [-119.07483721697521, 46.222977730844306],
+ [-119.07072333818563, 46.23310955500086],
+ [-119.06918382573423, 46.23470981282989],
+ [-119.06010762052745, 46.24324137915741],
+ [-119.05547869771057, 46.24582061441459],
+ [-119.04177356968691, 46.251287560093914],
+ [-119.0309274481411, 46.25337320331396],
+ [-119.02806844166325, 46.25379069717523],
+ [-119.01436331363959, 46.25354154857322],
+ [-119.01325065725123, 46.25337320331396],
+ [-119.00065818561593, 46.25028802645847],
+ [-118.98695305759227, 46.24410778251529],
+ [-118.9853538129152, 46.24324137915741],
+ [-118.97537615289072, 46.23310955500086],
+ [-118.97324792956861, 46.22725797318208],
+ [-118.97141153588778, 46.222977730844306],
+ [-118.97214466033554, 46.212845906687754],
+ [-118.97324792956861, 46.210659069781485],
+ [-118.9776031370853, 46.2027140825312],
+ [-118.98695305759227, 46.1945556542409],
+ [-118.99023931102542, 46.19258225837465],
+ [-119.00065818561593, 46.18790925710291],
+ [-119.01436331363959, 46.18486380880579],
+ [-119.02806844166325, 46.18442041248771],
+ [-119.04177356968691, 46.186446217660034],
+ [-119.05547869771057, 46.19160571310298],
+ [-119.0570259373315, 46.19258225837465],
+ [-119.06918382573423, 46.20243744558507],
+ [-119.0694098540011, 46.2027140825312]
+ ],
+ [
+ [-116.91979099857913, 43.629230746766936],
+ [-116.92011287463305, 43.63936257092349],
+ [-116.91747872601975, 43.64250943466732],
+ [-116.9073866519389, 43.64949439508004],
+ [-116.90377359799609, 43.65094704354287],
+ [-116.89006846997243, 43.65070806930271],
+ [-116.88663535666916, 43.64949439508004],
+ [-116.87636334194877, 43.64234851622635],
+ [-116.87236121191417, 43.63936257092349],
+ [-116.86474375027372, 43.629230746766936],
+ [-116.86265821392512, 43.62831003419995],
+ [-116.84895308590146, 43.62801392124203],
+ [-116.8352479578778, 43.62586590205887],
+ [-116.82154282985414, 43.623205695492835],
+ [-116.81189458215535, 43.629230746766936],
+ [-116.80783770183048, 43.630645286715804],
+ [-116.79413257380682, 43.63495342241168],
+ [-116.78042744578316, 43.634165839286034],
+ [-116.77112921482245, 43.629230746766936],
+ [-116.7667223177595, 43.62295852717475],
+ [-116.76512213059915, 43.619098922610384],
+ [-116.7667223177595, 43.61578988817778],
+ [-116.76990342896437, 43.60896709845383],
+ [-116.78042744578316, 43.60054363050152],
+ [-116.7884685896865, 43.59883527429728],
+ [-116.79413257380682, 43.59716826177433],
+ [-116.80783770183048, 43.59849777264979],
+ [-116.82154282985414, 43.595355206763635],
+ [-116.83165022227885, 43.58870345014073],
+ [-116.8352479578778, 43.58727318786356],
+ [-116.84895308590146, 43.58475252547099],
+ [-116.86265821392512, 43.58718230467157],
+ [-116.86567770529047, 43.58870345014073],
+ [-116.87636334194877, 43.597446283416986],
+ [-116.87773425682845, 43.59883527429728],
+ [-116.88271658602797, 43.60896709845383],
+ [-116.89006846997243, 43.614359105069276],
+ [-116.90377359799609, 43.61703437030588],
+ [-116.90734739827474, 43.619098922610384],
+ [-116.91747872601975, 43.62605712514941],
+ [-116.91979099857913, 43.629230746766936]
+ ],
+ [
+ [-119.63749948223938, 45.97981395108705],
+ [-119.6401640321529, 45.989945775243605],
+ [-119.63849887655938, 46.00007759940016],
+ [-119.63200960728108, 46.01020942355671],
+ [-119.63109407470425, 46.011047319981536],
+ [-119.61843596242562, 46.02034124771326],
+ [-119.61738894668059, 46.02087182101205],
+ [-119.60368381865693, 46.025647559408654],
+ [-119.58997869063327, 46.027424900179284],
+ [-119.57627356260961, 46.02657443634523],
+ [-119.56256843458596, 46.022749487043896],
+ [-119.55837670665511, 46.02034124771326],
+ [-119.5488633065623, 46.014214928377775],
+ [-119.54543468277234, 46.01020942355671],
+ [-119.54022722486098, 46.00007759940016],
+ [-119.53966647347282, 45.989945775243605],
+ [-119.54361867458162, 45.97981395108705],
+ [-119.5488633065623, 45.97314266418874],
+ [-119.55298039187768, 45.9696821269305],
+ [-119.56256843458596, 45.963725146034385],
+ [-119.57457886021948, 45.95955030277395],
+ [-119.57627356260961, 45.9589631390652],
+ [-119.58997869063327, 45.95750821611395],
+ [-119.60368381865693, 45.95861260316237],
+ [-119.60774169684235, 45.95955030277395],
+ [-119.61738894668059, 45.96294142489826],
+ [-119.62900655081093, 45.9696821269305],
+ [-119.63109407470425, 45.97209123937002],
+ [-119.63749948223938, 45.97981395108705]
+ ],
+ [
+ [-115.98848877152722, 42.87947575918207],
+ [-115.99476189033571, 42.88960758333862],
+ [-115.99596118763158, 42.899739407495176],
+ [-115.99280449700314, 42.90987123165173],
+ [-115.98553002041093, 42.91865302337168],
+ [-115.98447647685184, 42.92000305580828],
+ [-115.97182489238727, 42.92789235428828],
+ [-115.96637349634861, 42.93013487996483],
+ [-115.95811976436362, 42.93287179084623],
+ [-115.94441463633996, 42.9344746000338],
+ [-115.9307095083163, 42.93321612889193],
+ [-115.92036495471454, 42.93013487996483],
+ [-115.91700438029264, 42.928182754800446],
+ [-115.90611306021752, 42.92000305580828],
+ [-115.90329925226898, 42.914649513192614],
+ [-115.90050207619001, 42.90987123165173],
+ [-115.89958356751085, 42.899739407495176],
+ [-115.90293937704317, 42.88960758333862],
+ [-115.90329925226898, 42.88907510721651],
+ [-115.91100051388324, 42.87947575918207],
+ [-115.91700438029264, 42.87484963909873],
+ [-115.92840609750611, 42.86934393502552],
+ [-115.9307095083163, 42.86839353142684],
+ [-115.94441463633996, 42.86549332607854],
+ [-115.95811976436362, 42.865573882894374],
+ [-115.97182489238727, 42.86886468176215],
+ [-115.97278867872441, 42.86934393502552],
+ [-115.98553002041093, 42.876493408727875],
+ [-115.98848877152722, 42.87947575918207]
+ ],
+ [
+ [-114.39745481344721, 42.47420279291998],
+ [-114.40352343050343, 42.484334617076534],
+ [-114.40551489661038, 42.49446644123309],
+ [-114.40197833162159, 42.50459826538964],
+ [-114.39573516966648, 42.509572837743846],
+ [-114.38981755691887, 42.51473008954619],
+ [-114.38203004164282, 42.51757144231718],
+ [-114.36832491361916, 42.52043946363399],
+ [-114.3546197855955, 42.520308104596616],
+ [-114.34091465757184, 42.51708693217103],
+ [-114.3346344728282, 42.51473008954619],
+ [-114.32720952954818, 42.50942067408749],
+ [-114.32078568752375, 42.50459826538964],
+ [-114.31724979957939, 42.49446644123309],
+ [-114.31946616555317, 42.484334617076534],
+ [-114.3270628142764, 42.47420279291998],
+ [-114.32720952954818, 42.47404772736523],
+ [-114.34091465757184, 42.4653861627277],
+ [-114.34705265574587, 42.46407096876343],
+ [-114.3546197855955, 42.46192967923083],
+ [-114.36832491361916, 42.461905759247756],
+ [-114.38103836878504, 42.46407096876343],
+ [-114.38203004164282, 42.464616013975544],
+ [-114.39573516966648, 42.4724137271096],
+ [-114.39745481344721, 42.47420279291998]
+ ],
+ [
+ [-119.71480986821824, 47.06391913583814],
+ [-119.71810774335665, 47.07405095999469],
+ [-119.71527832754181, 47.084182784151245],
+ [-119.7133248428462, 47.08633029847885],
+ [-119.70431706072739, 47.0943146083078],
+ [-119.69961971482255, 47.09671807106793],
+ [-119.68591458679889, 47.10050581583324],
+ [-119.67220945877523, 47.100774096810824],
+ [-119.65850433075157, 47.097493924939954],
+ [-119.652059742916, 47.0943146083078],
+ [-119.64479920272791, 47.08740772987774],
+ [-119.64216933471022, 47.084182784151245],
+ [-119.64058970122774, 47.07405095999469],
+ [-119.64479920272791, 47.064870721556055],
+ [-119.645337448137, 47.06391913583814],
+ [-119.65850433075157, 47.054150416215634],
+ [-119.65950158689054, 47.05378731168159],
+ [-119.67220945877523, 47.050121228266384],
+ [-119.68591458679889, 47.049675571398325],
+ [-119.69961971482255, 47.05274421996783],
+ [-119.70182428439684, 47.05378731168159],
+ [-119.7133248428462, 47.06222545595011],
+ [-119.71480986821824, 47.06391913583814]
+ ],
+ [
+ [-116.70435596655818, 43.42659426363589],
+ [-116.70518131108057, 43.436726087792444],
+ [-116.70020432284993, 43.446857911948996],
+ [-116.6981966776412, 43.44881723932635],
+ [-116.68587320376314, 43.45698973610555],
+ [-116.68449154961755, 43.45765609363487],
+ [-116.67078642159389, 43.46061834642083],
+ [-116.65708129357023, 43.459538298314584],
+ [-116.65047807177724, 43.45698973610555],
+ [-116.64337616554657, 43.45290312446669],
+ [-116.63780742604493, 43.446857911948996],
+ [-116.63588882081916, 43.436726087792444],
+ [-116.64086308109592, 43.42659426363589],
+ [-116.64337616554657, 43.42448408910138],
+ [-116.65400020631242, 43.41646243947934],
+ [-116.65708129357023, 43.4144569508934],
+ [-116.67078642159389, 43.41040137030042],
+ [-116.68449154961755, 43.41107730755123],
+ [-116.69630058642706, 43.41646243947934],
+ [-116.6981966776412, 43.41813859648113],
+ [-116.70435596655818, 43.42659426363589]
+ ],
+ [
+ [-119.39813626530923, 46.87141447686365],
+ [-119.39810689830205, 46.87150916720026],
+ [-119.39491283910625, 46.8815463010202],
+ [-119.38440177027839, 46.88863913605449],
+ [-119.37378169502863, 46.89167812517675],
+ [-119.37069664225473, 46.89206443339062],
+ [-119.36712308989274, 46.89167812517675],
+ [-119.35699151423107, 46.88994523726026],
+ [-119.34328638620741, 46.88274902369716],
+ [-119.34145086205854, 46.8815463010202],
+ [-119.3370696256059, 46.87141447686365],
+ [-119.34060727241972, 46.8612826527071],
+ [-119.34328638620741, 46.85846969942566],
+ [-119.35699151423107, 46.851825871997484],
+ [-119.367269713474, 46.851150828550544],
+ [-119.37069664225473, 46.850918240983546],
+ [-119.37165143769445, 46.851150828550544],
+ [-119.38440177027839, 46.85471856778873],
+ [-119.39320805511109, 46.8612826527071],
+ [-119.39810689830205, 46.871331715844306],
+ [-119.39813626530923, 46.87141447686365]
+ ],
+ [
+ [-117.04082487823268, 43.87016729713071],
+ [-117.04596213286045, 43.87239452652419],
+ [-117.05357610415177, 43.88252635068074],
+ [-117.05049536930119, 43.892658174837294],
+ [-117.04082487823268, 43.90018262651614],
+ [-117.02711975020902, 43.901499117695664],
+ [-117.01341462218537, 43.895703390937186],
+ [-117.01056858687421, 43.892658174837294],
+ [-117.00772110014772, 43.88252635068074],
+ [-117.01341462218537, 43.87591532043887],
+ [-117.01642617479828, 43.87239452652419],
+ [-117.02711975020902, 43.86901154136752],
+ [-117.04082487823268, 43.87016729713071]
+ ],
+ [
+ [-119.15208878699812, 47.15510555324711],
+ [-119.15141459387618, 47.156256444823576],
+ [-119.14275108776408, 47.16523737740366],
+ [-119.13770946585252, 47.16778736988145],
+ [-119.12400433782886, 47.169188605555675],
+ [-119.113974248409, 47.16523737740366],
+ [-119.1102992098052, 47.16342940824575],
+ [-119.10571069330565, 47.15510555324711],
+ [-119.10893159728488, 47.14497372909056],
+ [-119.1102992098052, 47.144082287594415],
+ [-119.12400433782886, 47.13760582477401],
+ [-119.13770946585252, 47.1379189753955],
+ [-119.15008794800421, 47.14497372909056],
+ [-119.15141459387618, 47.152043944840976],
+ [-119.15208878699812, 47.15510555324711]
+ ],
+ [
+ [-114.54924106784439, 42.59578468279861],
+ [-114.54649157792673, 42.602871327588375],
+ [-114.53905386720075, 42.60591650695516],
+ [-114.53278644990307, 42.60813127713039],
+ [-114.52681977190755, 42.60591650695516],
+ [-114.51988324649038, 42.59578468279861],
+ [-114.52961584539119, 42.58565285864206],
+ [-114.53278644990307, 42.5843921218424],
+ [-114.53765489110998, 42.58565285864206],
+ [-114.54649157792673, 42.588015489009045],
+ [-114.54924106784439, 42.59578468279861]
+ ],
+ [
+ [-117.01565680044743, 43.73054898833246],
+ [-117.01341462218537, 43.73303148147697],
+ [-117.0020559164116, 43.74068081248901],
+ [-116.9997094941617, 43.741886484381425],
+ [-116.98600436613805, 43.742819203501895],
+ [-116.98258119065355, 43.74068081248901],
+ [-116.98600436613805, 43.7318253418769],
+ [-116.98766106698761, 43.73054898833246],
+ [-116.9997094941617, 43.723943070939185],
+ [-117.01341462218537, 43.72518343823455],
+ [-117.01565680044743, 43.73054898833246]
+ ],
+ [
+ [-117.03206776048202, 43.983844592246264],
+ [-117.02711975020902, 43.991385491861095],
+ [-117.02033710584654, 43.993976416402816],
+ [-117.01341462218537, 43.99625727851077],
+ [-116.9997094941617, 43.99634083435541],
+ [-116.99679720215113, 43.993976416402816],
+ [-116.99656424100576, 43.983844592246264],
+ [-116.9997094941617, 43.98304879284017],
+ [-117.01341462218537, 43.98302262883379],
+ [-117.02711975020902, 43.9814286632918],
+ [-117.03206776048202, 43.983844592246264]
+ ],
+ [
+ [-117.10935051835098, 43.76434731869599],
+ [-117.11046016516616, 43.77107628495867],
+ [-117.10935051835098, 43.77251286353452],
+ [-117.10221391453635, 43.77107628495867],
+ [-117.09564539032732, 43.767867135681634],
+ [-117.08895199149971, 43.760944460802115],
+ [-117.09119260837323, 43.75081263664556],
+ [-117.09564539032732, 43.74525859685289],
+ [-117.10721084426426, 43.75081263664556],
+ [-117.1065683900647, 43.760944460802115],
+ [-117.10935051835098, 43.76434731869599]
+ ],
+ [
+ [-116.90822682398728, 43.77107628495867],
+ [-116.906411839171, 43.78120810911522],
+ [-116.90377359799609, 43.783026837576344],
+ [-116.89006846997243, 43.78256783244028],
+ [-116.8877959202694, 43.78120810911522],
+ [-116.88595667328309, 43.77107628495867],
+ [-116.89006846997243, 43.76787491342765],
+ [-116.90377359799609, 43.76725003619739],
+ [-116.90822682398728, 43.77107628495867]
+ ],
+ [
+ [-116.97335427285603, 43.669758043393145],
+ [-116.98029832251707, 43.6798898675497],
+ [-116.97229923811439, 43.68508361784762],
+ [-116.95859411009073, 43.68306522449329],
+ [-116.95331414658749, 43.6798898675497],
+ [-116.95859411009073, 43.67080460892149],
+ [-116.96468029283194, 43.669758043393145],
+ [-116.97229923811439, 43.6690999757447],
+ [-116.97335427285603, 43.669758043393145]
+ ],
+ [
+ [-117.12305564637464, 43.80774120479451],
+ [-117.126170744168, 43.811603581584876],
+ [-117.12305564637464, 43.8135207914779],
+ [-117.10998861854797, 43.811603581584876],
+ [-117.12305564637464, 43.80774120479451]
+ ],
+ [
+ [-117.03613675631539, 43.88252635068074],
+ [-117.02711975020902, 43.88426978654155],
+ [-117.02540538487578, 43.88252635068074],
+ [-117.02711975020902, 43.88057682883853],
+ [-117.03613675631539, 43.88252635068074]
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "stroke": "#0000ff",
+ "stroke-width": 3,
+ "stroke-opacity": 1,
+ "fill": "#0000ff",
+ "fill-opacity": 0.1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-117.18831927404979, 44.030028579646306],
+ [-117.17430259047141, 44.0503397169731],
+ [-117.1555607706998, 44.06856989129167],
+ [-117.13267142393586, 44.084159415030065],
+ [-117.10633998313425, 44.0966300798537],
+ [-116.93475998313426, 44.16312134330424],
+ [-116.90390792911025, 44.17252064368216],
+ [-116.87115874581731, 44.17764492399985],
+ [-116.83765236160744, 44.178316943325235],
+ [-116.80455506136143, 44.17451346096602],
+ [-116.77301889063061, 44.16636602460454],
+ [-116.74414155541912, 44.15415650782037],
+ [-116.718928213408, 44.13830753625746],
+ [-116.69825648658713, 44.119368102880635],
+ [-116.54778348658715, 43.95101745855099],
+ [-116.53323653904495, 43.93109389154936],
+ [-116.52370589955504, 43.90964883730375],
+ [-116.50492289955501, 43.849864536541844],
+ [-116.50148753791605, 43.83490799564131],
+ [-116.43944453791603, 43.41135161417976],
+ [-116.43927575177105, 43.385031874270105],
+ [-116.4463765506012, 43.35921139047269],
+ [-116.46045828155836, 43.33494109005902],
+ [-116.48094851161846, 43.313210010145426],
+ [-116.50701429741726, 43.29490470126345],
+ [-116.53759604502879, 43.28077267891232],
+ [-116.57145058326049, 43.27139149081336],
+ [-116.60720169950345, 43.26714474510305],
+ [-116.64339608381675, 43.268206153413395],
+ [-116.6785624070769, 43.274532295880086],
+ [-116.71127113162042, 43.28586443008807],
+ [-116.7401926230323, 43.301739263359636],
+ [-116.90191262303232, 43.410652293483516],
+ [-116.91245563737971, 43.41836257414538],
+ [-117.2289646373797, 43.66942845917556],
+ [-117.23934111816067, 43.67842459985051],
+ [-117.25943411816067, 43.697529650437545],
+ [-117.27980251604193, 43.722111404969176],
+ [-117.29221784328412, 43.74931172932149],
+ [-117.29607572181801, 43.777803874226485],
+ [-117.29549672181803, 43.80978996732102],
+ [-117.29218178569649, 43.83293911240257],
+ [-117.28318327404982, 43.85527900760285],
+ [-117.18831927404979, 44.030028579646306]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson
new file mode 100644
index 000000000..6f3fc1656
--- /dev/null
+++ b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson
@@ -0,0 +1,247 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "source": "https://github.com/Turfjs/turf/issues/2048#issue-819829932"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-3.83455192598234, 40.409050315155],
+ [-3.8345491088924044, 40.409032816373895],
+ [-3.8345418625081247, 40.40901607230197],
+ [-3.8345304653068033, 40.40900072640372],
+ [-3.8345153552783007, 40.40898736841227],
+ [-3.834497113093057, 40.408976511666445],
+ [-3.8344764397871756, 40.408968573383575],
+ [-3.8344541298221237, 40.40896385862635],
+ [-3.8344310405543442, 40.40896254857957],
+ [-3.8344080592879837, 40.40896469358739],
+ [-3.83438606917682, 40.408970211218694],
+ [-3.8343659152856744, 40.4089788894348],
+ [-3.834348372115476, 40.40899039473786],
+ [-3.834177858760829, 40.409126560378894],
+ [-3.83375168422429, 40.409032801990904],
+ [-3.8337284856464264, 40.40902956463916],
+ [-3.833704904835557, 40.4090299015569],
+ [-3.8336818820896954, 40.40903379930932],
+ [-3.8336603354539585, 40.409041102471356],
+ [-3.83364112411339, 40.409051519825255],
+ [-3.8336250141327364, 40.409064635972896],
+ [-3.833612647909254, 40.4090799278999],
+ [-3.8336044119232677, 40.40909284706399],
+ [-3.8335729899859303, 40.40911989936291],
+ [-3.83354357775375, 40.40912687044306],
+ [-3.8335137989493044, 40.40912125718645],
+ [-3.833480309818796, 40.40909557565847],
+ [-3.833396901450346, 40.40898192854682],
+ [-3.8333837868735388, 40.408967551586315],
+ [-3.833367263037019, 40.408955381441274],
+ [-3.8333479559674717, 40.40894587919202],
+ [-3.8333265971366535, 40.40893940484228],
+ [-3.8330251177882237, 40.40887304968846],
+ [-3.8328484611333167, 40.40876426559626],
+ [-3.832734951264248, 40.40843336454013],
+ [-3.832726932462509, 40.40841682588908],
+ [-3.832714830355114, 40.40840179621679],
+ [-3.8326991100208536, 40.40838885310396],
+ [-3.8326803755836294, 40.408378493945825],
+ [-3.8326593469962735, 40.40837111683777],
+ [-3.832636832373328, 40.408367005276865],
+ [-3.832613696936004, 40.40836631726752],
+ [-3.8325908297626894, 40.40836907924944],
+ [-3.832569109622699, 40.40837518508161],
+ [-3.8325493712061665, 40.40838440012121],
+ [-3.832532373047783, 40.40839637024059],
+ [-3.8325187683769677, 40.40841063543614],
+ [-3.832509080014675, 40.40842664750565],
+ [-3.832503680281511, 40.40844379111528],
+ [-3.8325027766893167, 40.40846140744634],
+ [-3.832506403966127, 40.408478819513206],
+ [-3.832629725743574, 40.40883832755169],
+ [-3.832630673594837, 40.408840282474216],
+ [-3.8326312267798404, 40.40884232335561],
+ [-3.832634676039257, 40.40884853742842],
+ [-3.8326377445716466, 40.40885486620945],
+ [-3.8326391750873223, 40.40885664276608],
+ [-3.8326402405435473, 40.40885856225713],
+ [-3.8326452156545074, 40.40886414454316],
+ [-3.8326498467432972, 40.40886989588979],
+ [-3.832651704949721, 40.4088714258083],
+ [-3.832653241732515, 40.40887315014393],
+ [-3.8326595515049795, 40.40887788611862],
+ [-3.8326655671804466, 40.40888283900928],
+ [-3.832667781667827, 40.40888406349555],
+ [-3.832669730719638, 40.40888552641043],
+ [-3.832895130800659, 40.40902432655466],
+ [-3.8329147852579775, 40.40903413960093],
+ [-3.8329366023975, 40.409040795056804],
+ [-3.8332143756147303, 40.40910193263683],
+ [-3.8332819982841775, 40.4091940714427],
+ [-3.8333012883881694, 40.409213565255875],
+ [-3.83336948838725, 40.40926586530512],
+ [-3.8333859436734707, 40.40927637405202],
+ [-3.8334046261255996, 40.409284440127564],
+ [-3.8334249180008944, 40.40928979682342],
+ [-3.83351881811523, 40.40930749684639],
+ [-3.8335399766319913, 40.40930996368926],
+ [-3.8335613724013182, 40.40930948223858],
+ [-3.8335823026760876, 40.40930606830765],
+ [-3.833674702782557, 40.40928416827969],
+ [-3.833694495571647, 40.40927792779691],
+ [-3.8337124823739304, 40.40926906767858],
+ [-3.833728071449941, 40.40925787940999],
+ [-3.8337678988659136, 40.40922359047],
+ [-3.8341811162739527, 40.40931449813965],
+ [-3.83418743179838, 40.40931538856986],
+ [-3.8341936207298533, 40.40931669648408],
+ [-3.834198787843836, 40.40931698966665],
+ [-3.834203882679486, 40.40931770799109],
+ [-3.8342103049943153, 40.40931764315093],
+ [-3.8342167101145117, 40.40931800657809],
+ [-3.834221853061412, 40.409317526560784],
+ [-3.834227034046546, 40.40931747425317],
+ [-3.8342333163447924, 40.40931645663443],
+ [-3.8342396915076176, 40.40931586160816],
+ [-3.834244612646042, 40.40931462683783],
+ [-3.834249680677578, 40.40931380590834],
+ [-3.8342555815332413, 40.409311874617664],
+ [-3.834261681743722, 40.40931034400458],
+ [-3.834266191956608, 40.40930840193288],
+ [-3.834270952272051, 40.40930684392955],
+ [-3.834276244917819, 40.40930407318568],
+ [-3.834281835747566, 40.40930166580659],
+ [-3.8342857617095607, 40.40929909106643],
+ [-3.834290031372107, 40.40929685586274],
+ [-3.834294512414421, 40.409293352144026],
+ [-3.834299379010279, 40.409290160513585],
+ [-3.83451932993786, 40.40911451550404],
+ [-3.834533588198565, 40.40910062523229],
+ [-3.8345440136045337, 40.40908488381169],
+ [-3.834550205515344, 40.40906789617728],
+ [-3.83455192598234, 40.409050315155]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-3.83455192598234, 40.409050315155],
+ [-3.8345491088924044, 40.409032816373895],
+ [-3.8345418625081247, 40.40901607230197],
+ [-3.8345304653068033, 40.40900072640372],
+ [-3.8345153552783007, 40.40898736841227],
+ [-3.834497113093057, 40.408976511666445],
+ [-3.8344764397871756, 40.408968573383575],
+ [-3.8344541298221237, 40.40896385862635],
+ [-3.8344310405543442, 40.40896254857957],
+ [-3.8344080592879837, 40.40896469358739],
+ [-3.83438606917682, 40.408970211218694],
+ [-3.8343659152856744, 40.4089788894348],
+ [-3.834348372115476, 40.40899039473786],
+ [-3.8341860126530114, 40.40912004898301],
+ [-3.8336592689516156, 40.40894040968877],
+ [-3.8336560611269483, 40.408853862971455],
+ [-3.8336531483024934, 40.40883639291525],
+ [-3.8336458201698336, 40.40881969002402],
+ [-3.833634357725855, 40.40880439476212],
+ [-3.8336192004948124, 40.40879109361868],
+ [-3.8336009296747, 40.40878029661897],
+ [-3.8335802458513806, 40.40877241776803],
+ [-3.8335579421350627, 40.40876775917592],
+ [-3.833534873749143, 40.408766499473685],
+ [-3.8335119252374934, 40.40876868696387],
+ [-3.8329991583627283, 40.40885706407902],
+ [-3.8328484611367055, 40.40876426560614],
+ [-3.832734951264248, 40.40843336454013],
+ [-3.832726932462509, 40.40841682588908],
+ [-3.832714830355114, 40.40840179621679],
+ [-3.8326991100208536, 40.40838885310396],
+ [-3.8326803755836294, 40.408378493945825],
+ [-3.8326593469962735, 40.40837111683777],
+ [-3.832636832373328, 40.408367005276865],
+ [-3.832613696936004, 40.40836631726752],
+ [-3.8325908297626894, 40.40836907924944],
+ [-3.832569109622699, 40.40837518508161],
+ [-3.8325493712061665, 40.40838440012121],
+ [-3.832532373047783, 40.40839637024059],
+ [-3.8325187683769677, 40.40841063543614],
+ [-3.832509080014675, 40.40842664750565],
+ [-3.832503680281511, 40.40844379111528],
+ [-3.8325027766893167, 40.40846140744634],
+ [-3.832506403966127, 40.408478819513206],
+ [-3.832629725743574, 40.40883832755169],
+ [-3.832630673594837, 40.408840282474216],
+ [-3.8326312267798404, 40.40884232335561],
+ [-3.832634676039257, 40.40884853742842],
+ [-3.8326377445716466, 40.40885486620945],
+ [-3.8326391750873223, 40.40885664276608],
+ [-3.8326402405435473, 40.40885856225713],
+ [-3.8326452156545074, 40.40886414454316],
+ [-3.8326498467432972, 40.40886989588979],
+ [-3.832651704949721, 40.4088714258083],
+ [-3.832653241732515, 40.40887315014393],
+ [-3.8326595515049795, 40.40887788611862],
+ [-3.8326655671804466, 40.40888283900928],
+ [-3.832667781667827, 40.40888406349555],
+ [-3.832669730719638, 40.40888552641043],
+ [-3.832895130800659, 40.40902432655466],
+ [-3.832912826549752, 40.40903334387367],
+ [-3.832932361033984, 40.40903979538643],
+ [-3.8329530993491185, 40.40904347140754],
+ [-3.8329743674638825, 40.40904425245991],
+ [-3.832995474127387, 40.409042113158],
+ [-3.8334239904054592, 40.4089682573086],
+ [-3.8334252386134966, 40.40900193691386],
+ [-3.833427914072361, 40.40901859790407],
+ [-3.833434609021053, 40.40903459013415],
+ [-3.8334450902424826, 40.4090493565116],
+ [-3.833458992623358, 40.409062382646496],
+ [-3.833475831872736, 40.409073214770295],
+ [-3.8334950213922845, 40.40908147554315],
+ [-3.8341656220460503, 40.40931017582205],
+ [-3.8341685519810556, 40.4093109223674],
+ [-3.8341713106692126, 40.409311981672516],
+ [-3.834179509631203, 40.40931371436887],
+ [-3.834187578725782, 40.40931577036844],
+ [-3.8341906436391717, 40.40931606733198],
+ [-3.8341936207298533, 40.40931669648408],
+ [-3.8342021060938283, 40.40931717794449],
+ [-3.8342105469212235, 40.409317995787504],
+ [-3.834213629029606, 40.40931783175702],
+ [-3.8342167101145117, 40.40931800657809],
+ [-3.8342251557914957, 40.40931721830024],
+ [-3.834233643974112, 40.4093167665573],
+ [-3.8342366248332436, 40.40931614783642],
+ [-3.8342396915076176, 40.40931586160816],
+ [-3.8342477729339226, 40.40931383388519],
+ [-3.834255982274187, 40.40931212991664],
+ [-3.834258747330996, 40.40931108028254],
+ [-3.834261681743722, 40.40931034400458],
+ [-3.8342690883535533, 40.409307154761045],
+ [-3.8342767033700853, 40.40930426404971],
+ [-3.834279146364692, 40.40930282383937],
+ [-3.834281835747566, 40.40930166580659],
+ [-3.8342882829085267, 40.4092974376036],
+ [-3.8342950109596026, 40.40929347123841],
+ [-3.834297038009003, 40.409291695798444],
+ [-3.834299379010279, 40.409290160513585],
+ [-3.83451932993786, 40.40911451550404],
+ [-3.834533588198565, 40.40910062523229],
+ [-3.8345440136045337, 40.40908488381169],
+ [-3.834550205515344, 40.40906789617728],
+ [-3.83455192598234, 40.409050315155]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson
new file mode 100644
index 000000000..b29da5bcc
--- /dev/null
+++ b/packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson
@@ -0,0 +1,49 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "source": "https://github.com/Turfjs/turf/issues/2048#issuecomment-805719137"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [973.2050807568878, 709.8076211353313],
+ [923.2050807568877, 623.2050807568874],
+ [923.2050807568877, 623.2050807568874],
+ [973.2050807568877, 536.6025403784436],
+ [973.2050807568877, 536.6025403784436],
+ [1073.2050807568876, 536.6025403784436],
+ [1073.2050807568876, 536.6025403784436],
+ [1123.2050807568878, 623.2050807568874],
+ [1123.2050807568878, 623.2050807568874],
+ [1073.2050807568878, 709.8076211353313],
+ [1073.2050807568878, 709.8076211353313],
+ [973.2050807568878, 709.8076211353313]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [1009.8076211353315, 573.2050807568876],
+ [923.2050807568877, 623.2050807568876],
+ [923.2050807568877, 623.2050807568876],
+ [873.2050807568877, 536.6025403784438],
+ [873.2050807568877, 536.6025403784438],
+ [959.8076211353315, 486.60254037844373],
+ [959.8076211353315, 486.60254037844373],
+ [1009.8076211353315, 573.2050807568876]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-intersect/test/out/Intersect2.geojson b/packages/turf-intersect/test/out/Intersect2.geojson
index b3cb280f2..8755e4c99 100644
--- a/packages/turf-intersect/test/out/Intersect2.geojson
+++ b/packages/turf-intersect/test/out/Intersect2.geojson
@@ -59,7 +59,7 @@
[-80.0066252126598, 32.84617770697059],
[-79.99351501464844, 32.84440429734253],
[-79.98184204101562, 32.90495631913751],
- [-80.0050160405751, 32.91295307720083],
+ [-80.00501604057509, 32.91295307720083],
[-80.068359375, 32.88189375925038]
]
]
diff --git a/packages/turf-intersect/test/out/issue-1004.geojson b/packages/turf-intersect/test/out/issue-1004.geojson
index 08be62434..45a42a10e 100644
--- a/packages/turf-intersect/test/out/issue-1004.geojson
+++ b/packages/turf-intersect/test/out/issue-1004.geojson
@@ -132,12 +132,12 @@
"type": "Polygon",
"coordinates": [
[
- [-114.757217, 32.619867791666415],
- [-114.757213, 32.61975337499965],
- [-114.757213, 32.61992600000001],
+ [-114.757217, 32.619867791666664],
+ [-114.757213, 32.619753375],
+ [-114.757213, 32.619926],
[-114.757215, 32.619925],
[-114.757217, 32.619925],
- [-114.757217, 32.619867791666415]
+ [-114.757217, 32.619867791666664]
]
]
}
diff --git a/packages/turf-intersect/test/out/issue-412.geojson b/packages/turf-intersect/test/out/issue-412.geojson
index c2a5ecd53..aa52f6dec 100644
--- a/packages/turf-intersect/test/out/issue-412.geojson
+++ b/packages/turf-intersect/test/out/issue-412.geojson
@@ -48,9 +48,10 @@
"coordinates": [
[
[11.076136797048882, 9.856269774244707],
- [11.102599853580067, 9.85386305739084],
- [11.167525294018606, 9.85386305739084],
- [11.1687361088318, 9.855073034114678],
+ [11.076136797048889, 9.856269774244705],
+ [11.102599853580049, 9.85386305739084],
+ [11.167525294018608, 9.85386305739084],
+ [11.168736108831801, 9.855073034114678],
[11.076136797048882, 9.856269774244707]
]
]
diff --git a/packages/turf-intersect/test/out/multipolygon-input.geojson b/packages/turf-intersect/test/out/multipolygon-input.geojson
index a5929c676..971c29d01 100644
--- a/packages/turf-intersect/test/out/multipolygon-input.geojson
+++ b/packages/turf-intersect/test/out/multipolygon-input.geojson
@@ -79,7 +79,7 @@
[2.3500442504882812, 48.85613168160397],
[2.3500442504882812, 48.8615527456014],
[2.3273849487304688, 48.87148983809234],
- [2.3247093480083025, 48.87186313938144],
+ [2.324709348008303, 48.87186313938144],
[2.3239517211914062, 48.86787657822752]
]
],
@@ -87,8 +87,8 @@
[
[2.3363113403320312, 48.87690923865779],
[2.3514175415039062, 48.86516646209463],
- [2.353365325175929, 48.86714166070064],
- [2.3444407066054653, 48.87804332946407],
+ [2.353365325175928, 48.86714166070064],
+ [2.3444407066054644, 48.87804332946407],
[2.3363113403320312, 48.87690923865779]
]
]
diff --git a/packages/turf-invariant/README.md b/packages/turf-invariant/README.md
index a885eebbb..381e2d58e 100644
--- a/packages/turf-invariant/README.md
+++ b/packages/turf-invariant/README.md
@@ -64,6 +64,8 @@ Enforce expectations about types of GeoJSON objects for Turf.
* Throws **[Error][9]** if value is not the expected type.
+Returns **void**
+
## featureOf
Enforce expectations about types of [Feature][5] inputs for Turf.
@@ -79,6 +81,8 @@ Internally this uses [geojsonType][10] to judge geometry types.
* Throws **[Error][9]** error if value is not the expected type.
+Returns **void**
+
## collectionOf
Enforce expectations about types of [FeatureCollection][11] inputs for Turf.
diff --git a/packages/turf-invariant/index.ts b/packages/turf-invariant/index.ts
index c544d3c75..a672b17bd 100644
--- a/packages/turf-invariant/index.ts
+++ b/packages/turf-invariant/index.ts
@@ -14,7 +14,7 @@ import { isNumber } from "@turf/helpers";
/**
* Unwrap a coordinate from a Point Feature, Geometry or a single coordinate.
*
- * @name getCoord
+ * @function
* @param {Array|Geometry|Feature} coord GeoJSON Point or an Array of numbers
* @returns {Array} coordinates
* @example
@@ -55,7 +55,7 @@ function getCoord(coord: Feature | Point | number[]): number[] {
/**
* Unwrap coordinates from a Feature, Geometry Object or an Array
*
- * @name getCoords
+ * @function
* @param {Array|Geometry|Feature} coords Feature, Geometry Object or an Array
* @returns {Array} coordinates
* @example
@@ -97,7 +97,7 @@ function getCoords<
/**
* Checks if coordinates contains a number
*
- * @name containsNumber
+ * @function
* @param {Array} coordinates GeoJSON Coordinates
* @returns {boolean} true if Array contains a number
*/
@@ -119,7 +119,7 @@ function containsNumber(coordinates: any[]): boolean {
/**
* Enforce expectations about types of GeoJSON objects for Turf.
*
- * @name geojsonType
+ * @function
* @param {GeoJSON} value any GeoJSON object
* @param {string} type expected GeoJSON type
* @param {string} name name of calling function
@@ -146,7 +146,7 @@ function geojsonType(value: any, type: string, name: string): void {
* Enforce expectations about types of {@link Feature} inputs for Turf.
* Internally this uses {@link geojsonType} to judge geometry types.
*
- * @name featureOf
+ * @function
* @param {Feature} feature a feature with an expected geometry type
* @param {string} type expected GeoJSON type
* @param {string} name name of calling function
@@ -180,7 +180,7 @@ function featureOf(feature: Feature, type: string, name: string): void {
* Enforce expectations about types of {@link FeatureCollection} inputs for Turf.
* Internally this uses {@link geojsonType} to judge geometry types.
*
- * @name collectionOf
+ * @function
* @param {FeatureCollection} featureCollection a FeatureCollection for which features will be judged
* @param {string} type expected GeoJSON type
* @param {string} name name of calling function
diff --git a/packages/turf-invariant/package.json b/packages/turf-invariant/package.json
index 9d3588242..dccfef96a 100644
--- a/packages/turf-invariant/package.json
+++ b/packages/turf-invariant/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/invariant",
- "version": "7.0.0",
- "description": "turf invariant module",
+ "version": "7.2.0",
+ "description": "Lightweight utility for input validation and data extraction in Turf.js. Ensures GeoJSON inputs are in the correct format and extracts specific components like coordinates or geometries.",
"author": "Turf Authors",
"contributors": [
"Tom MacWright <@tmcw>",
@@ -56,17 +56,17 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-isobands/index.ts b/packages/turf-isobands/index.ts
index b03e2f26b..7f7ab8a50 100644
--- a/packages/turf-isobands/index.ts
+++ b/packages/turf-isobands/index.ts
@@ -34,7 +34,7 @@ type GroupedRings =
* Takes a square or rectangular grid {@link FeatureCollection} of {@link Point} features with z-values and an array of
* value breaks and generates filled contour isobands.
*
- * @name isobands
+ * @function
* @param {FeatureCollection} pointGrid input points - must be square or rectangular
* @param {Array} breaks where to draw contours
* @param {Object} [options={}] options on output
diff --git a/packages/turf-isobands/lib/matrix-to-grid.js b/packages/turf-isobands/lib/matrix-to-grid.js
index bd63fb9d1..a8e633872 100644
--- a/packages/turf-isobands/lib/matrix-to-grid.js
+++ b/packages/turf-isobands/lib/matrix-to-grid.js
@@ -12,7 +12,7 @@ import { rhumbDestination } from "@turf/rhumb-destination";
* @param {Object} [options={}] optional parameters
* @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value
* @param {Object} [options.properties={}] GeoJSON properties passed to all the points
- * @param {string} [options.units='kilometers'] used in calculating cellSize, can be miles, or kilometers
+ * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.
* @returns {FeatureCollection} grid of points
*
* @example
diff --git a/packages/turf-isobands/package.json b/packages/turf-isobands/package.json
index 9426064c3..e5387b9a4 100644
--- a/packages/turf-isobands/package.json
+++ b/packages/turf-isobands/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/isobands",
- "version": "7.0.0",
- "description": "turf isobands module",
+ "version": "7.2.0",
+ "description": "Takes a grid of values (GeoJSON format) and a set of threshold ranges. It outputs polygons that group areas within those ranges, effectively creating filled contour isobands.",
"author": "Turf Authors",
"contributors": [
"Stefano Borghi <@stebogit>"
@@ -57,32 +57,32 @@
"test:tape": "tsx test.ts"
},
"devDependencies": {
- "@turf/envelope": "workspace:^",
- "@turf/point-grid": "workspace:^",
- "@turf/random": "workspace:^",
- "@turf/rhumb-destination": "workspace:^",
- "@turf/truncate": "workspace:^",
+ "@turf/envelope": "workspace:*",
+ "@turf/point-grid": "workspace:*",
+ "@turf/random": "workspace:*",
+ "@turf/rhumb-destination": "workspace:*",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/area": "workspace:^",
- "@turf/bbox": "workspace:^",
- "@turf/boolean-point-in-polygon": "workspace:^",
- "@turf/explode": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/area": "workspace:*",
+ "@turf/bbox": "workspace:*",
+ "@turf/boolean-point-in-polygon": "workspace:*",
+ "@turf/explode": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
"marchingsquares": "^1.3.3",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-isolines/index.ts b/packages/turf-isolines/index.ts
index bade82833..92080bfc3 100644
--- a/packages/turf-isolines/index.ts
+++ b/packages/turf-isolines/index.ts
@@ -17,7 +17,7 @@ import {
* Takes a grid {@link FeatureCollection} of {@link Point} features with z-values and an array of
* value breaks and generates [isolines](https://en.wikipedia.org/wiki/Contour_line).
*
- * @name isolines
+ * @function
* @param {FeatureCollection} pointGrid input points
* @param {Array} breaks values of `zProperty` where to draw isolines
* @param {Object} [options={}] Optional parameters
diff --git a/packages/turf-isolines/lib/matrix-to-grid.js b/packages/turf-isolines/lib/matrix-to-grid.js
index bd63fb9d1..85d50e86d 100644
--- a/packages/turf-isolines/lib/matrix-to-grid.js
+++ b/packages/turf-isolines/lib/matrix-to-grid.js
@@ -12,7 +12,7 @@ import { rhumbDestination } from "@turf/rhumb-destination";
* @param {Object} [options={}] optional parameters
* @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value
* @param {Object} [options.properties={}] GeoJSON properties passed to all the points
- * @param {string} [options.units='kilometers'] used in calculating cellSize, can be miles, or kilometers
+ * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}
* @returns {FeatureCollection} grid of points
*
* @example
diff --git a/packages/turf-isolines/package.json b/packages/turf-isolines/package.json
index a1c266498..60920c2c8 100644
--- a/packages/turf-isolines/package.json
+++ b/packages/turf-isolines/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/isolines",
- "version": "7.0.0",
- "description": "turf isolines module",
+ "version": "7.2.0",
+ "description": "Generate contour lines from a grid of data.",
"author": "Turf Authors",
"contributors": [
"Stefano Borghi <@stebogit>"
@@ -57,29 +57,29 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/envelope": "workspace:^",
- "@turf/point-grid": "workspace:^",
- "@turf/random": "workspace:^",
- "@turf/rhumb-destination": "workspace:^",
- "@turf/truncate": "workspace:^",
+ "@turf/envelope": "workspace:*",
+ "@turf/point-grid": "workspace:*",
+ "@turf/random": "workspace:*",
+ "@turf/rhumb-destination": "workspace:*",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/bbox": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/bbox": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
"marchingsquares": "^1.3.3",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-kinks/index.ts b/packages/turf-kinks/index.ts
index 331068832..88bae8dcf 100644
--- a/packages/turf-kinks/index.ts
+++ b/packages/turf-kinks/index.ts
@@ -14,7 +14,7 @@ import { point } from "@turf/helpers";
* {@link MultiPolygon|multi-polygon} or {@link Polygon|polygon} and
* returns {@link Point|points} at all self-intersections.
*
- * @name kinks
+ * @function
* @param {Feature} featureIn input feature
* @returns {FeatureCollection} self-intersections
* @example
diff --git a/packages/turf-kinks/package.json b/packages/turf-kinks/package.json
index 33c573846..76edb9219 100644
--- a/packages/turf-kinks/package.json
+++ b/packages/turf-kinks/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/kinks",
- "version": "7.0.0",
- "description": "turf kinks module",
+ "version": "7.2.0",
+ "description": "Takes a GeoJSON feature and returns points at all self-intersections.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -51,21 +51,21 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/meta": "workspace:^",
+ "@turf/meta": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-length/README.md b/packages/turf-length/README.md
index 6a280be53..2f0b03e45 100644
--- a/packages/turf-length/README.md
+++ b/packages/turf-length/README.md
@@ -11,7 +11,7 @@ Takes a [GeoJSON][1] and measures its length in the specified units, [(Multi)Poi
* `geojson` **[Feature][3]<([LineString][4] | [MultiLineString][5])>** GeoJSON to measure
* `options` **[Object][6]** Optional parameters (optional, default `{}`)
- * `options.units` **[string][7]** can be degrees, radians, miles, or kilometers (optional, default `kilometers`)
+ * `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `kilometers`)
### Examples
@@ -38,7 +38,7 @@ Returns **[number][8]** length of GeoJSON
[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[7]: https://turfjs.org/docs/api/types/Units
[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
diff --git a/packages/turf-length/index.ts b/packages/turf-length/index.ts
index 989013c76..4b30cf31c 100644
--- a/packages/turf-length/index.ts
+++ b/packages/turf-length/index.ts
@@ -6,10 +6,10 @@ import { segmentReduce } from "@turf/meta";
/**
* Takes a {@link GeoJSON} and measures its length in the specified units, {@link (Multi)Point}'s distance are ignored.
*
- * @name length
+ * @function
* @param {Feature} geojson GeoJSON to measure
* @param {Object} [options={}] Optional parameters
- * @param {string} [options.units=kilometers] can be degrees, radians, miles, or kilometers
+ * @param {Units} [options.units=kilometers] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.
* @returns {number} length of GeoJSON
* @example
* var line = turf.lineString([[115, -32], [131, -22], [143, -25], [150, -34]]);
diff --git a/packages/turf-length/package.json b/packages/turf-length/package.json
index 718fe5ea6..5765d5e37 100644
--- a/packages/turf-length/package.json
+++ b/packages/turf-length/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/length",
- "version": "7.0.0",
- "description": "turf length module",
+ "version": "7.2.0",
+ "description": " Calculates the length of a line, perfect for paths or routes.",
"author": "Turf Authors",
"contributors": [
"Denis Carriere <@DenisCarriere>",
@@ -58,21 +58,21 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/distance": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/distance": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-arc/README.md b/packages/turf-line-arc/README.md
index 0a8327926..97609db47 100644
--- a/packages/turf-line-arc/README.md
+++ b/packages/turf-line-arc/README.md
@@ -16,7 +16,7 @@ Creates a circular arc, of a circle of the given radius and center point, betwee
* `options` **[Object][3]** Optional parameters (optional, default `{}`)
* `options.steps` **[number][2]** number of steps (straight segments) that will constitute the arc (optional, default `64`)
- * `options.units` **[string][4]** miles, kilometers, degrees, or radians (optional, default `'kilometers'`)
+ * `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`)
### Examples
@@ -40,7 +40,7 @@ Returns **[Feature][5]<[LineString][6]>** line arc
[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[4]: https://turfjs.org/docs/api/types/Units
[5]: https://tools.ietf.org/html/rfc7946#section-3.2
diff --git a/packages/turf-line-arc/index.ts b/packages/turf-line-arc/index.ts
index 078b5850e..efc7c03c4 100644
--- a/packages/turf-line-arc/index.ts
+++ b/packages/turf-line-arc/index.ts
@@ -7,14 +7,14 @@ import { Coord, lineString, Units } from "@turf/helpers";
* Creates a circular arc, of a circle of the given radius and center point, between bearing1 and bearing2;
* 0 bearing is North of center point, positive clockwise.
*
- * @name lineArc
+ * @function
* @param {Coord} center center point
* @param {number} radius radius of the circle
* @param {number} bearing1 angle, in decimal degrees, of the first radius of the arc
* @param {number} bearing2 angle, in decimal degrees, of the second radius of the arc
* @param {Object} [options={}] Optional parameters
* @param {number} [options.steps=64] number of steps (straight segments) that will constitute the arc
- * @param {string} [options.units='kilometers'] miles, kilometers, degrees, or radians
+ * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.
* @returns {Feature} line arc
* @example
* var center = turf.point([-75, 40]);
diff --git a/packages/turf-line-arc/package.json b/packages/turf-line-arc/package.json
index 901757d57..4cd34680a 100644
--- a/packages/turf-line-arc/package.json
+++ b/packages/turf-line-arc/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-arc",
- "version": "7.0.0",
- "description": "turf line-arc module",
+ "version": "7.2.0",
+ "description": "Creates a circular arc, of a circle of the given radius and center point, between two bearings.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -50,23 +50,23 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/circle": "workspace:^",
- "@turf/destination": "workspace:^",
- "@turf/helpers": "workspace:^",
+ "@turf/circle": "workspace:*",
+ "@turf/destination": "workspace:*",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-chunk/README.md b/packages/turf-line-chunk/README.md
index ef0b74797..d422c38f2 100644
--- a/packages/turf-line-chunk/README.md
+++ b/packages/turf-line-chunk/README.md
@@ -13,7 +13,7 @@ If the line is shorter than the segment length then the original line is returne
* `segmentLength` **[number][6]** how long to make each segment
* `options` **[Object][7]** Optional parameters (optional, default `{}`)
- * `options.units` **[string][8]** units can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`)
+ * `options.units` **Units** Supports all valid Turf [Units][8] (optional, default `'kilometers'`)
* `options.reverse` **[boolean][9]** reverses coordinates to start the first chunked segment at the end (optional, default `false`)
### Examples
@@ -43,7 +43,7 @@ Returns **[FeatureCollection][2]<[LineString][1]>** collection of line segments
[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[8]: https://turfjs.org/docs/api/types/Units
[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
diff --git a/packages/turf-line-chunk/index.js b/packages/turf-line-chunk/index.js
index d8f7e1bdb..28074c5f1 100644
--- a/packages/turf-line-chunk/index.js
+++ b/packages/turf-line-chunk/index.js
@@ -7,11 +7,11 @@ import { featureCollection, isObject } from "@turf/helpers";
* Divides a {@link LineString} into chunks of a specified length.
* If the line is shorter than the segment length then the original line is returned.
*
- * @name lineChunk
+ * @function
* @param {FeatureCollection|Geometry|Feature} geojson the lines to split
* @param {number} segmentLength how long to make each segment
* @param {Object} [options={}] Optional parameters
- * @param {string} [options.units='kilometers'] units can be degrees, radians, miles, or kilometers
+ * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}
* @param {boolean} [options.reverse=false] reverses coordinates to start the first chunked segment at the end
* @returns {FeatureCollection} collection of line segments
* @example
@@ -56,7 +56,7 @@ function lineChunk(geojson, segmentLength, options) {
* @private
* @param {Feature} line GeoJSON LineString
* @param {number} segmentLength how long to make each segment
- * @param {string}[units='kilometers'] units can be degrees, radians, miles, or kilometers
+ * @param {Units}[units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}
* @param {Function} callback iterate over sliced line segments
* @returns {void}
*/
diff --git a/packages/turf-line-chunk/package.json b/packages/turf-line-chunk/package.json
index 6e5c518fa..0b50c65f2 100644
--- a/packages/turf-line-chunk/package.json
+++ b/packages/turf-line-chunk/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-chunk",
- "version": "7.0.0",
- "description": "turf line-chunk module",
+ "version": "7.2.0",
+ "description": "Divides a LineString into chunks of a specified length.",
"author": "Turf Authors",
"contributors": [
"Tim Channell <@tcql>",
@@ -59,22 +59,22 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/length": "workspace:^",
- "@turf/line-slice-along": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/length": "workspace:*",
+ "@turf/line-slice-along": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
diff --git a/packages/turf-line-intersect/README.md b/packages/turf-line-intersect/README.md
index 2c9881046..6e389836c 100644
--- a/packages/turf-line-intersect/README.md
+++ b/packages/turf-line-intersect/README.md
@@ -13,7 +13,7 @@ Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).
* `options` **[Object][2]** Optional parameters (optional, default `{}`)
* `options.removeDuplicates` **[boolean][3]** remove duplicate intersections (optional, default `true`)
- * `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `false`)
+ * `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `true`)
### Examples
diff --git a/packages/turf-line-intersect/index.ts b/packages/turf-line-intersect/index.ts
index e4c83d30e..7e2977896 100644
--- a/packages/turf-line-intersect/index.ts
+++ b/packages/turf-line-intersect/index.ts
@@ -14,12 +14,12 @@ import { sweeplineIntersections as findIntersections } from "./lib/sweepline-int
/**
* Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).
*
- * @name lineIntersect
+ * @function
* @param {GeoJSON} line1 any LineString or Polygon
* @param {GeoJSON} line2 any LineString or Polygon
* @param {Object} [options={}] Optional parameters
* @param {boolean} [options.removeDuplicates=true] remove duplicate intersections
- * @param {boolean} [options.ignoreSelfIntersections=false] ignores self-intersections on input features
+ * @param {boolean} [options.ignoreSelfIntersections=true] ignores self-intersections on input features
* @returns {FeatureCollection} point(s) that intersect both
* @example
* var line1 = turf.lineString([[126, -11], [129, -21]]);
@@ -40,7 +40,7 @@ function lineIntersect<
ignoreSelfIntersections?: boolean;
} = {}
): FeatureCollection {
- const { removeDuplicates = true, ignoreSelfIntersections = false } = options;
+ const { removeDuplicates = true, ignoreSelfIntersections = true } = options;
let features: Feature[] = [];
if (line1.type === "FeatureCollection")
features = features.concat(line1.features);
diff --git a/packages/turf-line-intersect/package.json b/packages/turf-line-intersect/package.json
index 15089f312..c3e4a423d 100644
--- a/packages/turf-line-intersect/package.json
+++ b/packages/turf-line-intersect/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-intersect",
- "version": "7.0.0",
- "description": "turf line-intersect module",
+ "version": "7.2.0",
+ "description": "Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).",
"author": "Turf Authors",
"contributors": [
"Denis Carriere <@DenisCarriere>",
@@ -56,22 +56,22 @@
"test:tape": "tsx test.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
"sweepline-intersections": "^1.5.0",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-intersect/test.ts b/packages/turf-line-intersect/test.ts
index 40d45e91d..c61092572 100644
--- a/packages/turf-line-intersect/test.ts
+++ b/packages/turf-line-intersect/test.ts
@@ -4,13 +4,9 @@ import path from "path";
import { loadJsonFileSync } from "load-json-file";
import { writeJsonFileSync } from "write-json-file";
import { truncate } from "@turf/truncate";
-import {
- featureCollection,
- // geometryCollection,
- lineString,
- polygon,
-} from "@turf/helpers";
+import { featureCollection, lineString, polygon } from "@turf/helpers";
import { lineIntersect } from "./index.js";
+import { Feature, LineString, Point } from "geojson";
const directories = {
in: path.join("test", "in") + path.sep,
@@ -21,14 +17,18 @@ const fixtures = fs.readdirSync(directories.in).map((filename) => {
return {
filename,
name: path.parse(filename).name,
- geojson: loadJsonFileSync(directories.in + filename),
+ geojson: loadJsonFileSync(
+ directories.in + filename
+ ) as GeoJSON.FeatureCollection,
};
});
test("turf-line-intersect", (t) => {
for (const { filename, name, geojson } of fixtures) {
const [line1, line2] = geojson.features;
- const results = truncate(lineIntersect(line1, line2));
+ const results: GeoJSON.FeatureCollection = truncate(
+ lineIntersect(line1, line2)
+ );
results.features.push(line1);
results.features.push(line2);
@@ -132,3 +132,52 @@ test("turf-line-intersect - polygon support #586", (t) => {
t.equal(results.features.length, 1, "should return single point");
t.end();
});
+
+/**
+ * ensures that the self intersection param behaves as expected -
+ * since it cannot be verified in the fixture format.
+ */
+test("turf-line-intersect - self intersection behavior", (t) => {
+ const line1: Feature = {
+ type: "Feature",
+ properties: {},
+ geometry: {
+ type: "LineString",
+ coordinates: [
+ [0, 0],
+ [0, 2],
+ [2, 1],
+ [-1, 1],
+ ],
+ },
+ };
+ const line2: Feature = {
+ type: "Feature",
+ properties: {},
+ geometry: {
+ type: "LineString",
+ coordinates: [
+ [3, 3],
+ [4, 4],
+ [5, 5],
+ ],
+ },
+ };
+
+ const ignored = lineIntersect(line1, line2);
+ t.equal(
+ ignored.features.length,
+ 0,
+ "self intersections should be ignored by default"
+ );
+
+ const included = lineIntersect(line1, line2, {
+ ignoreSelfIntersections: false,
+ });
+ t.equal(
+ included.features.length,
+ 1,
+ "self intersections should be included when ignoreSelfIntersections set to false"
+ );
+ t.end();
+});
diff --git a/packages/turf-line-intersect/test/in/self-intersecting-line.geojson b/packages/turf-line-intersect/test/in/self-intersecting-line.geojson
new file mode 100644
index 000000000..ec5b6ebf7
--- /dev/null
+++ b/packages/turf-line-intersect/test/in/self-intersecting-line.geojson
@@ -0,0 +1,30 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0, 0],
+ [0, 2],
+ [2, 1],
+ [-1, 1]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3, 3],
+ [4, 4],
+ [5, 5]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson b/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson
new file mode 100644
index 000000000..9f08036d8
--- /dev/null
+++ b/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson
@@ -0,0 +1,36 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [0, 0],
+ [1, 2],
+ [0, 4]
+ ],
+ [
+ [1, 0],
+ [0, 2],
+ [1, 4]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3, 3],
+ [4, 4],
+ [5, 5]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson b/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson
new file mode 100644
index 000000000..f907df2dc
--- /dev/null
+++ b/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson
@@ -0,0 +1,52 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "fill": "#ed333b",
+ "fill-opacity": 0.5
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [
+ [2.8208987964653716, 5.206515064293427],
+ [2.8208987964653716, -4.530167455797994],
+ [6.383916833323553, -4.530167455797994],
+ [6.383916833323553, 5.206515064293427],
+ [2.8208987964653716, 5.206515064293427]
+ ]
+ ],
+ [
+ [
+ [-0.33343506038161763, 3.67541603033537],
+ [-0.33343506038161763, 2.1793088174136273],
+ [8.775841349855597, 2.1793088174136273],
+ [8.775841349855597, 3.67541603033537],
+ [-0.33343506038161763, 3.67541603033537]
+ ]
+ ]
+ ],
+ "type": "MultiPolygon"
+ },
+ "id": 0
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ [-7.951422534380413, 5.231149187754099],
+ [-7.951422534380413, -4.552832252613101],
+ [-5.701165954657256, -4.552832252613101],
+ [-5.701165954657256, 5.231149187754099],
+ [-7.951422534380413, 5.231149187754099]
+ ]
+ ],
+ "type": "Polygon"
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson b/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson
new file mode 100644
index 000000000..241a878a9
--- /dev/null
+++ b/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson
@@ -0,0 +1,44 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ [-0.8680870854922205, 3.0368343508535673],
+ [-1.321147431010786, 5.333329344976903],
+ [1.0099462525165848, 5.611566335081363],
+ [0.47439299724965167, -1.9282285399474688],
+ [3.2162894164922875, -1.8166964568157766],
+ [2.707220996335252, 7.192842763774053],
+ [-3.8645185945755713, 6.519248925309753],
+ [-3.8571038955967083, 0.3483632770754781],
+ [-0.5093053180867742, 0.39824548653076874],
+ [4.4119165583018685, 0.21046777461485533],
+ [3.9804563423212755, 3.7937082620644844],
+ [-0.8680870854922205, 3.0368343508535673]
+ ]
+ ],
+ "type": "Polygon"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ [-7.4564971746842446, 6.278543929857676],
+ [-13.631981273628753, 6.323585458965155],
+ [-12.43687692686214, -2.589094309688946],
+ [-6.376915352576532, -3.0767722870515115],
+ [-7.4564971746842446, 6.278543929857676]
+ ]
+ ],
+ "type": "Polygon"
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-intersect/test/out/self-intersecting-line.geojson b/packages/turf-line-intersect/test/out/self-intersecting-line.geojson
new file mode 100644
index 000000000..ec5b6ebf7
--- /dev/null
+++ b/packages/turf-line-intersect/test/out/self-intersecting-line.geojson
@@ -0,0 +1,30 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0, 0],
+ [0, 2],
+ [2, 1],
+ [-1, 1]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3, 3],
+ [4, 4],
+ [5, 5]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson b/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson
new file mode 100644
index 000000000..9f08036d8
--- /dev/null
+++ b/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson
@@ -0,0 +1,36 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [0, 0],
+ [1, 2],
+ [0, 4]
+ ],
+ [
+ [1, 0],
+ [0, 2],
+ [1, 4]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3, 3],
+ [4, 4],
+ [5, 5]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson b/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson
new file mode 100644
index 000000000..f907df2dc
--- /dev/null
+++ b/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson
@@ -0,0 +1,52 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "fill": "#ed333b",
+ "fill-opacity": 0.5
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [
+ [2.8208987964653716, 5.206515064293427],
+ [2.8208987964653716, -4.530167455797994],
+ [6.383916833323553, -4.530167455797994],
+ [6.383916833323553, 5.206515064293427],
+ [2.8208987964653716, 5.206515064293427]
+ ]
+ ],
+ [
+ [
+ [-0.33343506038161763, 3.67541603033537],
+ [-0.33343506038161763, 2.1793088174136273],
+ [8.775841349855597, 2.1793088174136273],
+ [8.775841349855597, 3.67541603033537],
+ [-0.33343506038161763, 3.67541603033537]
+ ]
+ ]
+ ],
+ "type": "MultiPolygon"
+ },
+ "id": 0
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ [-7.951422534380413, 5.231149187754099],
+ [-7.951422534380413, -4.552832252613101],
+ [-5.701165954657256, -4.552832252613101],
+ [-5.701165954657256, 5.231149187754099],
+ [-7.951422534380413, 5.231149187754099]
+ ]
+ ],
+ "type": "Polygon"
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson b/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson
new file mode 100644
index 000000000..241a878a9
--- /dev/null
+++ b/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson
@@ -0,0 +1,44 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ [-0.8680870854922205, 3.0368343508535673],
+ [-1.321147431010786, 5.333329344976903],
+ [1.0099462525165848, 5.611566335081363],
+ [0.47439299724965167, -1.9282285399474688],
+ [3.2162894164922875, -1.8166964568157766],
+ [2.707220996335252, 7.192842763774053],
+ [-3.8645185945755713, 6.519248925309753],
+ [-3.8571038955967083, 0.3483632770754781],
+ [-0.5093053180867742, 0.39824548653076874],
+ [4.4119165583018685, 0.21046777461485533],
+ [3.9804563423212755, 3.7937082620644844],
+ [-0.8680870854922205, 3.0368343508535673]
+ ]
+ ],
+ "type": "Polygon"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ [-7.4564971746842446, 6.278543929857676],
+ [-13.631981273628753, 6.323585458965155],
+ [-12.43687692686214, -2.589094309688946],
+ [-6.376915352576532, -3.0767722870515115],
+ [-7.4564971746842446, 6.278543929857676]
+ ]
+ ],
+ "type": "Polygon"
+ }
+ }
+ ]
+}
diff --git a/packages/turf-line-offset/README.md b/packages/turf-line-offset/README.md
index 3301253d7..ecdc23e7e 100644
--- a/packages/turf-line-offset/README.md
+++ b/packages/turf-line-offset/README.md
@@ -12,7 +12,7 @@ Takes a [line][1] and returns a [line][1] at offset by the specified distance.
* `distance` **[number][5]** distance to offset the line (can be of negative value)
* `options` **[Object][6]** Optional parameters (optional, default `{}`)
- * `options.units` **[string][7]** can be degrees, radians, miles, kilometers, inches, yards, meters (optional, default `'kilometers'`)
+ * `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `'kilometers'`)
### Examples
@@ -40,7 +40,7 @@ Returns **[Feature][3]<([LineString][1] | [MultiLineString][4])>** Line offset f
[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[7]: https://turfjs.org/docs/api/types/Units
diff --git a/packages/turf-line-offset/index.js b/packages/turf-line-offset/index.js
index 1c936c4b2..36c867173 100644
--- a/packages/turf-line-offset/index.js
+++ b/packages/turf-line-offset/index.js
@@ -11,11 +11,11 @@ import { intersection } from "./lib/intersection.js";
/**
* Takes a {@link LineString|line} and returns a {@link LineString|line} at offset by the specified distance.
*
- * @name lineOffset
+ * @function
* @param {Geometry|Feature} geojson input GeoJSON
* @param {number} distance distance to offset the line (can be of negative value)
* @param {Object} [options={}] Optional parameters
- * @param {string} [options.units='kilometers'] can be degrees, radians, miles, kilometers, inches, yards, meters
+ * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.
* @returns {Feature} Line offset from the input line
* @example
* var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]], { "stroke": "#F00" });
diff --git a/packages/turf-line-offset/package.json b/packages/turf-line-offset/package.json
index 33831dd6f..4e5a91f4e 100644
--- a/packages/turf-line-offset/package.json
+++ b/packages/turf-line-offset/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-offset",
- "version": "7.0.0",
- "description": "turf line-offset module",
+ "version": "7.2.0",
+ "description": "Takes a line and returns a line at offset by the specified distance.",
"author": "Turf Authors",
"contributors": [
"David Wee <@rook2pawn>",
@@ -57,21 +57,21 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
diff --git a/packages/turf-line-overlap/index.ts b/packages/turf-line-overlap/index.ts
index 8027d2747..74d477a81 100644
--- a/packages/turf-line-overlap/index.ts
+++ b/packages/turf-line-overlap/index.ts
@@ -19,7 +19,7 @@ import equal from "fast-deep-equal";
/**
* Takes any LineString or Polygon and returns the overlapping lines between both features.
*
- * @name lineOverlap
+ * @function
* @param {Geometry|Feature} line1 any LineString or Polygon
* @param {Geometry|Feature} line2 any LineString or Polygon
* @param {Object} [options={}] Optional parameters
diff --git a/packages/turf-line-overlap/package.json b/packages/turf-line-overlap/package.json
index a34e01996..1ff9a1fcc 100644
--- a/packages/turf-line-overlap/package.json
+++ b/packages/turf-line-overlap/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-overlap",
- "version": "7.0.0",
- "description": "turf line-overlap module",
+ "version": "7.2.0",
+ "description": "Takes any LineString or Polygon and returns the overlapping lines between both features.",
"author": "Turf Authors",
"contributors": [
"Denis Carriere <@DenisCarriere>"
@@ -57,26 +57,26 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/boolean-point-on-line": "workspace:^",
- "@turf/geojson-rbush": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/line-segment": "workspace:^",
- "@turf/meta": "workspace:^",
- "@turf/nearest-point-on-line": "workspace:^",
+ "@turf/boolean-point-on-line": "workspace:*",
+ "@turf/geojson-rbush": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/line-segment": "workspace:*",
+ "@turf/meta": "workspace:*",
+ "@turf/nearest-point-on-line": "workspace:*",
"@types/geojson": "^7946.0.10",
"fast-deep-equal": "^3.1.3",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-segment/index.ts b/packages/turf-line-segment/index.ts
index 5c518277f..10f795f47 100644
--- a/packages/turf-line-segment/index.ts
+++ b/packages/turf-line-segment/index.ts
@@ -15,7 +15,7 @@ import { flattenEach } from "@turf/meta";
* Creates a {@link FeatureCollection} of 2-vertex {@link LineString} segments from a
* {@link LineString|(Multi)LineString} or {@link Polygon|(Multi)Polygon}.
*
- * @name lineSegment
+ * @function
* @param {GeoJSON} geojson GeoJSON Polygon or LineString
* @returns {FeatureCollection} 2-vertex line segments
* @example
diff --git a/packages/turf-line-segment/package.json b/packages/turf-line-segment/package.json
index c1d4ec4a3..3498b7cb9 100644
--- a/packages/turf-line-segment/package.json
+++ b/packages/turf-line-segment/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-segment",
- "version": "7.0.0",
- "description": "turf line-segment module",
+ "version": "7.2.0",
+ "description": "Creates line segments from a GeoJSON feature.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -51,21 +51,21 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-slice-along/README.md b/packages/turf-line-slice-along/README.md
index 4fddeb597..459e19f4d 100644
--- a/packages/turf-line-slice-along/README.md
+++ b/packages/turf-line-slice-along/README.md
@@ -17,7 +17,7 @@ This can be useful for extracting only the part of a route between two distances
* `stopDist` **[number][4]** distance along the line to ending point
* `options` **[Object][5]** Optional parameters (optional, default `{}`)
- * `options.units` **[string][6]** can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`)
+ * `options.units` **Units** Supports all valid Turf [Units][6] (optional, default `'kilometers'`)
### Examples
@@ -43,7 +43,7 @@ Returns **[Feature][3]<[LineString][1]>** sliced line
[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[6]: https://turfjs.org/docs/api/types/Units
diff --git a/packages/turf-line-slice-along/index.js b/packages/turf-line-slice-along/index.js
index 9d7c11699..f5dc885b7 100644
--- a/packages/turf-line-slice-along/index.js
+++ b/packages/turf-line-slice-along/index.js
@@ -10,12 +10,12 @@ import { lineString, isObject } from "@turf/helpers";
*
* This can be useful for extracting only the part of a route between two distances.
*
- * @name lineSliceAlong
+ * @function
* @param {Feature|LineString} line input line
* @param {number} startDist distance along the line to starting point
* @param {number} stopDist distance along the line to ending point
* @param {Object} [options={}] Optional parameters
- * @param {string} [options.units='kilometers'] can be degrees, radians, miles, or kilometers
+ * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}
* @returns {Feature} sliced line
* @example
* var line = turf.lineString([[7, 45], [9, 45], [14, 40], [14, 41]]);
diff --git a/packages/turf-line-slice-along/package.json b/packages/turf-line-slice-along/package.json
index 702c22fcf..2a5028b52 100644
--- a/packages/turf-line-slice-along/package.json
+++ b/packages/turf-line-slice-along/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-slice-along",
- "version": "7.0.0",
- "description": "turf line-slice-along module",
+ "version": "7.2.0",
+ "description": "Useful for extracting only the part of a route between two distances.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -50,22 +50,22 @@
"test:tape": "tsx test.ts"
},
"devDependencies": {
- "@turf/along": "workspace:^",
- "@turf/length": "workspace:^",
+ "@turf/along": "workspace:*",
+ "@turf/length": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4"
},
"dependencies": {
- "@turf/bearing": "workspace:^",
- "@turf/destination": "workspace:^",
- "@turf/distance": "workspace:^",
- "@turf/helpers": "workspace:^",
+ "@turf/bearing": "workspace:*",
+ "@turf/destination": "workspace:*",
+ "@turf/distance": "workspace:*",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
diff --git a/packages/turf-line-slice/index.js b/packages/turf-line-slice/index.js
index dc66da414..b4fdbc7b7 100644
--- a/packages/turf-line-slice/index.js
+++ b/packages/turf-line-slice/index.js
@@ -9,7 +9,7 @@ import { nearestPointOnLine } from "@turf/nearest-point-on-line";
*
* This can be useful for extracting only the part of a route between waypoints.
*
- * @name lineSlice
+ * @function
* @param {Coord} startPt starting point
* @param {Coord} stopPt stopping point
* @param {Feature|LineString} line line to slice
diff --git a/packages/turf-line-slice/package.json b/packages/turf-line-slice/package.json
index a6492f44c..46c621a5a 100644
--- a/packages/turf-line-slice/package.json
+++ b/packages/turf-line-slice/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-slice",
- "version": "7.0.0",
- "description": "turf line-slice module",
+ "version": "7.2.0",
+ "description": "Useful for extracting only the part of a route between waypoints.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -54,21 +54,21 @@
"test:tape": "tsx test.ts"
},
"devDependencies": {
- "@turf/truncate": "workspace:^",
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/nearest-point-on-line": "workspace:^",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/nearest-point-on-line": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
diff --git a/packages/turf-line-slice/test.ts b/packages/turf-line-slice/test.ts
index 026b30238..b52db0554 100644
--- a/packages/turf-line-slice/test.ts
+++ b/packages/turf-line-slice/test.ts
@@ -5,7 +5,7 @@ import { fileURLToPath } from "url";
import { loadJsonFileSync } from "load-json-file";
import { writeJsonFileSync } from "write-json-file";
import { truncate } from "@turf/truncate";
-import { featureCollection } from "@turf/helpers";
+import { featureCollection, point, lineString } from "@turf/helpers";
import { lineSlice } from "./index.js";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
@@ -38,3 +38,24 @@ test("turf-line-slice", (t) => {
}
t.end();
});
+
+test("turf-nearest-point-on-line -- issue 2023", (t) => {
+ const ptStart = point([3.69140625, 51.72702815704774]);
+ const ptEnd = point([0.31936718356317106, 47.93913163509963]);
+ const line = lineString([
+ [3.69140625, 51.72702815704774],
+ [-5.3173828125, 41.60722821271717],
+ ]);
+
+ const slice = lineSlice(ptStart, ptEnd, line);
+
+ t.deepEqual(
+ truncate(slice, { precision: 8 }).geometry.coordinates,
+ [
+ [3.69140625, 51.72702816],
+ [-0.03079923, 48.08596086],
+ ],
+ "slice should be [[3.69140625, 51.72702816], [-0.03079923, 48.08596086]]"
+ );
+ t.end();
+});
diff --git a/packages/turf-line-slice/test/out/line1.geojson b/packages/turf-line-slice/test/out/line1.geojson
index 58dc12f1b..fc79a112c 100644
--- a/packages/turf-line-slice/test/out/line1.geojson
+++ b/packages/turf-line-slice/test/out/line1.geojson
@@ -38,9 +38,9 @@
"geometry": {
"type": "LineString",
"coordinates": [
- [-97.835729, 22.247393],
+ [-97.835747, 22.247595],
[-97.820892, 22.17596],
- [-97.738467, 22.051207]
+ [-97.738477, 22.051413]
]
}
}
diff --git a/packages/turf-line-slice/test/out/line2.geojson b/packages/turf-line-slice/test/out/line2.geojson
index ff3228795..c5215cde1 100644
--- a/packages/turf-line-slice/test/out/line2.geojson
+++ b/packages/turf-line-slice/test/out/line2.geojson
@@ -37,8 +37,8 @@
"geometry": {
"type": "LineString",
"coordinates": [
- [0.049987, 0.049987],
- [0.849858, 0.849858]
+ [0.05, 0.050008],
+ [0.849981, 0.850017]
]
}
}
diff --git a/packages/turf-line-slice/test/out/route2.geojson b/packages/turf-line-slice/test/out/route2.geojson
index a389e0af6..d86ab51f3 100644
--- a/packages/turf-line-slice/test/out/route2.geojson
+++ b/packages/turf-line-slice/test/out/route2.geojson
@@ -3796,7 +3796,7 @@
"geometry": {
"type": "LineString",
"coordinates": [
- [-111.895792, 48.877416],
+ [-111.895843, 48.877468],
[-111.878176, 48.860393],
[-111.867242, 48.849753],
[-111.866486, 48.849013],
diff --git a/packages/turf-line-split/index.js b/packages/turf-line-split/index.js
index 81d33017b..cfbdfb584 100644
--- a/packages/turf-line-split/index.js
+++ b/packages/turf-line-split/index.js
@@ -12,7 +12,7 @@ import { lineString, featureCollection } from "@turf/helpers";
/**
* Split a LineString by another GeoJSON Feature.
*
- * @name lineSplit
+ * @function
* @param {Feature} line LineString Feature to split
* @param {Feature} splitter Feature used to split line
* @returns {FeatureCollection} Split LineStrings
diff --git a/packages/turf-line-split/package.json b/packages/turf-line-split/package.json
index 36775e723..3260981eb 100644
--- a/packages/turf-line-split/package.json
+++ b/packages/turf-line-split/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-split",
- "version": "7.0.0",
- "description": "turf line-split module",
+ "version": "7.2.0",
+ "description": "Split a LineString by another GeoJSON Feature.",
"author": "Turf Authors",
"contributors": [
"Denis Carriere <@DenisCarriere>"
@@ -56,26 +56,26 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/bbox": "workspace:^",
- "@turf/geojson-rbush": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
- "@turf/line-intersect": "workspace:^",
- "@turf/line-segment": "workspace:^",
- "@turf/meta": "workspace:^",
- "@turf/nearest-point-on-line": "workspace:^",
- "@turf/square": "workspace:^",
- "@turf/truncate": "workspace:^",
+ "@turf/bbox": "workspace:*",
+ "@turf/geojson-rbush": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
+ "@turf/line-intersect": "workspace:*",
+ "@turf/line-segment": "workspace:*",
+ "@turf/meta": "workspace:*",
+ "@turf/nearest-point-on-line": "workspace:*",
+ "@turf/square": "workspace:*",
+ "@turf/truncate": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
diff --git a/packages/turf-line-to-polygon/index.ts b/packages/turf-line-to-polygon/index.ts
index 78fb03141..cdf859cf1 100644
--- a/packages/turf-line-to-polygon/index.ts
+++ b/packages/turf-line-to-polygon/index.ts
@@ -15,7 +15,7 @@ import { clone } from "@turf/clone";
/**
* Converts (Multi)LineString(s) to Polygon(s).
*
- * @name lineToPolygon
+ * @function
* @param {FeatureCollection|Feature} lines Features to convert
* @param {Object} [options={}] Optional parameters
* @param {Object} [options.properties={}] translates GeoJSON properties to Feature
diff --git a/packages/turf-line-to-polygon/package.json b/packages/turf-line-to-polygon/package.json
index 46d08e0ec..07992905e 100644
--- a/packages/turf-line-to-polygon/package.json
+++ b/packages/turf-line-to-polygon/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/line-to-polygon",
- "version": "7.0.0",
- "description": "turf line-to-polygon module",
+ "version": "7.2.0",
+ "description": "Converts line(s) to polygon(s).",
"author": "Turf Authors",
"contributors": [
"Denis Carriere <@DenisCarriere>"
@@ -57,22 +57,22 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/bbox": "workspace:^",
- "@turf/clone": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/invariant": "workspace:^",
+ "@turf/bbox": "workspace:*",
+ "@turf/clone": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-mask/index.ts b/packages/turf-mask/index.ts
index 43abb6304..7c021099e 100644
--- a/packages/turf-mask/index.ts
+++ b/packages/turf-mask/index.ts
@@ -6,14 +6,14 @@ import {
MultiPolygon,
} from "geojson";
import { polygon as createPolygon, multiPolygon } from "@turf/helpers";
-import polygonClipping, { Geom } from "polygon-clipping";
+import * as polyclip from "polyclip-ts";
import { clone } from "@turf/clone";
/**
* Takes polygons or multipolygons and an optional mask, and returns an exterior
* ring polygon with holes.
*
- * @name mask
+ * @function
* @param {Polygon|MultiPolygon|Feature|FeatureCollection} polygon GeoJSON polygon used as interior rings or holes
* @param {Polygon|Feature} [mask] GeoJSON polygon used as the exterior ring (if undefined, the world extent is used)
* @param {Object} [options={}] Optional parameters
@@ -51,14 +51,14 @@ function mask(
// Need to cast below as Position[][] isn't quite as strict as Geom, even
// though they should be equivalent.
polygonOuters = createGeomFromPolygonClippingOutput(
- polygonClipping.union(polygon.geometry.coordinates as Geom)
+ polyclip.union(polygon.geometry.coordinates as polyclip.Geom)
);
} else {
// Geometry
// Need to cast below as Position[][] isn't quite as strict as Geom, even
// though they should be equivalent.
polygonOuters = createGeomFromPolygonClippingOutput(
- polygonClipping.union(polygon.coordinates as Geom)
+ polyclip.union(polygon.coordinates as polyclip.Geom)
);
}
@@ -78,15 +78,15 @@ function unionFc(fc: FeatureCollection) {
/* eslint-disable prefer-spread */
const unioned =
fc.features.length === 2
- ? polygonClipping.union(
- fc.features[0].geometry.coordinates as Geom,
- fc.features[1].geometry.coordinates as Geom
+ ? polyclip.union(
+ fc.features[0].geometry.coordinates as polyclip.Geom,
+ fc.features[1].geometry.coordinates as polyclip.Geom
)
- : polygonClipping.union.apply(
- polygonClipping,
+ : polyclip.union.apply(
+ polyclip,
fc.features.map(function (f) {
return f.geometry.coordinates;
- }) as [Geom, ...Geom[]]
+ }) as [polyclip.Geom, ...polyclip.Geom[]]
);
/* eslint-enable */
return createGeomFromPolygonClippingOutput(unioned);
diff --git a/packages/turf-mask/package.json b/packages/turf-mask/package.json
index c51057d70..0330e4c60 100644
--- a/packages/turf-mask/package.json
+++ b/packages/turf-mask/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/mask",
- "version": "7.0.0",
- "description": "turf mask module",
+ "version": "7.2.0",
+ "description": "Takes polygons or multipolygons and an optional mask, and returns an exterior ring polygon with holes.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -52,22 +52,22 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/clone": "workspace:^",
- "@turf/helpers": "workspace:^",
+ "@turf/clone": "workspace:*",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
- "polygon-clipping": "^0.15.3",
- "tslib": "^2.6.2"
+ "polyclip-ts": "^0.16.8",
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-meta/README.md b/packages/turf-meta/README.md
index 13dc60352..95dc11e47 100644
--- a/packages/turf-meta/README.md
+++ b/packages/turf-meta/README.md
@@ -16,15 +16,17 @@ Type: [Function][1]
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.
* `geometryIndex` **[number][3]** The current index of the Geometry being processed.
+Returns **void**
+
## coordEach
Iterate over coordinates in any GeoJSON object, similar to Array.forEach()
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex)
-* `excludeWrapCoord` **[boolean][7]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`)
+* `geojson` **AllGeoJSON** any GeoJSON object
+* `callback` **[coordEachCallback][4]** a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex)
+* `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`)
### Examples
@@ -66,7 +68,7 @@ Type: [Function][1]
### Parameters
-* `previousValue` **any** The accumulated value previously returned in the last invocation
+* `previousValue` **Reducer** The accumulated value previously returned in the last invocation
of the callback, or initialValue, if supplied.
* `currentCoord` **[Array][2]<[number][3]>** The current coordinate being processed.
* `coordIndex` **[number][3]** The current index of the coordinate being processed.
@@ -75,16 +77,18 @@ Type: [Function][1]
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.
* `geometryIndex` **[number][3]** The current index of the Geometry being processed.
+Returns **Reducer**
+
## coordReduce
Reduce coordinates in any GeoJSON object, similar to Array.reduce()
### Parameters
-* `geojson` **([FeatureCollection][4] | [Geometry][6] | [Feature][5])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (previousValue, currentCoord, coordIndex)
-* `initialValue` **any?** Value to use as the first argument to the first call of the callback.
-* `excludeWrapCoord` **[boolean][7]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`)
+* `geojson` **AllGeoJSON** any GeoJSON object
+* `callback` **[coordReduceCallback][6]** a method that takes (previousValue, currentCoord, coordIndex)
+* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.
+* `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`)
### Examples
@@ -105,7 +109,7 @@ turf.coordReduce(features, function (previousValue, currentCoord, coordIndex, fe
});
```
-Returns **any** The value that results from the reduction.
+Returns **Reducer** The value that results from the reduction.
## propEachCallback
@@ -115,17 +119,19 @@ Type: [Function][1]
### Parameters
-* `currentProperties` **[Object][8]** The current Properties being processed.
+* `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
+Returns **void**
+
## propEach
Iterate over properties in any GeoJSON object, similar to Array.forEach()
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (currentProperties, featureIndex)
+* `geojson` **([FeatureCollection][8] | [Feature][7])** any GeoJSON object
+* `callback` **[propEachCallback][9]** a method that takes (currentProperties, featureIndex)
### Examples
@@ -164,11 +170,13 @@ Type: [Function][1]
### Parameters
-* `previousValue` **any** The accumulated value previously returned in the last invocation
+* `previousValue` **Reducer** The accumulated value previously returned in the last invocation
of the callback, or initialValue, if supplied.
-* `currentProperties` **any** The current Properties being processed.
+* `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
+Returns **Reducer**
+
## propReduce
Reduce properties in any GeoJSON object into a single value,
@@ -177,9 +185,9 @@ the reduction, so an array of all properties is unnecessary.
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (previousValue, currentProperties, featureIndex)
-* `initialValue` **any?** Value to use as the first argument to the first call of the callback.
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON object
+* `callback` **[propReduceCallback][11]** a method that takes (previousValue, currentProperties, featureIndex)
+* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.
### Examples
@@ -197,7 +205,7 @@ turf.propReduce(features, function (previousValue, currentProperties, featureInd
});
```
-Returns **any** The value that results from the reduction.
+Returns **Reducer** The value that results from the reduction.
## featureEachCallback
@@ -207,9 +215,11 @@ Type: [Function][1]
### Parameters
-* `currentFeature` **[Feature][5]\** The current Feature being processed.
+* `currentFeature` **[Feature][7]\** The current Feature being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
+Returns **void**
+
## featureEach
Iterate over features in any GeoJSON object, similar to
@@ -217,8 +227,8 @@ Array.forEach.
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (currentFeature, featureIndex)
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object
+* `callback` **[featureEachCallback][13]** a method that takes (currentFeature, featureIndex)
### Examples
@@ -257,20 +267,22 @@ Type: [Function][1]
### Parameters
-* `previousValue` **any** The accumulated value previously returned in the last invocation
+* `previousValue` **Reducer** The accumulated value previously returned in the last invocation
of the callback, or initialValue, if supplied.
-* `currentFeature` **[Feature][5]** The current Feature being processed.
+* `currentFeature` **[Feature][7]** The current Feature being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
+Returns **Reducer**
+
## featureReduce
Reduce features in any GeoJSON object, similar to Array.reduce().
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (previousValue, currentFeature, featureIndex)
-* `initialValue` **any?** Value to use as the first argument to the first call of the callback.
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object
+* `callback` **[featureReduceCallback][14]** a method that takes (previousValue, currentFeature, featureIndex)
+* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.
### Examples
@@ -288,7 +300,7 @@ turf.featureReduce(features, function (previousValue, currentFeature, featureInd
});
```
-Returns **any** The value that results from the reduction.
+Returns **Reducer** The value that results from the reduction.
## coordAll
@@ -296,7 +308,7 @@ Get all coordinates from any GeoJSON object.
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
+* `geojson` **AllGeoJSON** any GeoJSON object
### Examples
@@ -320,11 +332,13 @@ Type: [Function][1]
### Parameters
-* `currentGeometry` **[Geometry][6]** The current Geometry being processed.
+* `currentGeometry` **[GeometryObject][10]** The current Geometry being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
-* `featureProperties` **[Object][8]** The current Feature Properties being processed.
-* `featureBBox` **[Array][2]<[number][3]>** The current Feature BBox being processed.
-* `featureId` **([number][3] | [string][9])** The current Feature Id being processed.
+* `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed.
+* `featureBBox` **[BBox][15]** The current Feature BBox being processed.
+* `featureId` **Id** The current Feature Id being processed.
+
+Returns **void**
## geomEach
@@ -332,8 +346,8 @@ Iterate over each geometry in any GeoJSON object, similar to Array.forEach()
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10] | [GeometryObject][10] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object
+* `callback` **[geomEachCallback][16]** a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
### Examples
@@ -375,13 +389,15 @@ Type: [Function][1]
### Parameters
-* `previousValue` **any** The accumulated value previously returned in the last invocation
+* `previousValue` **Reducer** The accumulated value previously returned in the last invocation
of the callback, or initialValue, if supplied.
-* `currentGeometry` **[Geometry][6]** The current Geometry being processed.
+* `currentGeometry` **[GeometryObject][10]** The current Geometry being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
-* `featureProperties` **[Object][8]** The current Feature Properties being processed.
-* `featureBBox` **[Array][2]<[number][3]>** The current Feature BBox being processed.
-* `featureId` **([number][3] | [string][9])** The current Feature Id being processed.
+* `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed.
+* `featureBBox` **[BBox][15]** The current Feature BBox being processed.
+* `featureId` **Id** The current Feature Id being processed.
+
+Returns **Reducer**
## geomReduce
@@ -389,9 +405,9 @@ Reduce geometry in any GeoJSON object, similar to Array.reduce().
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
-* `initialValue` **any?** Value to use as the first argument to the first call of the callback.
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object
+* `callback` **[geomReduceCallback][17]** a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
+* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.
### Examples
@@ -412,7 +428,7 @@ turf.geomReduce(features, function (previousValue, currentGeometry, featureIndex
});
```
-Returns **any** The value that results from the reduction.
+Returns **Reducer** The value that results from the reduction.
## flattenEachCallback
@@ -422,10 +438,12 @@ Type: [Function][1]
### Parameters
-* `currentFeature` **[Feature][5]** The current flattened feature being processed.
+* `currentFeature` **[Feature][7]** The current flattened feature being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.
+Returns **void**
+
## flattenEach
Iterate over flattened features in any GeoJSON object, similar to
@@ -433,8 +451,8 @@ Array.forEach.
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (currentFeature, featureIndex, multiFeatureIndex)
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object
+* `callback` **[flattenEachCallback][18]** a method that takes (currentFeature, featureIndex, multiFeatureIndex)
### Examples
@@ -451,6 +469,8 @@ turf.flattenEach(features, function (currentFeature, featureIndex, multiFeatureI
});
```
+Returns **void**
+
## flattenReduceCallback
Callback for flattenReduce
@@ -472,21 +492,23 @@ Type: [Function][1]
### Parameters
-* `previousValue` **any** The accumulated value previously returned in the last invocation
+* `previousValue` **Reducer** The accumulated value previously returned in the last invocation
of the callback, or initialValue, if supplied.
-* `currentFeature` **[Feature][5]** The current Feature being processed.
+* `currentFeature` **[Feature][7]** The current Feature being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.
+Returns **Reducer**
+
## flattenReduce
Reduce flattened features in any GeoJSON object, similar to Array.reduce().
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON object
-* `callback` **[Function][1]** a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex)
-* `initialValue` **any?** Value to use as the first argument to the first call of the callback.
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object
+* `callback` **[flattenReduceCallback][19]** a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex)
+* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.
### Examples
@@ -505,7 +527,7 @@ turf.flattenReduce(features, function (previousValue, currentFeature, featureInd
});
```
-Returns **any** The value that results from the reduction.
+Returns **Reducer** The value that results from the reduction.
## segmentEachCallback
@@ -515,7 +537,7 @@ Type: [Function][1]
### Parameters
-* `currentSegment` **[Feature][5]<[LineString][10]>** The current Segment being processed.
+* `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.
* `geometryIndex` **[number][3]** The current index of the Geometry being processed.
@@ -530,8 +552,8 @@ Iterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEa
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON
-* `callback` **[Function][1]** a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex)
+* `geojson` **AllGeoJSON** any GeoJSON
+* `callback` **[segmentEachCallback][21]** a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex)
### Examples
@@ -577,14 +599,16 @@ Type: [Function][1]
### Parameters
-* `previousValue` **any** The accumulated value previously returned in the last invocation
+* `previousValue` **Reducer** The accumulated value previously returned in the last invocation
of the callback, or initialValue, if supplied.
-* `currentSegment` **[Feature][5]<[LineString][10]>** The current Segment being processed.
+* `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed.
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.
* `geometryIndex` **[number][3]** The current index of the Geometry being processed.
* `segmentIndex` **[number][3]** The current index of the Segment being processed.
+Returns **Reducer**
+
## segmentReduce
Reduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce()
@@ -592,9 +616,9 @@ Reduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce()
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** any GeoJSON
-* `callback` **[Function][1]** a method that takes (previousValue, currentSegment, currentIndex)
-* `initialValue` **any?** Value to use as the first argument to the first call of the callback.
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON
+* `callback` **[segmentReduceCallback][22]** a method that takes (previousValue, currentSegment, currentIndex)
+* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.
### Examples
@@ -620,7 +644,7 @@ var total = turf.segmentReduce(polygon, function (previousValue) {
}, initialValue);
```
-Returns **void**
+Returns **Reducer**
## lineEachCallback
@@ -630,11 +654,13 @@ Type: [Function][1]
### Parameters
-* `currentLine` **[Feature][5]<[LineString][10]>** The current LineString|LinearRing being processed
+* `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed
* `featureIndex` **[number][3]** The current index of the Feature being processed
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed
* `geometryIndex` **[number][3]** The current index of the Geometry being processed
+Returns **void**
+
## lineEach
Iterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries,
@@ -642,8 +668,8 @@ similar to Array.forEach.
### Parameters
-* `geojson` **([Geometry][6] | [Feature][5]<([LineString][10] | [Polygon][11] | [MultiLineString][12] | [MultiPolygon][13])>)** object
-* `callback` **[Function][1]** a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex)
+* `geojson` **([FeatureCollection][8]\ | [Feature][7]\ | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object
+* `callback` **[lineEachCallback][23]** a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex)
### Examples
@@ -661,6 +687,8 @@ turf.lineEach(multiLine, function (currentLine, featureIndex, multiFeatureIndex,
});
```
+Returns **void**
+
## lineReduceCallback
Callback for lineReduce
@@ -682,22 +710,24 @@ Type: [Function][1]
### Parameters
-* `previousValue` **any** The accumulated value previously returned in the last invocation
+* `previousValue` **Reducer** The accumulated value previously returned in the last invocation
of the callback, or initialValue, if supplied.
-* `currentLine` **[Feature][5]<[LineString][10]>** The current LineString|LinearRing being processed.
+* `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed.
* `featureIndex` **[number][3]** The current index of the Feature being processed
* `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed
* `geometryIndex` **[number][3]** The current index of the Geometry being processed
+Returns **Reducer**
+
## lineReduce
Reduce features in any GeoJSON object, similar to Array.reduce().
### Parameters
-* `geojson` **([Geometry][6] | [Feature][5]<([LineString][10] | [Polygon][11] | [MultiLineString][12] | [MultiPolygon][13])>)** object
+* `geojson` **([FeatureCollection][8]\ | [Feature][7]\ | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object
* `callback` **[Function][1]** a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex)
-* `initialValue` **any?** Value to use as the first argument to the first call of the callback.
+* `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.
### Examples
@@ -717,7 +747,7 @@ turf.lineReduce(multiPoly, function (previousValue, currentLine, featureIndex, m
});
```
-Returns **any** The value that results from the reduction.
+Returns **Reducer** The value that results from the reduction.
## findSegment
@@ -728,16 +758,16 @@ Point & MultiPoint will always return null.
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** Any GeoJSON Feature or Geometry
-* `options` **[Object][8]** Optional parameters (optional, default `{}`)
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry
+* `options` **[Object][24]** Optional parameters (optional, default `{}`)
* `options.featureIndex` **[number][3]** Feature Index (optional, default `0`)
* `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`)
* `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`)
* `options.segmentIndex` **[number][3]** Segment Index (optional, default `0`)
- * `options.properties` **[Object][8]** Translate Properties to output LineString (optional, default `{}`)
- * `options.bbox` **[BBox][14]** Translate BBox to output LineString (optional, default `{}`)
- * `options.id` **([number][3] | [string][9])** Translate Id to output LineString (optional, default `{}`)
+ * `options.properties` **[Object][24]** Translate Properties to output LineString (optional, default `{}`)
+ * `options.bbox` **[BBox][15]** Translate BBox to output LineString (optional, default `{}`)
+ * `options.id` **([number][3] | [string][25])** Translate Id to output LineString (optional, default `{}`)
### Examples
@@ -760,7 +790,7 @@ turf.findSegment(multiLine, {multiFeatureIndex: -1, segmentIndex: -1});
// => Feature>
```
-Returns **[Feature][5]<[LineString][10]>** 2-vertex GeoJSON Feature LineString
+Returns **[Feature][7]<[LineString][20]>** 2-vertex GeoJSON Feature LineString
## findPoint
@@ -770,16 +800,16 @@ Negative indexes are permitted.
### Parameters
-* `geojson` **([FeatureCollection][4] | [Feature][5] | [Geometry][6])** Any GeoJSON Feature or Geometry
-* `options` **[Object][8]** Optional parameters (optional, default `{}`)
+* `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry
+* `options` **[Object][24]** Optional parameters (optional, default `{}`)
* `options.featureIndex` **[number][3]** Feature Index (optional, default `0`)
* `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`)
* `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`)
* `options.coordIndex` **[number][3]** Coord Index (optional, default `0`)
- * `options.properties` **[Object][8]** Translate Properties to output Point (optional, default `{}`)
- * `options.bbox` **[BBox][14]** Translate BBox to output Point (optional, default `{}`)
- * `options.id` **([number][3] | [string][9])** Translate Id to output Point (optional, default `{}`)
+ * `options.properties` **[Object][24]** Translate Properties to output Point (optional, default `{}`)
+ * `options.bbox` **[BBox][15]** Translate BBox to output Point (optional, default `{}`)
+ * `options.id` **([number][3] | [string][25])** Translate Id to output Point (optional, default `{}`)
### Examples
@@ -802,7 +832,7 @@ turf.findPoint(multiLine, {multiFeatureIndex: -1, coordIndex: -1});
// => Feature>
```
-Returns **[Feature][5]<[Point][15]>** 2-vertex GeoJSON Feature Point
+Returns **[Feature][7]<[Point][26]>** 2-vertex GeoJSON Feature Point
[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function
@@ -810,29 +840,51 @@ Returns **[Feature][5]<[Point][15]>** 2-vertex GeoJSON Feature Point
[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
-[4]: https://tools.ietf.org/html/rfc7946#section-3.3
+[4]: #coordeachcallback
-[5]: https://tools.ietf.org/html/rfc7946#section-3.2
+[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
-[6]: https://tools.ietf.org/html/rfc7946#section-3.1
+[6]: #coordreducecallback
-[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
+[7]: https://tools.ietf.org/html/rfc7946#section-3.2
-[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
+[8]: https://tools.ietf.org/html/rfc7946#section-3.3
-[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+[9]: #propeachcallback
-[10]: https://tools.ietf.org/html/rfc7946#section-3.1.4
+[10]: https://tools.ietf.org/html/rfc7946#section-3.1
-[11]: https://tools.ietf.org/html/rfc7946#section-3.1.6
+[11]: #propreducecallback
-[12]: https://tools.ietf.org/html/rfc7946#section-3.1.5
+[12]: https://tools.ietf.org/html/rfc7946#section-3.1.8
-[13]: https://tools.ietf.org/html/rfc7946#section-3.1.7
+[13]: #featureeachcallback
-[14]: https://tools.ietf.org/html/rfc7946#section-5
+[14]: #featurereducecallback
-[15]: https://tools.ietf.org/html/rfc7946#section-3.1.2
+[15]: https://tools.ietf.org/html/rfc7946#section-5
+
+[16]: #geomeachcallback
+
+[17]: #geomreducecallback
+
+[18]: #flatteneachcallback
+
+[19]: #flattenreducecallback
+
+[20]: https://tools.ietf.org/html/rfc7946#section-3.1.4
+
+[21]: #segmenteachcallback
+
+[22]: #segmentreducecallback
+
+[23]: #lineeachcallback
+
+[24]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
+
+[25]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
+
+[26]: https://tools.ietf.org/html/rfc7946#section-3.1.2
diff --git a/packages/turf-meta/index.js b/packages/turf-meta/index.js
index d9d42e942..d1fe722c8 100644
--- a/packages/turf-meta/index.js
+++ b/packages/turf-meta/index.js
@@ -4,19 +4,20 @@ import { feature, point, lineString, isObject } from "@turf/helpers";
* Callback for coordEach
*
* @callback coordEachCallback
- * @param {Array} currentCoord The current coordinate being processed.
+ * @param {number[]} currentCoord The current coordinate being processed.
* @param {number} coordIndex The current index of the coordinate being processed.
* @param {number} featureIndex The current index of the Feature being processed.
* @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.
* @param {number} geometryIndex The current index of the Geometry being processed.
+ * @returns {void}
*/
/**
* Iterate over coordinates in any GeoJSON object, similar to Array.forEach()
*
- * @name coordEach
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
- * @param {Function} callback a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex)
+ * @function
+ * @param {AllGeoJSON} geojson any GeoJSON object
+ * @param {coordEachCallback} callback a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex)
* @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration.
* @returns {void}
* @example
@@ -202,25 +203,26 @@ function coordEach(geojson, callback, excludeWrapCoord) {
* - The currentValue argument is the value of the second element present in the array.
*
* @callback coordReduceCallback
- * @param {*} previousValue The accumulated value previously returned in the last invocation
+ * @param {Reducer} previousValue The accumulated value previously returned in the last invocation
* of the callback, or initialValue, if supplied.
- * @param {Array} currentCoord The current coordinate being processed.
+ * @param {number[]} currentCoord The current coordinate being processed.
* @param {number} coordIndex The current index of the coordinate being processed.
* Starts at index 0, if an initialValue is provided, and at index 1 otherwise.
* @param {number} featureIndex The current index of the Feature being processed.
* @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.
* @param {number} geometryIndex The current index of the Geometry being processed.
+ * @returns {Reducer}
*/
/**
* Reduce coordinates in any GeoJSON object, similar to Array.reduce()
*
- * @name coordReduce
- * @param {FeatureCollection|Geometry|Feature} geojson any GeoJSON object
- * @param {Function} callback a method that takes (previousValue, currentCoord, coordIndex)
- * @param {*} [initialValue] Value to use as the first argument to the first call of the callback.
+ * @function
+ * @param {AllGeoJSON} geojson any GeoJSON object
+ * @param {coordReduceCallback} callback a method that takes (previousValue, currentCoord, coordIndex)
+ * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.
* @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration.
- * @returns {*} The value that results from the reduction.
+ * @returns {Reducer} The value that results from the reduction.
* @example
* var features = turf.featureCollection([
* turf.point([26, 37], {"foo": "bar"}),
@@ -269,16 +271,17 @@ function coordReduce(geojson, callback, initialValue, excludeWrapCoord) {
* Callback for propEach
*
* @callback propEachCallback
- * @param {Object} currentProperties The current Properties being processed.
+ * @param {GeoJsonProperties} currentProperties The current Properties being processed.
* @param {number} featureIndex The current index of the Feature being processed.
+ * @returns {void}
*/
/**
* Iterate over properties in any GeoJSON object, similar to Array.forEach()
*
- * @name propEach
+ * @function
* @param {FeatureCollection|Feature} geojson any GeoJSON object
- * @param {Function} callback a method that takes (currentProperties, featureIndex)
+ * @param {propEachCallback} callback a method that takes (currentProperties, featureIndex)
* @returns {void}
* @example
* var features = turf.featureCollection([
@@ -320,10 +323,11 @@ function propEach(geojson, callback) {
* - The currentValue argument is the value of the second element present in the array.
*
* @callback propReduceCallback
- * @param {*} previousValue The accumulated value previously returned in the last invocation
+ * @param {Reducer} previousValue The accumulated value previously returned in the last invocation
* of the callback, or initialValue, if supplied.
- * @param {*} currentProperties The current Properties being processed.
+ * @param {GeoJsonProperties} currentProperties The current Properties being processed.
* @param {number} featureIndex The current index of the Feature being processed.
+ * @returns {Reducer}
*/
/**
@@ -331,11 +335,11 @@ function propEach(geojson, callback) {
* similar to how Array.reduce works. However, in this case we lazily run
* the reduction, so an array of all properties is unnecessary.
*
- * @name propReduce
- * @param {FeatureCollection|Feature} geojson any GeoJSON object
- * @param {Function} callback a method that takes (previousValue, currentProperties, featureIndex)
- * @param {*} [initialValue] Value to use as the first argument to the first call of the callback.
- * @returns {*} The value that results from the reduction.
+ * @function
+ * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
+ * @param {propReduceCallback} callback a method that takes (previousValue, currentProperties, featureIndex)
+ * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.
+ * @returns {Reducer} The value that results from the reduction.
* @example
* var features = turf.featureCollection([
* turf.point([26, 37], {foo: 'bar'}),
@@ -366,15 +370,16 @@ function propReduce(geojson, callback, initialValue) {
* @callback featureEachCallback
* @param {Feature} currentFeature The current Feature being processed.
* @param {number} featureIndex The current index of the Feature being processed.
+ * @returns {void}
*/
/**
* Iterate over features in any GeoJSON object, similar to
* Array.forEach.
*
- * @name featureEach
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
- * @param {Function} callback a method that takes (currentFeature, featureIndex)
+ * @function
+ * @param {FeatureCollection|Feature|Feature} geojson any GeoJSON object
+ * @param {featureEachCallback} callback a method that takes (currentFeature, featureIndex)
* @returns {void}
* @example
* var features = turf.featureCollection([
@@ -412,20 +417,21 @@ function featureEach(geojson, callback) {
* - The currentValue argument is the value of the second element present in the array.
*
* @callback featureReduceCallback
- * @param {*} previousValue The accumulated value previously returned in the last invocation
+ * @param {Reducer} previousValue The accumulated value previously returned in the last invocation
* of the callback, or initialValue, if supplied.
* @param {Feature} currentFeature The current Feature being processed.
* @param {number} featureIndex The current index of the Feature being processed.
+ * @returns {Reducer}
*/
/**
* Reduce features in any GeoJSON object, similar to Array.reduce().
*
- * @name featureReduce
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
- * @param {Function} callback a method that takes (previousValue, currentFeature, featureIndex)
- * @param {*} [initialValue] Value to use as the first argument to the first call of the callback.
- * @returns {*} The value that results from the reduction.
+ * @function
+ * @param {FeatureCollection|Feature|Feature} geojson any GeoJSON object
+ * @param {featureReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex)
+ * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.
+ * @returns {Reducer} The value that results from the reduction.
* @example
* var features = turf.featureCollection([
* turf.point([26, 37], {"foo": "bar"}),
@@ -452,8 +458,8 @@ function featureReduce(geojson, callback, initialValue) {
/**
* Get all coordinates from any GeoJSON object.
*
- * @name coordAll
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
+ * @function
+ * @param {AllGeoJSON} geojson any GeoJSON object
* @returns {Array>} coordinate position array
* @example
* var features = turf.featureCollection([
@@ -476,19 +482,20 @@ function coordAll(geojson) {
* Callback for geomEach
*
* @callback geomEachCallback
- * @param {Geometry} currentGeometry The current Geometry being processed.
+ * @param {GeometryObject} currentGeometry The current Geometry being processed.
* @param {number} featureIndex The current index of the Feature being processed.
- * @param {Object} featureProperties The current Feature Properties being processed.
- * @param {Array} featureBBox The current Feature BBox being processed.
- * @param {number|string} featureId The current Feature Id being processed.
+ * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed.
+ * @param {BBox} featureBBox The current Feature BBox being processed.
+ * @param {Id} featureId The current Feature Id being processed.
+ * @returns {void}
*/
/**
* Iterate over each geometry in any GeoJSON object, similar to Array.forEach()
*
- * @name geomEach
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
- * @param {Function} callback a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
+ * @function
+ * @param {FeatureCollection|Feature|Geometry|GeometryObject|Feature} geojson any GeoJSON object
+ * @param {geomEachCallback} callback a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
* @returns {void}
* @example
* var features = turf.featureCollection([
@@ -637,23 +644,24 @@ function geomEach(geojson, callback) {
* - The currentValue argument is the value of the second element present in the array.
*
* @callback geomReduceCallback
- * @param {*} previousValue The accumulated value previously returned in the last invocation
+ * @param {Reducer} previousValue The accumulated value previously returned in the last invocation
* of the callback, or initialValue, if supplied.
- * @param {Geometry} currentGeometry The current Geometry being processed.
+ * @param {GeometryObject} currentGeometry The current Geometry being processed.
* @param {number} featureIndex The current index of the Feature being processed.
- * @param {Object} featureProperties The current Feature Properties being processed.
- * @param {Array} featureBBox The current Feature BBox being processed.
- * @param {number|string} featureId The current Feature Id being processed.
+ * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed.
+ * @param {BBox} featureBBox The current Feature BBox being processed.
+ * @param {Id} featureId The current Feature Id being processed.
+ * @returns {Reducer}
*/
/**
* Reduce geometry in any GeoJSON object, similar to Array.reduce().
*
- * @name geomReduce
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
- * @param {Function} callback a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
- * @param {*} [initialValue] Value to use as the first argument to the first call of the callback.
- * @returns {*} The value that results from the reduction.
+ * @function
+ * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object
+ * @param {geomReduceCallback} callback a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId)
+ * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.
+ * @returns {Reducer} The value that results from the reduction.
* @example
* var features = turf.featureCollection([
* turf.point([26, 37], {foo: 'bar'}),
@@ -704,15 +712,17 @@ function geomReduce(geojson, callback, initialValue) {
* @param {Feature} currentFeature The current flattened feature being processed.
* @param {number} featureIndex The current index of the Feature being processed.
* @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.
+ * @returns {void}
*/
/**
* Iterate over flattened features in any GeoJSON object, similar to
* Array.forEach.
*
- * @name flattenEach
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
- * @param {Function} callback a method that takes (currentFeature, featureIndex, multiFeatureIndex)
+ * @function
+ * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object
+ * @param {flattenEachCallback} callback a method that takes (currentFeature, featureIndex, multiFeatureIndex)
+ * @returns {void}
* @example
* var features = turf.featureCollection([
* turf.point([26, 37], {foo: 'bar'}),
@@ -794,21 +804,22 @@ function flattenEach(geojson, callback) {
* - The currentValue argument is the value of the second element present in the array.
*
* @callback flattenReduceCallback
- * @param {*} previousValue The accumulated value previously returned in the last invocation
+ * @param {Reducer} previousValue The accumulated value previously returned in the last invocation
* of the callback, or initialValue, if supplied.
* @param {Feature} currentFeature The current Feature being processed.
* @param {number} featureIndex The current index of the Feature being processed.
* @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.
+ * @returns {Reducer}
*/
/**
* Reduce flattened features in any GeoJSON object, similar to Array.reduce().
*
- * @name flattenReduce
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object
- * @param {Function} callback a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex)
- * @param {*} [initialValue] Value to use as the first argument to the first call of the callback.
- * @returns {*} The value that results from the reduction.
+ * @function
+ * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object
+ * @param {flattenReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex)
+ * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.
+ * @returns {Reducer} The value that results from the reduction.
* @example
* var features = turf.featureCollection([
* turf.point([26, 37], {foo: 'bar'}),
@@ -862,8 +873,8 @@ function flattenReduce(geojson, callback, initialValue) {
* Iterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEach()
* (Multi)Point geometries do not contain segments therefore they are ignored during this operation.
*
- * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON
- * @param {Function} callback a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex)
+ * @param {AllGeoJSON} geojson any GeoJSON
+ * @param {segmentEachCallback} callback a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex)
* @returns {void}
* @example
* var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);
@@ -960,13 +971,14 @@ function segmentEach(geojson, callback) {
* - The currentValue argument is the value of the second element present in the array.
*
* @callback segmentReduceCallback
- * @param {*} previousValue The accumulated value previously returned in the last invocation
+ * @param {Reducer} previousValue The accumulated value previously returned in the last invocation
* of the callback, or initialValue, if supplied.
* @param {Feature} currentSegment The current Segment being processed.
* @param {number} featureIndex The current index of the Feature being processed.
* @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.
* @param {number} geometryIndex The current index of the Geometry being processed.
* @param {number} segmentIndex The current index of the Segment being processed.
+ * @returns {Reducer}
*/
/**
@@ -974,9 +986,9 @@ function segmentEach(geojson, callback) {
* (Multi)Point geometries do not contain segments therefore they are ignored during this operation.
*
* @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON
- * @param {Function} callback a method that takes (previousValue, currentSegment, currentIndex)
- * @param {*} [initialValue] Value to use as the first argument to the first call of the callback.
- * @returns {void}
+ * @param {segmentReduceCallback} callback a method that takes (previousValue, currentSegment, currentIndex)
+ * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.
+ * @returns {Reducer}
* @example
* var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);
*
@@ -1035,15 +1047,17 @@ function segmentReduce(geojson, callback, initialValue) {
* @param {number} featureIndex The current index of the Feature being processed
* @param {number} multiFeatureIndex The current index of the Multi-Feature being processed
* @param {number} geometryIndex The current index of the Geometry being processed
+ * @returns {void}
*/
/**
* Iterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries,
* similar to Array.forEach.
*
- * @name lineEach
- * @param {Geometry|Feature} geojson object
- * @param {Function} callback a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex)
+ * @function
+ * @param {FeatureCollection|Feature|Lines|Feature|GeometryCollection} geojson object
+ * @param {lineEachCallback} callback a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex)
+ * @returns {void}
* @example
* var multiLine = turf.multiLineString([
* [[26, 37], [35, 45]],
@@ -1106,22 +1120,23 @@ function lineEach(geojson, callback) {
* - The currentValue argument is the value of the second element present in the array.
*
* @callback lineReduceCallback
- * @param {*} previousValue The accumulated value previously returned in the last invocation
+ * @param {Reducer} previousValue The accumulated value previously returned in the last invocation
* of the callback, or initialValue, if supplied.
* @param {Feature} currentLine The current LineString|LinearRing being processed.
* @param {number} featureIndex The current index of the Feature being processed
* @param {number} multiFeatureIndex The current index of the Multi-Feature being processed
* @param {number} geometryIndex The current index of the Geometry being processed
+ * @returns {Reducer}
*/
/**
* Reduce features in any GeoJSON object, similar to Array.reduce().
*
- * @name lineReduce
- * @param {Geometry|Feature} geojson object
+ * @function
+ * @param {FeatureCollection|Feature|Lines|Feature|GeometryCollection} geojson object
* @param {Function} callback a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex)
- * @param {*} [initialValue] Value to use as the first argument to the first call of the callback.
- * @returns {*} The value that results from the reduction.
+ * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.
+ * @returns {Reducer} The value that results from the reduction.
* @example
* var multiPoly = turf.multiPolygon([
* turf.polygon([[[12,48],[2,41],[24,38],[12,48]], [[9,44],[13,41],[13,45],[9,44]]]),
diff --git a/packages/turf-meta/package.json b/packages/turf-meta/package.json
index fae0bae96..32c237f66 100644
--- a/packages/turf-meta/package.json
+++ b/packages/turf-meta/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/meta",
- "version": "7.0.0",
- "description": "turf meta module",
+ "version": "7.2.0",
+ "description": "Provides tools for iterating over and manipulating GeoJSON objects.",
"author": "Turf Authors",
"contributors": [
"Tom MacWright <@tmcw>",
@@ -73,16 +73,16 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@turf/random": "workspace:^",
+ "@turf/random": "workspace:*",
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4"
},
"dependencies": {
- "@turf/helpers": "workspace:^",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10"
}
}
diff --git a/packages/turf-meta/test.ts b/packages/turf-meta/test.ts
index a8589fe0e..8c59c0e0b 100644
--- a/packages/turf-meta/test.ts
+++ b/packages/turf-meta/test.ts
@@ -532,7 +532,7 @@ test("null geometries", (t) => {
0,
"coordReduce"
);
- /* eslint-enable no-return-assign */
+
t.end();
});
diff --git a/packages/turf-midpoint/index.ts b/packages/turf-midpoint/index.ts
index a401c57a1..70ccef3f5 100644
--- a/packages/turf-midpoint/index.ts
+++ b/packages/turf-midpoint/index.ts
@@ -9,7 +9,7 @@ import { Coord } from "@turf/helpers";
* calculated geodesically, meaning the curvature of the earth is taken into
* account.
*
- * @name midpoint
+ * @function
* @param {Coord} point1 first point
* @param {Coord} point2 second point
* @returns {Feature} a point midway between `pt1` and `pt2`
diff --git a/packages/turf-midpoint/package.json b/packages/turf-midpoint/package.json
index a150bc123..2d77e7ad5 100644
--- a/packages/turf-midpoint/package.json
+++ b/packages/turf-midpoint/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/midpoint",
- "version": "7.0.0",
- "description": "turf midpoint module",
+ "version": "7.2.0",
+ "description": "Takes two points and calculates a point midway between them geodesically.",
"author": "Turf Authors",
"license": "MIT",
"bugs": {
@@ -53,20 +53,20 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3"
},
"dependencies": {
- "@turf/bearing": "workspace:^",
- "@turf/destination": "workspace:^",
- "@turf/distance": "workspace:^",
- "@turf/helpers": "workspace:^",
+ "@turf/bearing": "workspace:*",
+ "@turf/destination": "workspace:*",
+ "@turf/distance": "workspace:*",
+ "@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-moran-index/README.md b/packages/turf-moran-index/README.md
index ce93589de..c4b022ab8 100644
--- a/packages/turf-moran-index/README.md
+++ b/packages/turf-moran-index/README.md
@@ -2,6 +2,17 @@
+## MoranIndex
+
+Type: [object][1]
+
+### Properties
+
+* `moranIndex` **[number][2]** the moran's Index of the observed feature set
+* `expectedMoranIndex` **[number][2]** the moran's Index of the random distribution
+* `stdNorm` **[number][2]** the standard devitaion of the random distribution
+* `zNorm` **[number][2]** the z-score of the observe samples with regard to the random distribution
+
## moranIndex
Moran's I measures patterns of attribute values associated with features.
@@ -20,22 +31,22 @@ the z-score can be calculated based on a normal or random assumption.
**Bibliography**\*
-1. [Moran's I][1]
+1. [Moran's I][3]
-2. [pysal][2]
+2. [pysal][4]
3. Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics.
### Parameters
-* `fc` **[FeatureCollection][3]\**
-* `options` **[Object][4]**
+* `fc` **[FeatureCollection][5]\**
+* `options` **[Object][1]**
- * `options.inputField` **[string][5]** the property name, must contain numeric values
- * `options.threshold` **[number][6]** the distance threshold (optional, default `100000`)
- * `options.p` **[number][6]** the Minkowski p-norm distance parameter (optional, default `2`)
+ * `options.inputField` **[string][6]** the property name, must contain numeric values
+ * `options.threshold` **[number][2]** the distance threshold (optional, default `100000`)
+ * `options.p` **[number][2]** the Minkowski p-norm distance parameter (optional, default `2`)
* `options.binary` **[boolean][7]** whether transfrom the distance to binary (optional, default `false`)
- * `options.alpha` **[number][6]** the distance decay parameter (optional, default `-1`)
+ * `options.alpha` **[number][2]** the distance decay parameter (optional, default `-1`)
* `options.standardization` **[boolean][7]** wheter row standardization the distance (optional, default `true`)
### Examples
@@ -51,55 +62,22 @@ const result = turf.moranIndex(dataset, {
Returns **[MoranIndex][8]**
-## mean
+[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-get mean of a list
+[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
-### Parameters
+[3]: https://en.wikipedia.org/wiki/Moran%27s_I
-* `y` **[Array][9]<[number][6]>**
+[4]: http://pysal.readthedocs.io/en/latest/index.html
-Returns **[number][6]**
+[5]: https://tools.ietf.org/html/rfc7946#section-3.3
-## variance
-
-get variance of a list
-
-### Parameters
-
-* `y` **[Array][9]<[number][6]>**
-
-Returns **[number][6]**
-
-## MoranIndex
-
-Type: [Object][4]
-
-### Properties
-
-* `moranIndex` **[number][6]** the moran's Index of the observed feature set
-* `expectedMoranIndex` **[number][6]** the moran's Index of the random distribution
-* `stdNorm` **[number][6]** the standard devitaion of the random distribution
-* `zNorm` **[number][6]** the z-score of the observe samples with regard to the random distribution
-
-[1]: https://en.wikipedia.org/wiki/Moran%27s_I
-
-[2]: http://pysal.readthedocs.io/en/latest/index.html
-
-[3]: https://tools.ietf.org/html/rfc7946#section-3.3
-
-[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
-
-[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
-
-[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
+[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
[8]: #moranindex
-[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array
-
---
diff --git a/packages/turf-moran-index/index.ts b/packages/turf-moran-index/index.ts
index 362c35578..83a5e9e5b 100644
--- a/packages/turf-moran-index/index.ts
+++ b/packages/turf-moran-index/index.ts
@@ -2,6 +2,20 @@ import { FeatureCollection } from "geojson";
import { distanceWeight as spatialWeight } from "@turf/distance-weight";
import { featureEach } from "@turf/meta";
+/**
+ * @typedef {object} MoranIndex
+ * @property {number} moranIndex the moran's Index of the observed feature set
+ * @property {number} expectedMoranIndex the moran's Index of the random distribution
+ * @property {number} stdNorm the standard devitaion of the random distribution
+ * @property {number} zNorm the z-score of the observe samples with regard to the random distribution
+ */
+type MoranIndex = {
+ moranIndex: number;
+ expectedMoranIndex: number;
+ stdNorm: number;
+ zNorm: number;
+};
+
/**
* Moran's I measures patterns of attribute values associated with features.
* The method reveal whether similar values tend to occur near each other,
@@ -25,7 +39,7 @@ import { featureEach } from "@turf/meta";
*
* 3. Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics.
*
- * @name moranIndex
+ * @function
* @param {FeatureCollection} fc
* @param {Object} options
* @param {string} options.inputField the property name, must contain numeric values
@@ -55,12 +69,7 @@ function moranIndex(
alpha?: number;
standardization?: boolean;
}
-): {
- moranIndex: number;
- expectedMoranIndex: number;
- stdNorm: number;
- zNorm: number;
-} {
+): MoranIndex {
const inputField = options.inputField;
const threshold = options.threshold || 100000;
const p = options.p || 2;
@@ -121,6 +130,8 @@ function moranIndex(
/**
* get mean of a list
+ *
+ * @private
* @param {number[]} y
* @returns {number}
*
@@ -134,6 +145,8 @@ function mean(y: number[]): number {
}
/**
* get variance of a list
+ *
+ * @private
* @param {number[]} y
* @returns {number}
*
@@ -147,13 +160,5 @@ function variance(y: number[]): number {
return sum / y.length;
}
-/**
- * @typedef {Object} MoranIndex
- * @property {number} moranIndex the moran's Index of the observed feature set
- * @property {number} expectedMoranIndex the moran's Index of the random distribution
- * @property {number} stdNorm the standard devitaion of the random distribution
- * @property {number} zNorm the z-score of the observe samples with regard to the random distribution
- */
-
-export { moranIndex };
+export { moranIndex, MoranIndex };
export default moranIndex;
diff --git a/packages/turf-moran-index/package.json b/packages/turf-moran-index/package.json
index 2768bc479..00797b5c4 100644
--- a/packages/turf-moran-index/package.json
+++ b/packages/turf-moran-index/package.json
@@ -1,7 +1,7 @@
{
"name": "@turf/moran-index",
- "version": "7.0.0",
- "description": "turf moran-index module",
+ "version": "7.2.0",
+ "description": "Measures patterns of attribute values associated with features. Reveals whether similar values tend to occur near each other, or whether high or low values are interspersed",
"author": "Turf Authors",
"contributors": [
"Haoming Zhuang <@zhuang-hao-ming>"
@@ -53,21 +53,21 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/tape": "^4.2.32",
+ "@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"npm-run-all": "^4.1.5",
- "tape": "^5.7.2",
- "tsup": "^8.0.1",
- "tsx": "^4.6.2",
- "typescript": "^5.2.2",
- "write-json-file": "^5.0.0"
+ "tape": "^5.9.0",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.4",
+ "typescript": "^5.8.3",
+ "write-json-file": "^6.0.0"
},
"dependencies": {
- "@turf/distance-weight": "workspace:^",
- "@turf/helpers": "workspace:^",
- "@turf/meta": "workspace:^",
+ "@turf/distance-weight": "workspace:*",
+ "@turf/helpers": "workspace:*",
+ "@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
- "tslib": "^2.6.2"
+ "tslib": "^2.8.1"
}
}
diff --git a/packages/turf-nearest-neighbor-analysis/README.md b/packages/turf-nearest-neighbor-analysis/README.md
index 5b66701df..25121b22a 100644
--- a/packages/turf-nearest-neighbor-analysis/README.md
+++ b/packages/turf-nearest-neighbor-analysis/README.md
@@ -2,16 +2,42 @@
+## NearestNeighborStatistics
+
+Nearest neighbour statistics.
+
+Type: [object][1]
+
+### Properties
+
+* `arealUnits` **[string][2]**
+* `observedMeanDistance` **[number][3]**
+* `expectedMeanDistance` **[number][3]**
+* `numberOfPoints` **[number][3]**
+* `zScore` **[number][3]**
+
+## NearestNeighborStudyArea
+
+Nearest neighbour study area polygon feature.
+
+Type: [object][1]
+
+### Properties
+
+* `properties` **[GeoJsonProperties][4]**
+
+ * `properties.nearestNeighborAnalysis` **[NearestNeighborStatistics][5]**
+
## nearestNeighborAnalysis
-Nearest Neighbor Analysis calculates an index based the average distances
+Nearest Neighbor Analysis calculates an index based on the average distances
between points in the dataset, thereby providing inference as to whether the
data is clustered, dispersed, or randomly distributed within the study area.
-It returns a [Feature\][1] of the study area, with the results of
+It returns a [Feature][4]<[Polygon][6]> of the study area, with the results of
the analysis attached as part of of the `nearestNeighborAnalysis` property
of the study area's `properties`. The attached
-[*z*-score][2] indicates how many
+[*z*-score][7] indicates how many
standard deviations above or below the expected mean distance the data's
observed mean distance is. The more negative, the more clustered. The more
positive, the more evenly dispersed. A *z*-score between -2 and 2 indicates
@@ -21,11 +47,11 @@ dispersed.
**Remarks**
-* Though the analysis will work on any [FeatureCollection][3] type, it
- works best with [Point][4] collections.
+* Though the analysis will work on any [FeatureCollection][8] type, it
+ works best with [Point][9] collections.
* This analysis is *very* sensitive to the study area provided.
- If no [Feature\][1] is passed as the study area, the function draws a box
+ If no [Feature][4]<[Polygon][6]> is passed as the study area, the function draws a box
around the data, which may distort the findings. This analysis works best
with a bounded area of interest within with the data is either clustered,
dispersed, or randomly distributed. For example, a city's subway stops may
@@ -37,16 +63,15 @@ dispersed.
Philip J. Clark and Francis C. Evans, βDistance to Nearest Neighbor as a
Measure of Spatial Relationships in Populations,β *Ecology* 35, no. 4
-(1954): 445β453, doi:[10.2307/1931034][5].
+(1954): 445β453, doi:[10.2307/1931034][10].
### Parameters
-* `dataset` **[FeatureCollection][3]\** FeatureCollection (pref. of points) to study
-* `options` **[Object][6]** Optional parameters (optional, default `{}`)
+* `dataset` **[FeatureCollection][8]\