diff --git a/packages/turf-point-grid/README.md b/packages/turf-point-grid/README.md index 130225dbf2..3adc56f030 100644 --- a/packages/turf-point-grid/README.md +++ b/packages/turf-point-grid/README.md @@ -10,6 +10,7 @@ Creates a [Point](http://geojson.org/geojson-spec.html#point) grid from a boundi - `cellSize` **[number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)** the distance across each cell - `units` **\[[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)]** used in calculating cellSize, can be degrees, radians, miles, or kilometers (optional, default `kilometers`) - `centered` **\[[boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean)]** adjust points position to center the grid into bbox (optional, default `false`) +- `bboxIsMask` **\[[boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean)]** if true, and bbox is a Polygon or MultiPolygon, the grid Point will be created only if inside the bbox Polygon(s) (optional, default `false`) **Examples** diff --git a/packages/turf-point-grid/bench.js b/packages/turf-point-grid/bench.js index ca7b540d31..ea539ce050 100644 --- a/packages/turf-point-grid/bench.js +++ b/packages/turf-point-grid/bench.js @@ -1,16 +1,29 @@ var grid = require('./'); +var polygon = require('@turf/helpers').polygon; var Benchmark = require('benchmark'); var bbox = [-95, 30, -85, 40]; +var mask = polygon([[[6.5, 44.6 ], [ 9.2, 44.8 ], [ 8.3, 46.4 ], [ 6.5, 44.6 ]]]); var highres = grid(bbox, 100, 'miles').features.length; var midres = grid(bbox, 10, 'miles').features.length; var lowres = grid(bbox, 1, 'miles').features.length; +var masked = grid(mask, 1, 'miles', true, true).features.length; var suite = new Benchmark.Suite('turf-square-grid'); + +/** + * Benchmark Results + * + * highres -- 42 cells x 274,666 ops/sec ±1.96% (77 runs sampled) + * midres -- 4200 cells x 2,725 ops/sec ±3.86% (73 runs sampled) + * lowres -- 414508 cells x 2.09 ops/sec ±21.02% (10 runs sampled) + * masked -- 7658 cells x 9,794 ops/sec ±2.08% (75 runs sampled) + */ suite .add('highres -- ' + highres + ' cells', () => grid(bbox, 100, 'miles')) .add('midres -- ' + midres + ' cells', () => grid(bbox, 10, 'miles')) .add('lowres -- ' + lowres + ' cells', () => grid(bbox, 1, 'miles')) + .add('masked -- ' + masked + ' cells', () => grid(mask, 10, 'miles', true, true)) .on('cycle', e => console.log(String(e.target))) .on('complete', () => {}) .run(); diff --git a/packages/turf-point-grid/index.d.ts b/packages/turf-point-grid/index.d.ts index 738ba1e0af..2e9e1e1355 100644 --- a/packages/turf-point-grid/index.d.ts +++ b/packages/turf-point-grid/index.d.ts @@ -3,6 +3,6 @@ import {BBox, Points, Units, Feature, Features} from '@turf/helpers'; /** * http://turfjs.org/docs/#pointgrid */ -declare function pointGrid(bbox: BBox | Feature | Features, cellSize: number, units?: Units, centered?: boolean): Points; +declare function pointGrid(bbox: BBox | Feature | Features, cellSize: number, units?: Units, centered?: boolean, bboxIsMask?: boolean): Points; declare namespace pointGrid { } export = pointGrid; diff --git a/packages/turf-point-grid/index.js b/packages/turf-point-grid/index.js index a5f32a29ec..c87adcca45 100644 --- a/packages/turf-point-grid/index.js +++ b/packages/turf-point-grid/index.js @@ -1,6 +1,9 @@ var distance = require('@turf/distance'); var turfBBox = require('@turf/bbox'); var helpers = require('@turf/helpers'); +var inside = require('@turf/inside'); +var invariant = require('@turf/invariant'); +var getGeomType = invariant.getGeomType; var point = helpers.point; var featureCollection = helpers.featureCollection; @@ -12,6 +15,8 @@ var featureCollection = helpers.featureCollection; * @param {number} cellSize the distance across each cell * @param {string} [units=kilometers] used in calculating cellSize, can be degrees, radians, miles, or kilometers * @param {boolean} [centered=false] adjust points position to center the grid into bbox + * @param {boolean} [bboxIsMask=false] if true, and bbox is a Polygon or MultiPolygon, the grid Point will be created + * only if inside the bbox Polygon(s) * @returns {FeatureCollection} grid of points * @example * var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; @@ -23,9 +28,10 @@ var featureCollection = helpers.featureCollection; * //addToMap * var addToMap = [grid]; */ -module.exports = function (bbox, cellSize, units, centered) { +module.exports = function (bbox, cellSize, units, centered, bboxIsMask) { var results = []; + var bboxMask = bbox; // validation if (!bbox) throw new Error('bbox is required'); if (!Array.isArray(bbox)) bbox = turfBBox(bbox); // Convert GeoJSON to bbox @@ -51,13 +57,22 @@ module.exports = function (bbox, cellSize, units, centered) { var deltaY = (bboxVerticalSide - rows * cellHeight) / 2; } + var isPoly = !Array.isArray(bboxMask) && (getGeomType(bboxMask) === 'Polygon' || getGeomType(bboxMask) === 'MultiPolygon'); + var currentX = west; if (centered === true) currentX += deltaX; while (currentX <= east) { var currentY = south; if (centered === true) currentY += deltaY; while (currentY <= north) { - results.push(point([currentX, currentY])); + var pt = point([currentX, currentY]); + if (bboxIsMask === true && isPoly) { + if (inside(pt, bboxMask)) { + results.push(pt); + } + } else { + results.push(pt); + } currentY += cellHeight; } currentX += cellWidth; diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json index 2608cb79a2..c702de1ea1 100644 --- a/packages/turf-point-grid/package.json +++ b/packages/turf-point-grid/package.json @@ -23,6 +23,9 @@ "geojson" ], "author": "Turf Authors", + "contributors": [ + "Stefano Borghi <@stebogit>" + ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" @@ -39,6 +42,8 @@ "dependencies": { "@turf/bbox": "^4.4.0", "@turf/distance": "^4.4.0", - "@turf/helpers": "^4.4.0" + "@turf/helpers": "^4.4.0", + "@turf/inside": "^4.4.0", + "@turf/invariant": "^4.4.0" } } diff --git a/packages/turf-point-grid/test.js b/packages/turf-point-grid/test.js index 3832c7e1af..a1bf4e99d0 100644 --- a/packages/turf-point-grid/test.js +++ b/packages/turf-point-grid/test.js @@ -26,6 +26,7 @@ test('turf-point-grid', t => { const grid5 = grid(geojson, 5, 'miles'); const grid20 = grid(geojson, 20, 'miles'); const gridCentered = grid(geojson, 12.5, 'miles', true); + const gridMasked = grid(geojson, 15, 'miles', true, true); // Add current GeoJSON to grid results featureEach(geojson, feature => { @@ -37,6 +38,7 @@ test('turf-point-grid', t => { grid5.features.push(feature); grid20.features.push(feature); gridCentered.features.push(feature); + gridMasked.features.push(feature); }); if (process.env.REGEN) { @@ -44,10 +46,18 @@ test('turf-point-grid', t => { write.sync(path.join(directories.out, name, '5-miles.geojson'), grid5); write.sync(path.join(directories.out, name, '20-miles.geojson'), grid20); write.sync(path.join(directories.out, name, 'centered.geojson'), gridCentered); + write.sync(path.join(directories.out, name, 'masked.geojson'), gridMasked); } t.deepEqual(grid5, load.sync(path.join(directories.out, name, '5-miles.geojson')), name + ' -- 5 miles'); t.deepEqual(grid20, load.sync(path.join(directories.out, name, '20-miles.geojson')), name + ' -- 20 miles'); t.deepEqual(gridCentered, load.sync(path.join(directories.out, name, 'centered.geojson')), name + ' -- centered'); + t.deepEqual(gridMasked, load.sync(path.join(directories.out, name, 'masked.geojson')), name + ' -- masked'); } t.end(); }); + +test('turf-point-grid -- throws', t => { + t.throws(() => grid(null, 10), /bbox is required/, 'missing bbox'); + t.throws(() => grid([-95, 30, 40], 10), /bbox must contain 4 numbers/, 'invalid bbox'); + t.end(); +}); diff --git a/packages/turf-point-grid/test/in/piedemont.geojson b/packages/turf-point-grid/test/in/piedemont.geojson new file mode 100644 index 0000000000..66ab49bbab --- /dev/null +++ b/packages/turf-point-grid/test/in/piedemont.geojson @@ -0,0 +1,331 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.382568359375012, + 46.456781428126554 + ], + [ + 8.313903808593762, + 46.41892578708079 + ], + [ + 8.31939697265626, + 46.379149058330775 + ], + [ + 8.099670410156264, + 46.26913887119718 + ], + [ + 8.171081542968762, + 46.1893382140708 + ], + [ + 7.8799438476562615, + 45.94160076422079 + ], + [ + 7.907409667968761, + 45.627484212338246 + ], + [ + 7.7247619628906365, + 45.55444852652113 + ], + [ + 7.5833129882812615, + 45.5900172453615 + ], + [ + 7.484436035156261, + 45.58136746810096 + ], + [ + 7.347106933593762, + 45.527516684421215 + ], + [ + 7.116394042968763, + 45.46976215263039 + ], + [ + 7.176818847656262, + 45.408092022812276 + ], + [ + 7.094421386718762, + 45.222677199620094 + ], + [ + 6.980438232421887, + 45.20719857986464 + ], + [ + 6.9515991210937615, + 45.17332441090049 + ], + [ + 6.900787353515638, + 45.166547157856016 + ], + [ + 6.900787353515638, + 45.14621056019852 + ], + [ + 6.854095458984387, + 45.1278045274732 + ], + [ + 6.7813110351562615, + 45.164610651725425 + ], + [ + 6.749725341796888, + 45.1394300814679 + ], + [ + 6.687927246093762, + 45.1394300814679 + ], + [ + 6.6302490234375, + 45.10987715527803 + ], + [ + 6.65496826171875, + 45.069156265623505 + ], + [ + 6.6741943359375, + 45.02015580433459 + ], + [ + 6.755218505859382, + 45.0182143279711 + ], + [ + 6.749725341796875, + 44.90744135615697 + ], + [ + 6.815643310546875, + 44.872415981701394 + ], + [ + 6.900787353515625, + 44.84515927771909 + ], + [ + 6.946105957031258, + 44.86560301534198 + ], + [ + 7.017517089843757, + 44.8344477567128 + ], + [ + 7.002410888671875, + 44.78378451819761 + ], + [ + 7.032623291015625, + 44.73210119404699 + ], + [ + 7.0751953125, + 44.68330096401701 + ], + [ + 6.990051269531262, + 44.69404054463802 + ], + [ + 6.8637084960937615, + 44.51021754644927 + ], + [ + 6.9021606445312615, + 44.36509667482153 + ], + [ + 7.055969238281263, + 44.219615400229195 + ], + [ + 7.3965454101562615, + 44.125056482685174 + ], + [ + 7.6712036132812615, + 44.180234276372886 + ], + [ + 7.7151489257812615, + 44.09350315285844 + ], + [ + 7.770080566406262, + 44.136884638560495 + ], + [ + 8.02825927734376, + 44.140826830775524 + ], + [ + 8.08868408203126, + 44.321883129398586 + ], + [ + 8.247985839843762, + 44.52196830685208 + ], + [ + 8.357849121093762, + 44.48670891691767 + ], + [ + 8.599548339843762, + 44.537632301346086 + ], + [ + 8.665466308593762, + 44.58851118961441 + ], + [ + 8.802795410156264, + 44.51805165000559 + ], + [ + 8.912658691406264, + 44.592423107178654 + ], + [ + 8.912658691406264, + 44.67841867818858 + ], + [ + 9.017028808593762, + 44.6725593921204 + ], + [ + 9.139251708984387, + 44.57970841241188 + ], + [ + 9.213409423828137, + 44.6061127451739 + ], + [ + 9.221649169921887, + 44.75453548416007 + ], + [ + 9.066467285156264, + 44.85002749260048 + ], + [ + 8.896179199218762, + 45.05606124274412 + ], + [ + 8.775329589843762, + 45.01530198999206 + ], + [ + 8.659973144531262, + 45.02695045318543 + ], + [ + 8.522644042968764, + 45.28841433167348 + ], + [ + 8.550109863281262, + 45.3617951914213 + ], + [ + 8.63800048828126, + 45.34828480683997 + ], + [ + 8.676452636718762, + 45.30773430004872 + ], + [ + 8.76983642578126, + 45.35407536661812 + ], + [ + 8.734130859375014, + 45.38494834654319 + ], + [ + 8.846740722656262, + 45.40423540168332 + ], + [ + 8.725891113281262, + 45.51789504294005 + ], + [ + 8.654479980468762, + 45.70809729528788 + ], + [ + 8.56109619140626, + 45.79242458189573 + ], + [ + 8.599548339843762, + 45.832626782661585 + ], + [ + 8.580322265625012, + 45.90529985724794 + ], + [ + 8.725891113281262, + 46.02557483126793 + ], + [ + 8.717651367187512, + 46.0998999106273 + ], + [ + 8.610534667968762, + 46.14178273759229 + ], + [ + 8.539123535156262, + 46.221652456379104 + ], + [ + 8.451232910156262, + 46.25774588045678 + ], + [ + 8.445739746093764, + 46.30899569419854 + ], + [ + 8.47045898437501, + 46.34313560260196 + ], + [ + 8.462219238281264, + 46.462457505996056 + ], + [ + 8.382568359375012, + 46.456781428126554 + ] + ] + ] + } +} diff --git a/packages/turf-point-grid/test/out/fiji/masked.geojson b/packages/turf-point-grid/test/out/fiji/masked.geojson new file mode 100644 index 0000000000..7c545d8874 --- /dev/null +++ b/packages/turf-point-grid/test/out/fiji/masked.geojson @@ -0,0 +1,216 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.30227209627782, + -17.150810213834976 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.30227209627782, + -16.933780745982393 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.30227209627782, + -16.71675127812981 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.30227209627782, + -16.499721810277226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.07512259980092, + -17.150810213834976 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.07512259980092, + -16.933780745982393 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.07512259980092, + -16.71675127812981 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.07512259980092, + -16.499721810277226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.84797310332402, + -17.150810213834976 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.84797310332402, + -16.933780745982393 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.84797310332402, + -16.71675127812981 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.84797310332402, + -16.499721810277226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.62082360684713, + -17.150810213834976 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.62082360684713, + -16.933780745982393 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.62082360684713, + -16.71675127812981 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -179.62082360684713, + -16.499721810277226 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.3460693359375, + -17.16703442146408 + ], + [ + -179.5770263671875, + -17.16703442146408 + ], + [ + -179.5770263671875, + -16.48349760264812 + ], + [ + -180.3460693359375, + -16.48349760264812 + ], + [ + -180.3460693359375, + -17.16703442146408 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/london/masked.geojson b/packages/turf-point-grid/test/out/london/masked.geojson new file mode 100644 index 0000000000..b437b5c547 --- /dev/null +++ b/packages/turf-point-grid/test/out/london/masked.geojson @@ -0,0 +1,172 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6106065502797942, + 51.2858138203807 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6106065502797942, + 51.50284328823329 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6106065502797942, + 51.71987275608587 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26396032144743137, + 51.2858138203807 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26396032144743137, + 51.50284328823329 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26396032144743137, + 51.71987275608587 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08268590738493142, + 51.2858138203807 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08268590738493142, + 51.50284328823329 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08268590738493142, + 51.71987275608587 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4293321362172942, + 51.2858138203807 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4293321362172942, + 51.50284328823329 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4293321362172942, + 51.71987275608587 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6207275390625, + 51.23784668914442 + ], + [ + 0.439453125, + 51.23784668914442 + ], + [ + 0.439453125, + 51.767839887322154 + ], + [ + -0.6207275390625, + 51.767839887322154 + ], + [ + -0.6207275390625, + 51.23784668914442 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/piedemont/20-miles.geojson b/packages/turf-point-grid/test/out/piedemont/20-miles.geojson new file mode 100644 index 0000000000..b058f9a7a6 --- /dev/null +++ b/packages/turf-point-grid/test/out/piedemont/20-miles.geojson @@ -0,0 +1,1033 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0331764402244925, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.436103857011485, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8390312737984775, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.24195869058547, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372463, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159455, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.382568359375012, + 46.456781428126554 + ], + [ + 8.313903808593762, + 46.41892578708079 + ], + [ + 8.31939697265626, + 46.379149058330775 + ], + [ + 8.099670410156264, + 46.26913887119718 + ], + [ + 8.171081542968762, + 46.1893382140708 + ], + [ + 7.8799438476562615, + 45.94160076422079 + ], + [ + 7.907409667968761, + 45.627484212338246 + ], + [ + 7.7247619628906365, + 45.55444852652113 + ], + [ + 7.5833129882812615, + 45.5900172453615 + ], + [ + 7.484436035156261, + 45.58136746810096 + ], + [ + 7.347106933593762, + 45.527516684421215 + ], + [ + 7.116394042968763, + 45.46976215263039 + ], + [ + 7.176818847656262, + 45.408092022812276 + ], + [ + 7.094421386718762, + 45.222677199620094 + ], + [ + 6.980438232421887, + 45.20719857986464 + ], + [ + 6.9515991210937615, + 45.17332441090049 + ], + [ + 6.900787353515638, + 45.166547157856016 + ], + [ + 6.900787353515638, + 45.14621056019852 + ], + [ + 6.854095458984387, + 45.1278045274732 + ], + [ + 6.7813110351562615, + 45.164610651725425 + ], + [ + 6.749725341796888, + 45.1394300814679 + ], + [ + 6.687927246093762, + 45.1394300814679 + ], + [ + 6.6302490234375, + 45.10987715527803 + ], + [ + 6.65496826171875, + 45.069156265623505 + ], + [ + 6.6741943359375, + 45.02015580433459 + ], + [ + 6.755218505859382, + 45.0182143279711 + ], + [ + 6.749725341796875, + 44.90744135615697 + ], + [ + 6.815643310546875, + 44.872415981701394 + ], + [ + 6.900787353515625, + 44.84515927771909 + ], + [ + 6.946105957031258, + 44.86560301534198 + ], + [ + 7.017517089843757, + 44.8344477567128 + ], + [ + 7.002410888671875, + 44.78378451819761 + ], + [ + 7.032623291015625, + 44.73210119404699 + ], + [ + 7.0751953125, + 44.68330096401701 + ], + [ + 6.990051269531262, + 44.69404054463802 + ], + [ + 6.8637084960937615, + 44.51021754644927 + ], + [ + 6.9021606445312615, + 44.36509667482153 + ], + [ + 7.055969238281263, + 44.219615400229195 + ], + [ + 7.3965454101562615, + 44.125056482685174 + ], + [ + 7.6712036132812615, + 44.180234276372886 + ], + [ + 7.7151489257812615, + 44.09350315285844 + ], + [ + 7.770080566406262, + 44.136884638560495 + ], + [ + 8.02825927734376, + 44.140826830775524 + ], + [ + 8.08868408203126, + 44.321883129398586 + ], + [ + 8.247985839843762, + 44.52196830685208 + ], + [ + 8.357849121093762, + 44.48670891691767 + ], + [ + 8.599548339843762, + 44.537632301346086 + ], + [ + 8.665466308593762, + 44.58851118961441 + ], + [ + 8.802795410156264, + 44.51805165000559 + ], + [ + 8.912658691406264, + 44.592423107178654 + ], + [ + 8.912658691406264, + 44.67841867818858 + ], + [ + 9.017028808593762, + 44.6725593921204 + ], + [ + 9.139251708984387, + 44.57970841241188 + ], + [ + 9.213409423828137, + 44.6061127451739 + ], + [ + 9.221649169921887, + 44.75453548416007 + ], + [ + 9.066467285156264, + 44.85002749260048 + ], + [ + 8.896179199218762, + 45.05606124274412 + ], + [ + 8.775329589843762, + 45.01530198999206 + ], + [ + 8.659973144531262, + 45.02695045318543 + ], + [ + 8.522644042968764, + 45.28841433167348 + ], + [ + 8.550109863281262, + 45.3617951914213 + ], + [ + 8.63800048828126, + 45.34828480683997 + ], + [ + 8.676452636718762, + 45.30773430004872 + ], + [ + 8.76983642578126, + 45.35407536661812 + ], + [ + 8.734130859375014, + 45.38494834654319 + ], + [ + 8.846740722656262, + 45.40423540168332 + ], + [ + 8.725891113281262, + 45.51789504294005 + ], + [ + 8.654479980468762, + 45.70809729528788 + ], + [ + 8.56109619140626, + 45.79242458189573 + ], + [ + 8.599548339843762, + 45.832626782661585 + ], + [ + 8.580322265625012, + 45.90529985724794 + ], + [ + 8.725891113281262, + 46.02557483126793 + ], + [ + 8.717651367187512, + 46.0998999106273 + ], + [ + 8.610534667968762, + 46.14178273759229 + ], + [ + 8.539123535156262, + 46.221652456379104 + ], + [ + 8.451232910156262, + 46.25774588045678 + ], + [ + 8.445739746093764, + 46.30899569419854 + ], + [ + 8.47045898437501, + 46.34313560260196 + ], + [ + 8.462219238281264, + 46.462457505996056 + ], + [ + 8.382568359375012, + 46.456781428126554 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/piedemont/5-miles.geojson b/packages/turf-point-grid/test/out/piedemont/5-miles.geojson new file mode 100644 index 0000000000..11f45e1894 --- /dev/null +++ b/packages/turf-point-grid/test/out/piedemont/5-miles.geojson @@ -0,0 +1,9778 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6302490234375, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.730980877634248, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.831712731830995, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932444586027743, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.033176440224491, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.133908294421238, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.234640148617986, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.335372002814734, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4361038570114815, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.536835711208229, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.637567565404977, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7382994196017245, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.839031273798472, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93976312799522, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.040494982191968, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.141226836388716, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.241958690585465, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.342690544782213, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.443422398978962, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54415425317571, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644886107372459, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.745617961569208, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.846349815765956, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.947081669962705, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.047813524159453, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.09350315285844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.1658463088093 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.23818946476016 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.31053262071102 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.38287577666188 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.455218932612745 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.527562088563606 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.59990524451447 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.67224840046533 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.74459155641619 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.81693471236705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.88927786831791 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 44.96162102426877 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.033964180219634 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.106307336170495 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.178650492121356 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.25099364807222 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.32333680402308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.39567995997394 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.4680231159248 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.54036627187566 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.61270942782652 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.685052583777384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.757395739728246 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.82973889567911 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.90208205162997 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 45.97442520758083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 46.04676836353169 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 46.11911151948255 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 46.19145467543341 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 46.263797831384274 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 46.336140987335135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.148545378356202, + 46.408484143285996 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.382568359375012, + 46.456781428126554 + ], + [ + 8.313903808593762, + 46.41892578708079 + ], + [ + 8.31939697265626, + 46.379149058330775 + ], + [ + 8.099670410156264, + 46.26913887119718 + ], + [ + 8.171081542968762, + 46.1893382140708 + ], + [ + 7.8799438476562615, + 45.94160076422079 + ], + [ + 7.907409667968761, + 45.627484212338246 + ], + [ + 7.7247619628906365, + 45.55444852652113 + ], + [ + 7.5833129882812615, + 45.5900172453615 + ], + [ + 7.484436035156261, + 45.58136746810096 + ], + [ + 7.347106933593762, + 45.527516684421215 + ], + [ + 7.116394042968763, + 45.46976215263039 + ], + [ + 7.176818847656262, + 45.408092022812276 + ], + [ + 7.094421386718762, + 45.222677199620094 + ], + [ + 6.980438232421887, + 45.20719857986464 + ], + [ + 6.9515991210937615, + 45.17332441090049 + ], + [ + 6.900787353515638, + 45.166547157856016 + ], + [ + 6.900787353515638, + 45.14621056019852 + ], + [ + 6.854095458984387, + 45.1278045274732 + ], + [ + 6.7813110351562615, + 45.164610651725425 + ], + [ + 6.749725341796888, + 45.1394300814679 + ], + [ + 6.687927246093762, + 45.1394300814679 + ], + [ + 6.6302490234375, + 45.10987715527803 + ], + [ + 6.65496826171875, + 45.069156265623505 + ], + [ + 6.6741943359375, + 45.02015580433459 + ], + [ + 6.755218505859382, + 45.0182143279711 + ], + [ + 6.749725341796875, + 44.90744135615697 + ], + [ + 6.815643310546875, + 44.872415981701394 + ], + [ + 6.900787353515625, + 44.84515927771909 + ], + [ + 6.946105957031258, + 44.86560301534198 + ], + [ + 7.017517089843757, + 44.8344477567128 + ], + [ + 7.002410888671875, + 44.78378451819761 + ], + [ + 7.032623291015625, + 44.73210119404699 + ], + [ + 7.0751953125, + 44.68330096401701 + ], + [ + 6.990051269531262, + 44.69404054463802 + ], + [ + 6.8637084960937615, + 44.51021754644927 + ], + [ + 6.9021606445312615, + 44.36509667482153 + ], + [ + 7.055969238281263, + 44.219615400229195 + ], + [ + 7.3965454101562615, + 44.125056482685174 + ], + [ + 7.6712036132812615, + 44.180234276372886 + ], + [ + 7.7151489257812615, + 44.09350315285844 + ], + [ + 7.770080566406262, + 44.136884638560495 + ], + [ + 8.02825927734376, + 44.140826830775524 + ], + [ + 8.08868408203126, + 44.321883129398586 + ], + [ + 8.247985839843762, + 44.52196830685208 + ], + [ + 8.357849121093762, + 44.48670891691767 + ], + [ + 8.599548339843762, + 44.537632301346086 + ], + [ + 8.665466308593762, + 44.58851118961441 + ], + [ + 8.802795410156264, + 44.51805165000559 + ], + [ + 8.912658691406264, + 44.592423107178654 + ], + [ + 8.912658691406264, + 44.67841867818858 + ], + [ + 9.017028808593762, + 44.6725593921204 + ], + [ + 9.139251708984387, + 44.57970841241188 + ], + [ + 9.213409423828137, + 44.6061127451739 + ], + [ + 9.221649169921887, + 44.75453548416007 + ], + [ + 9.066467285156264, + 44.85002749260048 + ], + [ + 8.896179199218762, + 45.05606124274412 + ], + [ + 8.775329589843762, + 45.01530198999206 + ], + [ + 8.659973144531262, + 45.02695045318543 + ], + [ + 8.522644042968764, + 45.28841433167348 + ], + [ + 8.550109863281262, + 45.3617951914213 + ], + [ + 8.63800048828126, + 45.34828480683997 + ], + [ + 8.676452636718762, + 45.30773430004872 + ], + [ + 8.76983642578126, + 45.35407536661812 + ], + [ + 8.734130859375014, + 45.38494834654319 + ], + [ + 8.846740722656262, + 45.40423540168332 + ], + [ + 8.725891113281262, + 45.51789504294005 + ], + [ + 8.654479980468762, + 45.70809729528788 + ], + [ + 8.56109619140626, + 45.79242458189573 + ], + [ + 8.599548339843762, + 45.832626782661585 + ], + [ + 8.580322265625012, + 45.90529985724794 + ], + [ + 8.725891113281262, + 46.02557483126793 + ], + [ + 8.717651367187512, + 46.0998999106273 + ], + [ + 8.610534667968762, + 46.14178273759229 + ], + [ + 8.539123535156262, + 46.221652456379104 + ], + [ + 8.451232910156262, + 46.25774588045678 + ], + [ + 8.445739746093764, + 46.30899569419854 + ], + [ + 8.47045898437501, + 46.34313560260196 + ], + [ + 8.462219238281264, + 46.462457505996056 + ], + [ + 8.382568359375012, + 46.456781428126554 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/piedemont/centered.geojson b/packages/turf-point-grid/test/out/piedemont/centered.geojson new file mode 100644 index 0000000000..a7c016c63a --- /dev/null +++ b/packages/turf-point-grid/test/out/piedemont/centered.geojson @@ -0,0 +1,2034 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.666800919220343, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918630554712213, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.170460190204084, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.422289825695954, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.674119461187825, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9259490966796955, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.177778732171566, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.429608367663436, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.681438003155305, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.933267638647175, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 44.10240404522575 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 44.2832619351029 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 44.46411982498005 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 44.644977714857205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 44.82583560473436 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 45.00669349461151 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 45.187551384488664 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 45.36840927436582 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 45.54926716424297 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 45.73012505412012 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 45.910982943997276 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 46.09184083387443 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 46.27269872375158 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.185097274139045, + 46.453556613628734 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.382568359375012, + 46.456781428126554 + ], + [ + 8.313903808593762, + 46.41892578708079 + ], + [ + 8.31939697265626, + 46.379149058330775 + ], + [ + 8.099670410156264, + 46.26913887119718 + ], + [ + 8.171081542968762, + 46.1893382140708 + ], + [ + 7.8799438476562615, + 45.94160076422079 + ], + [ + 7.907409667968761, + 45.627484212338246 + ], + [ + 7.7247619628906365, + 45.55444852652113 + ], + [ + 7.5833129882812615, + 45.5900172453615 + ], + [ + 7.484436035156261, + 45.58136746810096 + ], + [ + 7.347106933593762, + 45.527516684421215 + ], + [ + 7.116394042968763, + 45.46976215263039 + ], + [ + 7.176818847656262, + 45.408092022812276 + ], + [ + 7.094421386718762, + 45.222677199620094 + ], + [ + 6.980438232421887, + 45.20719857986464 + ], + [ + 6.9515991210937615, + 45.17332441090049 + ], + [ + 6.900787353515638, + 45.166547157856016 + ], + [ + 6.900787353515638, + 45.14621056019852 + ], + [ + 6.854095458984387, + 45.1278045274732 + ], + [ + 6.7813110351562615, + 45.164610651725425 + ], + [ + 6.749725341796888, + 45.1394300814679 + ], + [ + 6.687927246093762, + 45.1394300814679 + ], + [ + 6.6302490234375, + 45.10987715527803 + ], + [ + 6.65496826171875, + 45.069156265623505 + ], + [ + 6.6741943359375, + 45.02015580433459 + ], + [ + 6.755218505859382, + 45.0182143279711 + ], + [ + 6.749725341796875, + 44.90744135615697 + ], + [ + 6.815643310546875, + 44.872415981701394 + ], + [ + 6.900787353515625, + 44.84515927771909 + ], + [ + 6.946105957031258, + 44.86560301534198 + ], + [ + 7.017517089843757, + 44.8344477567128 + ], + [ + 7.002410888671875, + 44.78378451819761 + ], + [ + 7.032623291015625, + 44.73210119404699 + ], + [ + 7.0751953125, + 44.68330096401701 + ], + [ + 6.990051269531262, + 44.69404054463802 + ], + [ + 6.8637084960937615, + 44.51021754644927 + ], + [ + 6.9021606445312615, + 44.36509667482153 + ], + [ + 7.055969238281263, + 44.219615400229195 + ], + [ + 7.3965454101562615, + 44.125056482685174 + ], + [ + 7.6712036132812615, + 44.180234276372886 + ], + [ + 7.7151489257812615, + 44.09350315285844 + ], + [ + 7.770080566406262, + 44.136884638560495 + ], + [ + 8.02825927734376, + 44.140826830775524 + ], + [ + 8.08868408203126, + 44.321883129398586 + ], + [ + 8.247985839843762, + 44.52196830685208 + ], + [ + 8.357849121093762, + 44.48670891691767 + ], + [ + 8.599548339843762, + 44.537632301346086 + ], + [ + 8.665466308593762, + 44.58851118961441 + ], + [ + 8.802795410156264, + 44.51805165000559 + ], + [ + 8.912658691406264, + 44.592423107178654 + ], + [ + 8.912658691406264, + 44.67841867818858 + ], + [ + 9.017028808593762, + 44.6725593921204 + ], + [ + 9.139251708984387, + 44.57970841241188 + ], + [ + 9.213409423828137, + 44.6061127451739 + ], + [ + 9.221649169921887, + 44.75453548416007 + ], + [ + 9.066467285156264, + 44.85002749260048 + ], + [ + 8.896179199218762, + 45.05606124274412 + ], + [ + 8.775329589843762, + 45.01530198999206 + ], + [ + 8.659973144531262, + 45.02695045318543 + ], + [ + 8.522644042968764, + 45.28841433167348 + ], + [ + 8.550109863281262, + 45.3617951914213 + ], + [ + 8.63800048828126, + 45.34828480683997 + ], + [ + 8.676452636718762, + 45.30773430004872 + ], + [ + 8.76983642578126, + 45.35407536661812 + ], + [ + 8.734130859375014, + 45.38494834654319 + ], + [ + 8.846740722656262, + 45.40423540168332 + ], + [ + 8.725891113281262, + 45.51789504294005 + ], + [ + 8.654479980468762, + 45.70809729528788 + ], + [ + 8.56109619140626, + 45.79242458189573 + ], + [ + 8.599548339843762, + 45.832626782661585 + ], + [ + 8.580322265625012, + 45.90529985724794 + ], + [ + 8.725891113281262, + 46.02557483126793 + ], + [ + 8.717651367187512, + 46.0998999106273 + ], + [ + 8.610534667968762, + 46.14178273759229 + ], + [ + 8.539123535156262, + 46.221652456379104 + ], + [ + 8.451232910156262, + 46.25774588045678 + ], + [ + 8.445739746093764, + 46.30899569419854 + ], + [ + 8.47045898437501, + 46.34313560260196 + ], + [ + 8.462219238281264, + 46.462457505996056 + ], + [ + 8.382568359375012, + 46.456781428126554 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/piedemont/masked.geojson b/packages/turf-point-grid/test/out/piedemont/masked.geojson new file mode 100644 index 0000000000..519417d0b3 --- /dev/null +++ b/packages/turf-point-grid/test/out/piedemont/masked.geojson @@ -0,0 +1,846 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 6.717166846318717, + 45.06095086157466 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.019362408908961, + 44.40986245801691 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.019362408908961, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.019362408908961, + 44.84392139372208 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.019362408908961, + 45.06095086157466 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.321557971499205, + 44.19283299016433 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.321557971499205, + 44.40986245801691 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.321557971499205, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.321557971499205, + 44.84392139372208 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.321557971499205, + 45.06095086157466 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.321557971499205, + 45.277980329427244 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.321557971499205, + 45.49500979727983 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.623753534089449, + 44.19283299016433 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.623753534089449, + 44.40986245801691 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.623753534089449, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.623753534089449, + 44.84392139372208 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.623753534089449, + 45.06095086157466 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.623753534089449, + 45.277980329427244 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.623753534089449, + 45.49500979727983 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 44.19283299016433 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 44.40986245801691 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 44.84392139372208 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 45.06095086157466 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 45.277980329427244 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 45.49500979727983 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 45.71203926513241 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 7.925949096679693, + 45.929068732984994 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 44.84392139372208 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 45.06095086157466 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 45.277980329427244 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 45.49500979727983 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 45.71203926513241 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 45.929068732984994 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.228144659269937, + 46.14609820083758 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53034022186018, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53034022186018, + 44.84392139372208 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53034022186018, + 45.06095086157466 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53034022186018, + 45.49500979727983 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53034022186018, + 45.71203926513241 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53034022186018, + 45.929068732984994 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53034022186018, + 46.14609820083758 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.832535784450425, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 8.832535784450425, + 44.84392139372208 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 9.134731347040669, + 44.626891925869494 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.382568359375012, + 46.456781428126554 + ], + [ + 8.313903808593762, + 46.41892578708079 + ], + [ + 8.31939697265626, + 46.379149058330775 + ], + [ + 8.099670410156264, + 46.26913887119718 + ], + [ + 8.171081542968762, + 46.1893382140708 + ], + [ + 7.8799438476562615, + 45.94160076422079 + ], + [ + 7.907409667968761, + 45.627484212338246 + ], + [ + 7.7247619628906365, + 45.55444852652113 + ], + [ + 7.5833129882812615, + 45.5900172453615 + ], + [ + 7.484436035156261, + 45.58136746810096 + ], + [ + 7.347106933593762, + 45.527516684421215 + ], + [ + 7.116394042968763, + 45.46976215263039 + ], + [ + 7.176818847656262, + 45.408092022812276 + ], + [ + 7.094421386718762, + 45.222677199620094 + ], + [ + 6.980438232421887, + 45.20719857986464 + ], + [ + 6.9515991210937615, + 45.17332441090049 + ], + [ + 6.900787353515638, + 45.166547157856016 + ], + [ + 6.900787353515638, + 45.14621056019852 + ], + [ + 6.854095458984387, + 45.1278045274732 + ], + [ + 6.7813110351562615, + 45.164610651725425 + ], + [ + 6.749725341796888, + 45.1394300814679 + ], + [ + 6.687927246093762, + 45.1394300814679 + ], + [ + 6.6302490234375, + 45.10987715527803 + ], + [ + 6.65496826171875, + 45.069156265623505 + ], + [ + 6.6741943359375, + 45.02015580433459 + ], + [ + 6.755218505859382, + 45.0182143279711 + ], + [ + 6.749725341796875, + 44.90744135615697 + ], + [ + 6.815643310546875, + 44.872415981701394 + ], + [ + 6.900787353515625, + 44.84515927771909 + ], + [ + 6.946105957031258, + 44.86560301534198 + ], + [ + 7.017517089843757, + 44.8344477567128 + ], + [ + 7.002410888671875, + 44.78378451819761 + ], + [ + 7.032623291015625, + 44.73210119404699 + ], + [ + 7.0751953125, + 44.68330096401701 + ], + [ + 6.990051269531262, + 44.69404054463802 + ], + [ + 6.8637084960937615, + 44.51021754644927 + ], + [ + 6.9021606445312615, + 44.36509667482153 + ], + [ + 7.055969238281263, + 44.219615400229195 + ], + [ + 7.3965454101562615, + 44.125056482685174 + ], + [ + 7.6712036132812615, + 44.180234276372886 + ], + [ + 7.7151489257812615, + 44.09350315285844 + ], + [ + 7.770080566406262, + 44.136884638560495 + ], + [ + 8.02825927734376, + 44.140826830775524 + ], + [ + 8.08868408203126, + 44.321883129398586 + ], + [ + 8.247985839843762, + 44.52196830685208 + ], + [ + 8.357849121093762, + 44.48670891691767 + ], + [ + 8.599548339843762, + 44.537632301346086 + ], + [ + 8.665466308593762, + 44.58851118961441 + ], + [ + 8.802795410156264, + 44.51805165000559 + ], + [ + 8.912658691406264, + 44.592423107178654 + ], + [ + 8.912658691406264, + 44.67841867818858 + ], + [ + 9.017028808593762, + 44.6725593921204 + ], + [ + 9.139251708984387, + 44.57970841241188 + ], + [ + 9.213409423828137, + 44.6061127451739 + ], + [ + 9.221649169921887, + 44.75453548416007 + ], + [ + 9.066467285156264, + 44.85002749260048 + ], + [ + 8.896179199218762, + 45.05606124274412 + ], + [ + 8.775329589843762, + 45.01530198999206 + ], + [ + 8.659973144531262, + 45.02695045318543 + ], + [ + 8.522644042968764, + 45.28841433167348 + ], + [ + 8.550109863281262, + 45.3617951914213 + ], + [ + 8.63800048828126, + 45.34828480683997 + ], + [ + 8.676452636718762, + 45.30773430004872 + ], + [ + 8.76983642578126, + 45.35407536661812 + ], + [ + 8.734130859375014, + 45.38494834654319 + ], + [ + 8.846740722656262, + 45.40423540168332 + ], + [ + 8.725891113281262, + 45.51789504294005 + ], + [ + 8.654479980468762, + 45.70809729528788 + ], + [ + 8.56109619140626, + 45.79242458189573 + ], + [ + 8.599548339843762, + 45.832626782661585 + ], + [ + 8.580322265625012, + 45.90529985724794 + ], + [ + 8.725891113281262, + 46.02557483126793 + ], + [ + 8.717651367187512, + 46.0998999106273 + ], + [ + 8.610534667968762, + 46.14178273759229 + ], + [ + 8.539123535156262, + 46.221652456379104 + ], + [ + 8.451232910156262, + 46.25774588045678 + ], + [ + 8.445739746093764, + 46.30899569419854 + ], + [ + 8.47045898437501, + 46.34313560260196 + ], + [ + 8.462219238281264, + 46.462457505996056 + ], + [ + 8.382568359375012, + 46.456781428126554 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/resolute/masked.geojson b/packages/turf-point-grid/test/out/resolute/masked.geojson new file mode 100644 index 0000000000..7462d81d82 --- /dev/null +++ b/packages/turf-point-grid/test/out/resolute/masked.geojson @@ -0,0 +1,106 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.76537876518235, + 74.57686363699452 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.76537876518235, + 74.7938931048471 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.954833984375, + 74.57686363699452 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.954833984375, + 74.7938931048471 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.14428920356765, + 74.57686363699452 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.14428920356765, + 74.7938931048471 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.877685546875, + 74.46849062193377 + ], + [ + -94.031982421875, + 74.46849062193377 + ], + [ + -94.031982421875, + 74.90226611990785 + ], + [ + -95.877685546875, + 74.90226611990785 + ], + [ + -95.877685546875, + 74.46849062193377 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/types.ts b/packages/turf-point-grid/types.ts index 0bec64df5a..599d93ed38 100644 --- a/packages/turf-point-grid/types.ts +++ b/packages/turf-point-grid/types.ts @@ -2,4 +2,4 @@ import {BBox, Points} from '@turf/helpers' import * as pointGrid from './' const bbox: BBox = [-95, 30, -85, 40] -const grid: Points = pointGrid(bbox, 50, 'miles') +const grid: Points = pointGrid(bbox, 50, 'miles', true, true) diff --git a/packages/turf-point-grid/yarn.lock b/packages/turf-point-grid/yarn.lock index d47f219148..d337de0004 100644 --- a/packages/turf-point-grid/yarn.lock +++ b/packages/turf-point-grid/yarn.lock @@ -2,6 +2,37 @@ # yarn lockfile v1 +"@turf/bbox@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-4.4.0.tgz#3149458eb41404427cf786a90fb3680a0e8aab55" + dependencies: + "@turf/meta" "^4.4.0" + +"@turf/distance@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@turf/distance/-/distance-4.4.0.tgz#6101f5951caf4e7ee5c006540900574af2f106bd" + dependencies: + "@turf/helpers" "^4.4.0" + "@turf/invariant" "^4.4.0" + +"@turf/helpers@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-4.4.0.tgz#c83112f7fbe6ed183c7c0c2f776481b94d1cbd01" + +"@turf/inside@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@turf/inside/-/inside-4.4.0.tgz#5a78de2c0ed9a68b494508f53ae2f4b73dd770ef" + dependencies: + "@turf/invariant" "^4.4.0" + +"@turf/invariant@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@turf/invariant/-/invariant-4.4.0.tgz#aac0afb840ae40908f9c80393f416222dcf79c32" + +"@turf/meta@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-4.4.0.tgz#4fa25d4cc0525bd4cdbaf4ff68a6f8ae81f1975f" + balanced-match@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"