From 4937399e95e7ca50833d8279650b0b2cd65421b6 Mon Sep 17 00:00:00 2001 From: stebogit Date: Tue, 11 Jul 2017 23:46:58 -0700 Subject: [PATCH 1/2] set centered param default to True (fix #833): simplified tests; updated all relevant files; --- packages/turf-point-grid/README.md | 2 +- packages/turf-point-grid/index.d.ts | 2 +- packages/turf-point-grid/index.js | 8 +- packages/turf-point-grid/package.json | 2 - packages/turf-point-grid/test.js | 46 +- .../{fiji.geojson => fiji-10-miles.geojson} | 5 +- ...london.geojson => london-20-miles.geojson} | 5 +- .../test/in/not-centered.geojson | 34 + ...edemont.geojson => piedemont-mask.geojson} | 6 +- .../turf-point-grid/test/in/resolute.geojson | 5 +- ...centered.geojson => fiji-10-miles.geojson} | 184 +- .../test/out/fiji/20-miles.geojson | 139 - .../test/out/fiji/masked.geojson | 216 - ...-miles.geojson => london-20-miles.geojson} | 26 +- .../test/out/london/5-miles.geojson | 920 -- .../test/out/london/centered.geojson | 172 - .../test/out/london/masked.geojson | 172 - .../5-miles.geojson => not-centered.geojson} | 462 +- ...0-miles.geojson => piedemont-mask.geojson} | 285 +- .../test/out/piedemont/5-miles.geojson | 9778 ----------------- .../test/out/piedemont/centered.geojson | 2034 ---- .../test/out/piedemont/masked.geojson | 846 -- .../centered.geojson => resolute.geojson} | 2 +- .../test/out/resolute/20-miles.geojson | 84 - .../test/out/resolute/5-miles.geojson | 502 - .../test/out/resolute/masked.geojson | 106 - packages/turf-point-grid/yarn.lock | 44 +- 27 files changed, 644 insertions(+), 15443 deletions(-) rename packages/turf-point-grid/test/in/{fiji.geojson => fiji-10-miles.geojson} (88%) rename packages/turf-point-grid/test/in/{london.geojson => london-20-miles.geojson} (88%) create mode 100644 packages/turf-point-grid/test/in/not-centered.geojson rename packages/turf-point-grid/test/in/{piedemont.geojson => piedemont-mask.geojson} (98%) rename packages/turf-point-grid/test/out/{fiji/centered.geojson => fiji-10-miles.geojson} (54%) delete mode 100644 packages/turf-point-grid/test/out/fiji/20-miles.geojson delete mode 100644 packages/turf-point-grid/test/out/fiji/masked.geojson rename packages/turf-point-grid/test/out/{london/20-miles.geojson => london-20-miles.geojson} (81%) delete mode 100644 packages/turf-point-grid/test/out/london/5-miles.geojson delete mode 100644 packages/turf-point-grid/test/out/london/centered.geojson delete mode 100644 packages/turf-point-grid/test/out/london/masked.geojson rename packages/turf-point-grid/test/out/{fiji/5-miles.geojson => not-centered.geojson} (70%) rename packages/turf-point-grid/test/out/{piedemont/20-miles.geojson => piedemont-mask.geojson} (79%) delete mode 100644 packages/turf-point-grid/test/out/piedemont/5-miles.geojson delete mode 100644 packages/turf-point-grid/test/out/piedemont/centered.geojson delete mode 100644 packages/turf-point-grid/test/out/piedemont/masked.geojson rename packages/turf-point-grid/test/out/{resolute/centered.geojson => resolute.geojson} (99%) delete mode 100644 packages/turf-point-grid/test/out/resolute/20-miles.geojson delete mode 100644 packages/turf-point-grid/test/out/resolute/5-miles.geojson delete mode 100644 packages/turf-point-grid/test/out/resolute/masked.geojson diff --git a/packages/turf-point-grid/README.md b/packages/turf-point-grid/README.md index 1f45430ce5..2ac139ea81 100644 --- a/packages/turf-point-grid/README.md +++ b/packages/turf-point-grid/README.md @@ -9,7 +9,7 @@ Creates a [Point](http://geojson.org/geojson-spec.html#point) grid from a boundi - `bbox` **([Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)<[number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)> | [FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects) \| [Feature](http://geojson.org/geojson-spec.html#feature-objects)<any>)** extent in [minX, minY, maxX, maxY] order - `cellSide` **[number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)** the distance between points - `units` **\[[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)]** used in calculating cellSide, 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`) +- `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 `true`). **This parameter is going to be removed** in the next major release, having the output always centered into bbox. - `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`) diff --git a/packages/turf-point-grid/index.d.ts b/packages/turf-point-grid/index.d.ts index a7c2d95636..d2ddc9e3e4 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, cellSide: number, units?: Units, centered?: boolean, bboxIsMask?: boolean): Points; +declare function pointGrid(bbox: BBox | Feature | Array, cellSide: 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 19d20209f8..ed1d07c2e9 100644 --- a/packages/turf-point-grid/index.js +++ b/packages/turf-point-grid/index.js @@ -14,7 +14,7 @@ var featureCollection = helpers.featureCollection; * @param {Array|FeatureCollection|Feature} bbox extent in [minX, minY, maxX, maxY] order * @param {number} cellSide the distance between points * @param {string} [units=kilometers] used in calculating cellSide, can be degrees, radians, miles, or kilometers - * @param {boolean} [centered=false] adjust points position to center the grid into bbox + * @param {boolean} [centered=true] adjust points position to center the grid into bbox. **This parameter is going to be removed** in the next major release, having the output always centered 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 @@ -47,7 +47,7 @@ module.exports = function (bbox, cellSide, units, centered, bboxIsMask) { var yFraction = cellSide / (distance(point([west, south]), point([west, north]), units)); var cellHeight = yFraction * (north - south); - if (centered === true) { + if (centered !== false) { var bboxHorizontalSide = (east - west); var bboxVerticalSide = (north - south); var columns = Math.floor(bboxHorizontalSide / cellWidth); @@ -60,10 +60,10 @@ module.exports = function (bbox, cellSide, units, centered, bboxIsMask) { var isPoly = !Array.isArray(bboxMask) && (getGeomType(bboxMask) === 'Polygon' || getGeomType(bboxMask) === 'MultiPolygon'); var currentX = west; - if (centered === true) currentX += deltaX; + if (centered !== false) currentX += deltaX; while (currentX <= east) { var currentY = south; - if (centered === true) currentY += deltaY; + if (centered !== false) currentY += deltaY; while (currentY <= north) { var pt = point([currentX, currentY]); if (bboxIsMask === true && isPoly) { diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json index b231c66b42..581e5585e2 100644 --- a/packages/turf-point-grid/package.json +++ b/packages/turf-point-grid/package.json @@ -32,10 +32,8 @@ }, "homepage": "https://github.com/Turfjs/turf", "devDependencies": { - "@turf/meta": "^4.5.2", "benchmark": "^2.1.4", "load-json-file": "^2.0.0", - "mkdirp": "^0.5.1", "tape": "^4.6.3", "write-json-file": "^2.0.0" }, diff --git a/packages/turf-point-grid/test.js b/packages/turf-point-grid/test.js index a1bf4e99d0..ddfa712206 100644 --- a/packages/turf-point-grid/test.js +++ b/packages/turf-point-grid/test.js @@ -3,9 +3,7 @@ const test = require('tape'); const path = require('path'); const load = require('load-json-file'); const write = require('write-json-file'); -const mkdirp = require('mkdirp'); -const {featureEach} = require('@turf/meta'); -const grid = require('./'); +const pointGrid = require('./'); const directories = { in: path.join(__dirname, 'test', 'in') + path.sep, @@ -23,41 +21,25 @@ let fixtures = fs.readdirSync(directories.in).map(filename => { test('turf-point-grid', t => { for (const {name, geojson} of fixtures) { - 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); + const {cellSide, units, centered, bboxIsMask} = geojson.properties; + const result = pointGrid(geojson, cellSide, units, centered, bboxIsMask); - // Add current GeoJSON to grid results - featureEach(geojson, feature => { - feature.properties = { - stroke: '#F00', - 'stroke-width': 6, - 'fill-opacity': 0 - }; - grid5.features.push(feature); - grid20.features.push(feature); - gridCentered.features.push(feature); - gridMasked.features.push(feature); - }); + // Add styled GeoJSON to the result + geojson.properties = { + stroke: '#F00', + 'stroke-width': 6, + 'fill-opacity': 0 + }; + result.features.push(geojson); - if (process.env.REGEN) { - mkdirp.sync(directories.out + name); - 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'); + if (process.env.REGEN) write.sync(directories.out + name + '.geojson', result); + t.deepEqual(result, load.sync(directories.out + name + '.geojson'), name); } 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.throws(() => pointGrid(null, 10), /bbox is required/, 'missing bbox'); + t.throws(() => pointGrid([-95, 30, 40], 10), /bbox must contain 4 numbers/, 'invalid bbox'); t.end(); }); diff --git a/packages/turf-point-grid/test/in/fiji.geojson b/packages/turf-point-grid/test/in/fiji-10-miles.geojson similarity index 88% rename from packages/turf-point-grid/test/in/fiji.geojson rename to packages/turf-point-grid/test/in/fiji-10-miles.geojson index 6f42d30b79..e7773a3872 100644 --- a/packages/turf-point-grid/test/in/fiji.geojson +++ b/packages/turf-point-grid/test/in/fiji-10-miles.geojson @@ -1,6 +1,9 @@ { "type": "Feature", - "properties": {}, + "properties": { + "cellSide": 10, + "units": "miles" + }, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/packages/turf-point-grid/test/in/london.geojson b/packages/turf-point-grid/test/in/london-20-miles.geojson similarity index 88% rename from packages/turf-point-grid/test/in/london.geojson rename to packages/turf-point-grid/test/in/london-20-miles.geojson index 46df5b2383..6db8aff7da 100644 --- a/packages/turf-point-grid/test/in/london.geojson +++ b/packages/turf-point-grid/test/in/london-20-miles.geojson @@ -1,6 +1,9 @@ { "type": "Feature", - "properties": {}, + "properties": { + "cellSide": 20, + "units": "miles" + }, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/packages/turf-point-grid/test/in/not-centered.geojson b/packages/turf-point-grid/test/in/not-centered.geojson new file mode 100644 index 0000000000..19e11a6b83 --- /dev/null +++ b/packages/turf-point-grid/test/in/not-centered.geojson @@ -0,0 +1,34 @@ +{ + "type": "Feature", + "properties": { + "cellSide": 1, + "centered": false + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.00851440429688, + -13.575913832365224 + ], + [ + -71.90826416015625, + -13.575913832365224 + ], + [ + -71.90826416015625, + -13.486791161568776 + ], + [ + -72.00851440429688, + -13.486791161568776 + ], + [ + -72.00851440429688, + -13.575913832365224 + ] + ] + ] + } +} diff --git a/packages/turf-point-grid/test/in/piedemont.geojson b/packages/turf-point-grid/test/in/piedemont-mask.geojson similarity index 98% rename from packages/turf-point-grid/test/in/piedemont.geojson rename to packages/turf-point-grid/test/in/piedemont-mask.geojson index 66ab49bbab..b7650fdfc1 100644 --- a/packages/turf-point-grid/test/in/piedemont.geojson +++ b/packages/turf-point-grid/test/in/piedemont-mask.geojson @@ -1,6 +1,10 @@ { "type": "Feature", - "properties": {}, + "properties": { + "cellSide": 12.5, + "units": "miles", + "bboxIsMask": true + }, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/packages/turf-point-grid/test/in/resolute.geojson b/packages/turf-point-grid/test/in/resolute.geojson index 223d3648a8..202a7dea28 100644 --- a/packages/turf-point-grid/test/in/resolute.geojson +++ b/packages/turf-point-grid/test/in/resolute.geojson @@ -1,6 +1,9 @@ { "type": "Feature", - "properties": {}, + "properties": { + "cellSide": 12.5, + "units": "miles" + }, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/packages/turf-point-grid/test/out/fiji/centered.geojson b/packages/turf-point-grid/test/out/fiji-10-miles.geojson similarity index 54% rename from packages/turf-point-grid/test/out/fiji/centered.geojson rename to packages/turf-point-grid/test/out/fiji-10-miles.geojson index 5853d412fc..3c7446dc0c 100644 --- a/packages/turf-point-grid/test/out/fiji/centered.geojson +++ b/packages/turf-point-grid/test/out/fiji-10-miles.geojson @@ -8,7 +8,7 @@ "type": "Point", "coordinates": [ -180.34013034569065, - -17.09655284687183 + -17.114638635859546 ] } }, @@ -19,7 +19,7 @@ "type": "Point", "coordinates": [ -180.34013034569065, - -16.915694956994678 + -16.969952323957823 ] } }, @@ -30,7 +30,7 @@ "type": "Point", "coordinates": [ -180.34013034569065, - -16.734837067117525 + -16.8252660120561 ] } }, @@ -41,7 +41,7 @@ "type": "Point", "coordinates": [ -180.34013034569065, - -16.55397917724037 + -16.68057970015438 ] } }, @@ -51,8 +51,118 @@ "geometry": { "type": "Point", "coordinates": [ - -180.1508390986266, - -17.09655284687183 + -180.34013034569065, + -16.535893388252656 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.1886973480394, + -17.114638635859546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.1886973480394, + -16.969952323957823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.1886973480394, + -16.8252660120561 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.1886973480394, + -16.68057970015438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.1886973480394, + -16.535893388252656 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.03726435038814, + -17.114638635859546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.03726435038814, + -16.969952323957823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.03726435038814, + -16.8252660120561 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.03726435038814, + -16.68057970015438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -180.03726435038814, + -16.535893388252656 ] } }, @@ -62,8 +172,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.1508390986266, - -16.915694956994678 + -179.8858313527369, + -17.114638635859546 ] } }, @@ -73,8 +183,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.1508390986266, - -16.734837067117525 + -179.8858313527369, + -16.969952323957823 ] } }, @@ -84,8 +194,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.1508390986266, - -16.55397917724037 + -179.8858313527369, + -16.8252660120561 ] } }, @@ -95,8 +205,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.96154785156253, - -17.09655284687183 + -179.8858313527369, + -16.68057970015438 ] } }, @@ -106,8 +216,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.96154785156253, - -16.915694956994678 + -179.8858313527369, + -16.535893388252656 ] } }, @@ -117,8 +227,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.96154785156253, - -16.734837067117525 + -179.73439835508563, + -17.114638635859546 ] } }, @@ -128,8 +238,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.96154785156253, - -16.55397917724037 + -179.73439835508563, + -16.969952323957823 ] } }, @@ -139,8 +249,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.77225660449847, - -17.09655284687183 + -179.73439835508563, + -16.8252660120561 ] } }, @@ -150,8 +260,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.77225660449847, - -16.915694956994678 + -179.73439835508563, + -16.68057970015438 ] } }, @@ -161,8 +271,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.77225660449847, - -16.734837067117525 + -179.73439835508563, + -16.535893388252656 ] } }, @@ -172,8 +282,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.77225660449847, - -16.55397917724037 + -179.58296535743438, + -17.114638635859546 ] } }, @@ -183,8 +293,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.5829653574344, - -17.09655284687183 + -179.58296535743438, + -16.969952323957823 ] } }, @@ -194,8 +304,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.5829653574344, - -16.915694956994678 + -179.58296535743438, + -16.8252660120561 ] } }, @@ -205,8 +315,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.5829653574344, - -16.734837067117525 + -179.58296535743438, + -16.68057970015438 ] } }, @@ -216,8 +326,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.5829653574344, - -16.55397917724037 + -179.58296535743438, + -16.535893388252656 ] } }, @@ -257,4 +367,4 @@ } } ] -} +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/fiji/20-miles.geojson b/packages/turf-point-grid/test/out/fiji/20-miles.geojson deleted file mode 100644 index 3501460d44..0000000000 --- a/packages/turf-point-grid/test/out/fiji/20-miles.geojson +++ /dev/null @@ -1,139 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -180.3460693359375, - -17.16703442146408 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -180.3460693359375, - -16.877661797660636 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -180.3460693359375, - -16.58828917385719 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -180.043203340635, - -17.16703442146408 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -180.043203340635, - -16.877661797660636 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -180.043203340635, - -16.58828917385719 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -179.74033734533248, - -17.16703442146408 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -179.74033734533248, - -16.877661797660636 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -179.74033734533248, - -16.58828917385719 - ] - } - }, - { - "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 - ] - ] - ] - } - } - ] -} diff --git a/packages/turf-point-grid/test/out/fiji/masked.geojson b/packages/turf-point-grid/test/out/fiji/masked.geojson deleted file mode 100644 index 7c545d8874..0000000000 --- a/packages/turf-point-grid/test/out/fiji/masked.geojson +++ /dev/null @@ -1,216 +0,0 @@ -{ - "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/20-miles.geojson b/packages/turf-point-grid/test/out/london-20-miles.geojson similarity index 81% rename from packages/turf-point-grid/test/out/london/20-miles.geojson rename to packages/turf-point-grid/test/out/london-20-miles.geojson index ac3ab40117..7574cafcff 100644 --- a/packages/turf-point-grid/test/out/london/20-miles.geojson +++ b/packages/turf-point-grid/test/out/london-20-miles.geojson @@ -7,8 +7,8 @@ "geometry": { "type": "Point", "coordinates": [ - -0.6207275390625, - 51.23784668914442 + -0.5528321788077337, + 51.358156976331564 ] } }, @@ -18,8 +18,8 @@ "geometry": { "type": "Point", "coordinates": [ - -0.6207275390625, - 51.527219312947864 + -0.5528321788077337, + 51.64752960013501 ] } }, @@ -29,8 +29,8 @@ "geometry": { "type": "Point", "coordinates": [ - -0.15853256728601628, - 51.23784668914442 + -0.09063720703125, + 51.358156976331564 ] } }, @@ -40,8 +40,8 @@ "geometry": { "type": "Point", "coordinates": [ - -0.15853256728601628, - 51.527219312947864 + -0.09063720703125, + 51.64752960013501 ] } }, @@ -51,8 +51,8 @@ "geometry": { "type": "Point", "coordinates": [ - 0.30366240449046744, - 51.23784668914442 + 0.3715577647452337, + 51.358156976331564 ] } }, @@ -62,8 +62,8 @@ "geometry": { "type": "Point", "coordinates": [ - 0.30366240449046744, - 51.527219312947864 + 0.3715577647452337, + 51.64752960013501 ] } }, @@ -103,4 +103,4 @@ } } ] -} +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/london/5-miles.geojson b/packages/turf-point-grid/test/out/london/5-miles.geojson deleted file mode 100644 index dee2dc6e65..0000000000 --- a/packages/turf-point-grid/test/out/london/5-miles.geojson +++ /dev/null @@ -1,920 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.6207275390625, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5051787961183791, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.3896300531742582, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.27408131023013727, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.15853256728601633, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.042983824341895405, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.07256491860222553, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.18811366154634646, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3036624044904674, - 51.74424878080045 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.23784668914442 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.31018984509528 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.38253300104614 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.454876156997 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.527219312947864 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.599562468898725 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.671905624849586 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.4192111474345883, - 51.74424878080045 - ] - } - }, - { - "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 - ] - ] - ] - } - } - ] -} diff --git a/packages/turf-point-grid/test/out/london/centered.geojson b/packages/turf-point-grid/test/out/london/centered.geojson deleted file mode 100644 index f6c8694ca6..0000000000 --- a/packages/turf-point-grid/test/out/london/centered.geojson +++ /dev/null @@ -1,172 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5239449930717035, - 51.321985398356134 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5239449930717035, - 51.50284328823329 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.5239449930717035, - 51.68370117811044 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.2350731357114012, - 51.321985398356134 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.2350731357114012, - 51.50284328823329 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -0.2350731357114012, - 51.68370117811044 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.05379872164890109, - 51.321985398356134 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.05379872164890109, - 51.50284328823329 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.05379872164890109, - 51.68370117811044 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3426705790092034, - 51.321985398356134 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3426705790092034, - 51.50284328823329 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - 0.3426705790092034, - 51.68370117811044 - ] - } - }, - { - "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 - ] - ] - ] - } - } - ] -} diff --git a/packages/turf-point-grid/test/out/london/masked.geojson b/packages/turf-point-grid/test/out/london/masked.geojson deleted file mode 100644 index b437b5c547..0000000000 --- a/packages/turf-point-grid/test/out/london/masked.geojson +++ /dev/null @@ -1,172 +0,0 @@ -{ - "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/fiji/5-miles.geojson b/packages/turf-point-grid/test/out/not-centered.geojson similarity index 70% rename from packages/turf-point-grid/test/out/fiji/5-miles.geojson rename to packages/turf-point-grid/test/out/not-centered.geojson index 8d6d4f474c..39cdc63610 100644 --- a/packages/turf-point-grid/test/out/fiji/5-miles.geojson +++ b/packages/turf-point-grid/test/out/not-centered.geojson @@ -7,8 +7,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -17.16703442146408 + -72.00851440429688, + -13.575913832365224 ] } }, @@ -18,8 +18,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -17.09469126551322 + -72.00851440429688, + -13.566923438592577 ] } }, @@ -29,8 +29,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -17.02234810956236 + -72.00851440429688, + -13.55793304481993 ] } }, @@ -40,8 +40,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -16.950004953611497 + -72.00851440429688, + -13.548942651047282 ] } }, @@ -51,8 +51,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -16.877661797660636 + -72.00851440429688, + -13.539952257274635 ] } }, @@ -62,8 +62,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -16.805318641709775 + -72.00851440429688, + -13.530961863501988 ] } }, @@ -73,8 +73,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -16.732975485758914 + -72.00851440429688, + -13.52197146972934 ] } }, @@ -84,8 +84,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -16.660632329808053 + -72.00851440429688, + -13.512981075956693 ] } }, @@ -95,8 +95,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -16.58828917385719 + -72.00851440429688, + -13.503990682184046 ] } }, @@ -106,8 +106,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.3460693359375, - -16.51594601790633 + -72.00851440429688, + -13.495000288411399 ] } }, @@ -117,8 +117,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -17.16703442146408 + -71.99926559659504, + -13.575913832365224 ] } }, @@ -128,8 +128,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -17.09469126551322 + -71.99926559659504, + -13.566923438592577 ] } }, @@ -139,8 +139,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -17.02234810956236 + -71.99926559659504, + -13.55793304481993 ] } }, @@ -150,8 +150,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -16.950004953611497 + -71.99926559659504, + -13.548942651047282 ] } }, @@ -161,8 +161,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -16.877661797660636 + -71.99926559659504, + -13.539952257274635 ] } }, @@ -172,8 +172,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -16.805318641709775 + -71.99926559659504, + -13.530961863501988 ] } }, @@ -183,8 +183,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -16.732975485758914 + -71.99926559659504, + -13.52197146972934 ] } }, @@ -194,8 +194,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -16.660632329808053 + -71.99926559659504, + -13.512981075956693 ] } }, @@ -205,8 +205,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -16.58828917385719 + -71.99926559659504, + -13.503990682184046 ] } }, @@ -216,8 +216,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.27035283711186, - -16.51594601790633 + -71.99926559659504, + -13.495000288411399 ] } }, @@ -227,8 +227,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -17.16703442146408 + -71.9900167888932, + -13.575913832365224 ] } }, @@ -238,8 +238,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -17.09469126551322 + -71.9900167888932, + -13.566923438592577 ] } }, @@ -249,8 +249,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -17.02234810956236 + -71.9900167888932, + -13.55793304481993 ] } }, @@ -260,8 +260,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -16.950004953611497 + -71.9900167888932, + -13.548942651047282 ] } }, @@ -271,8 +271,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -16.877661797660636 + -71.9900167888932, + -13.539952257274635 ] } }, @@ -282,8 +282,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -16.805318641709775 + -71.9900167888932, + -13.530961863501988 ] } }, @@ -293,8 +293,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -16.732975485758914 + -71.9900167888932, + -13.52197146972934 ] } }, @@ -304,8 +304,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -16.660632329808053 + -71.9900167888932, + -13.512981075956693 ] } }, @@ -315,8 +315,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -16.58828917385719 + -71.9900167888932, + -13.503990682184046 ] } }, @@ -326,8 +326,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.19463633828622, - -16.51594601790633 + -71.9900167888932, + -13.495000288411399 ] } }, @@ -337,8 +337,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -17.16703442146408 + -71.98076798119136, + -13.575913832365224 ] } }, @@ -348,8 +348,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -17.09469126551322 + -71.98076798119136, + -13.566923438592577 ] } }, @@ -359,8 +359,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -17.02234810956236 + -71.98076798119136, + -13.55793304481993 ] } }, @@ -370,8 +370,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -16.950004953611497 + -71.98076798119136, + -13.548942651047282 ] } }, @@ -381,8 +381,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -16.877661797660636 + -71.98076798119136, + -13.539952257274635 ] } }, @@ -392,8 +392,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -16.805318641709775 + -71.98076798119136, + -13.530961863501988 ] } }, @@ -403,8 +403,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -16.732975485758914 + -71.98076798119136, + -13.52197146972934 ] } }, @@ -414,8 +414,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -16.660632329808053 + -71.98076798119136, + -13.512981075956693 ] } }, @@ -425,8 +425,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -16.58828917385719 + -71.98076798119136, + -13.503990682184046 ] } }, @@ -436,8 +436,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.11891983946057, - -16.51594601790633 + -71.98076798119136, + -13.495000288411399 ] } }, @@ -447,8 +447,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -17.16703442146408 + -71.97151917348953, + -13.575913832365224 ] } }, @@ -458,8 +458,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -17.09469126551322 + -71.97151917348953, + -13.566923438592577 ] } }, @@ -469,8 +469,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -17.02234810956236 + -71.97151917348953, + -13.55793304481993 ] } }, @@ -480,8 +480,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -16.950004953611497 + -71.97151917348953, + -13.548942651047282 ] } }, @@ -491,8 +491,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -16.877661797660636 + -71.97151917348953, + -13.539952257274635 ] } }, @@ -502,8 +502,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -16.805318641709775 + -71.97151917348953, + -13.530961863501988 ] } }, @@ -513,8 +513,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -16.732975485758914 + -71.97151917348953, + -13.52197146972934 ] } }, @@ -524,8 +524,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -16.660632329808053 + -71.97151917348953, + -13.512981075956693 ] } }, @@ -535,8 +535,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -16.58828917385719 + -71.97151917348953, + -13.503990682184046 ] } }, @@ -546,8 +546,8 @@ "geometry": { "type": "Point", "coordinates": [ - -180.04320334063493, - -16.51594601790633 + -71.97151917348953, + -13.495000288411399 ] } }, @@ -557,8 +557,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -17.16703442146408 + -71.96227036578769, + -13.575913832365224 ] } }, @@ -568,8 +568,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -17.09469126551322 + -71.96227036578769, + -13.566923438592577 ] } }, @@ -579,8 +579,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -17.02234810956236 + -71.96227036578769, + -13.55793304481993 ] } }, @@ -590,8 +590,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -16.950004953611497 + -71.96227036578769, + -13.548942651047282 ] } }, @@ -601,8 +601,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -16.877661797660636 + -71.96227036578769, + -13.539952257274635 ] } }, @@ -612,8 +612,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -16.805318641709775 + -71.96227036578769, + -13.530961863501988 ] } }, @@ -623,8 +623,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -16.732975485758914 + -71.96227036578769, + -13.52197146972934 ] } }, @@ -634,8 +634,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -16.660632329808053 + -71.96227036578769, + -13.512981075956693 ] } }, @@ -645,8 +645,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -16.58828917385719 + -71.96227036578769, + -13.503990682184046 ] } }, @@ -656,8 +656,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.9674868418093, - -16.51594601790633 + -71.96227036578769, + -13.495000288411399 ] } }, @@ -667,8 +667,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -17.16703442146408 + -71.95302155808585, + -13.575913832365224 ] } }, @@ -678,8 +678,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -17.09469126551322 + -71.95302155808585, + -13.566923438592577 ] } }, @@ -689,8 +689,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -17.02234810956236 + -71.95302155808585, + -13.55793304481993 ] } }, @@ -700,8 +700,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -16.950004953611497 + -71.95302155808585, + -13.548942651047282 ] } }, @@ -711,8 +711,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -16.877661797660636 + -71.95302155808585, + -13.539952257274635 ] } }, @@ -722,8 +722,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -16.805318641709775 + -71.95302155808585, + -13.530961863501988 ] } }, @@ -733,8 +733,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -16.732975485758914 + -71.95302155808585, + -13.52197146972934 ] } }, @@ -744,8 +744,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -16.660632329808053 + -71.95302155808585, + -13.512981075956693 ] } }, @@ -755,8 +755,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -16.58828917385719 + -71.95302155808585, + -13.503990682184046 ] } }, @@ -766,8 +766,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.89177034298365, - -16.51594601790633 + -71.95302155808585, + -13.495000288411399 ] } }, @@ -777,8 +777,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -17.16703442146408 + -71.94377275038401, + -13.575913832365224 ] } }, @@ -788,8 +788,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -17.09469126551322 + -71.94377275038401, + -13.566923438592577 ] } }, @@ -799,8 +799,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -17.02234810956236 + -71.94377275038401, + -13.55793304481993 ] } }, @@ -810,8 +810,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -16.950004953611497 + -71.94377275038401, + -13.548942651047282 ] } }, @@ -821,8 +821,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -16.877661797660636 + -71.94377275038401, + -13.539952257274635 ] } }, @@ -832,8 +832,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -16.805318641709775 + -71.94377275038401, + -13.530961863501988 ] } }, @@ -843,8 +843,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -16.732975485758914 + -71.94377275038401, + -13.52197146972934 ] } }, @@ -854,8 +854,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -16.660632329808053 + -71.94377275038401, + -13.512981075956693 ] } }, @@ -865,8 +865,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -16.58828917385719 + -71.94377275038401, + -13.503990682184046 ] } }, @@ -876,8 +876,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.816053844158, - -16.51594601790633 + -71.94377275038401, + -13.495000288411399 ] } }, @@ -887,8 +887,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -17.16703442146408 + -71.93452394268218, + -13.575913832365224 ] } }, @@ -898,8 +898,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -17.09469126551322 + -71.93452394268218, + -13.566923438592577 ] } }, @@ -909,8 +909,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -17.02234810956236 + -71.93452394268218, + -13.55793304481993 ] } }, @@ -920,8 +920,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -16.950004953611497 + -71.93452394268218, + -13.548942651047282 ] } }, @@ -931,8 +931,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -16.877661797660636 + -71.93452394268218, + -13.539952257274635 ] } }, @@ -942,8 +942,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -16.805318641709775 + -71.93452394268218, + -13.530961863501988 ] } }, @@ -953,8 +953,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -16.732975485758914 + -71.93452394268218, + -13.52197146972934 ] } }, @@ -964,8 +964,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -16.660632329808053 + -71.93452394268218, + -13.512981075956693 ] } }, @@ -975,8 +975,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -16.58828917385719 + -71.93452394268218, + -13.503990682184046 ] } }, @@ -986,8 +986,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.74033734533236, - -16.51594601790633 + -71.93452394268218, + -13.495000288411399 ] } }, @@ -997,8 +997,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -17.16703442146408 + -71.92527513498034, + -13.575913832365224 ] } }, @@ -1008,8 +1008,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -17.09469126551322 + -71.92527513498034, + -13.566923438592577 ] } }, @@ -1019,8 +1019,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -17.02234810956236 + -71.92527513498034, + -13.55793304481993 ] } }, @@ -1030,8 +1030,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -16.950004953611497 + -71.92527513498034, + -13.548942651047282 ] } }, @@ -1041,8 +1041,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -16.877661797660636 + -71.92527513498034, + -13.539952257274635 ] } }, @@ -1052,8 +1052,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -16.805318641709775 + -71.92527513498034, + -13.530961863501988 ] } }, @@ -1063,8 +1063,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -16.732975485758914 + -71.92527513498034, + -13.52197146972934 ] } }, @@ -1074,8 +1074,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -16.660632329808053 + -71.92527513498034, + -13.512981075956693 ] } }, @@ -1085,8 +1085,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -16.58828917385719 + -71.92527513498034, + -13.503990682184046 ] } }, @@ -1096,8 +1096,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.66462084650672, - -16.51594601790633 + -71.92527513498034, + -13.495000288411399 ] } }, @@ -1107,8 +1107,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -17.16703442146408 + -71.9160263272785, + -13.575913832365224 ] } }, @@ -1118,8 +1118,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -17.09469126551322 + -71.9160263272785, + -13.566923438592577 ] } }, @@ -1129,8 +1129,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -17.02234810956236 + -71.9160263272785, + -13.55793304481993 ] } }, @@ -1140,8 +1140,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -16.950004953611497 + -71.9160263272785, + -13.548942651047282 ] } }, @@ -1151,8 +1151,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -16.877661797660636 + -71.9160263272785, + -13.539952257274635 ] } }, @@ -1162,8 +1162,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -16.805318641709775 + -71.9160263272785, + -13.530961863501988 ] } }, @@ -1173,8 +1173,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -16.732975485758914 + -71.9160263272785, + -13.52197146972934 ] } }, @@ -1184,8 +1184,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -16.660632329808053 + -71.9160263272785, + -13.512981075956693 ] } }, @@ -1195,8 +1195,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -16.58828917385719 + -71.9160263272785, + -13.503990682184046 ] } }, @@ -1206,8 +1206,8 @@ "geometry": { "type": "Point", "coordinates": [ - -179.58890434768108, - -16.51594601790633 + -71.9160263272785, + -13.495000288411399 ] } }, @@ -1223,28 +1223,28 @@ "coordinates": [ [ [ - -180.3460693359375, - -17.16703442146408 + -72.00851440429688, + -13.575913832365224 ], [ - -179.5770263671875, - -17.16703442146408 + -71.90826416015625, + -13.575913832365224 ], [ - -179.5770263671875, - -16.48349760264812 + -71.90826416015625, + -13.486791161568776 ], [ - -180.3460693359375, - -16.48349760264812 + -72.00851440429688, + -13.486791161568776 ], [ - -180.3460693359375, - -17.16703442146408 + -72.00851440429688, + -13.575913832365224 ] ] ] } } ] -} +} \ 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-mask.geojson similarity index 79% rename from packages/turf-point-grid/test/out/piedemont/20-miles.geojson rename to packages/turf-point-grid/test/out/piedemont-mask.geojson index b058f9a7a6..48131dea3e 100644 --- a/packages/turf-point-grid/test/out/piedemont/20-miles.geojson +++ b/packages/turf-point-grid/test/out/piedemont-mask.geojson @@ -7,8 +7,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 44.09350315285844 + 6.918630554712213, + 44.46411982498005 ] } }, @@ -18,8 +18,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 44.38287577666188 + 6.918630554712213, + 45.00669349461151 ] } }, @@ -29,8 +29,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 44.67224840046533 + 7.170460190204084, + 44.2832619351029 ] } }, @@ -40,8 +40,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 44.96162102426877 + 7.170460190204084, + 44.46411982498005 ] } }, @@ -51,8 +51,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 45.25099364807222 + 7.170460190204084, + 44.644977714857205 ] } }, @@ -62,8 +62,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 45.54036627187566 + 7.170460190204084, + 44.82583560473436 ] } }, @@ -73,8 +73,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 45.82973889567911 + 7.170460190204084, + 45.00669349461151 ] } }, @@ -84,8 +84,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 46.11911151948255 + 7.170460190204084, + 45.187551384488664 ] } }, @@ -95,8 +95,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.6302490234375, - 46.408484143285996 + 7.170460190204084, + 45.36840927436582 ] } }, @@ -106,8 +106,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 44.09350315285844 + 7.422289825695954, + 44.2832619351029 ] } }, @@ -117,8 +117,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 44.38287577666188 + 7.422289825695954, + 44.46411982498005 ] } }, @@ -128,8 +128,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 44.67224840046533 + 7.422289825695954, + 44.644977714857205 ] } }, @@ -139,8 +139,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 44.96162102426877 + 7.422289825695954, + 44.82583560473436 ] } }, @@ -150,8 +150,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 45.25099364807222 + 7.422289825695954, + 45.00669349461151 ] } }, @@ -161,8 +161,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 45.54036627187566 + 7.422289825695954, + 45.187551384488664 ] } }, @@ -172,8 +172,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 45.82973889567911 + 7.422289825695954, + 45.36840927436582 ] } }, @@ -183,8 +183,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 46.11911151948255 + 7.422289825695954, + 45.54926716424297 ] } }, @@ -194,8 +194,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.0331764402244925, - 46.408484143285996 + 7.674119461187825, + 44.2832619351029 ] } }, @@ -205,8 +205,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 44.09350315285844 + 7.674119461187825, + 44.46411982498005 ] } }, @@ -216,8 +216,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 44.38287577666188 + 7.674119461187825, + 44.644977714857205 ] } }, @@ -227,8 +227,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 44.67224840046533 + 7.674119461187825, + 44.82583560473436 ] } }, @@ -238,8 +238,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 44.96162102426877 + 7.674119461187825, + 45.00669349461151 ] } }, @@ -249,8 +249,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 45.25099364807222 + 7.674119461187825, + 45.187551384488664 ] } }, @@ -260,8 +260,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 45.54036627187566 + 7.674119461187825, + 45.36840927436582 ] } }, @@ -271,8 +271,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 45.82973889567911 + 7.674119461187825, + 45.54926716424297 ] } }, @@ -282,8 +282,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 46.11911151948255 + 7.9259490966796955, + 44.2832619351029 ] } }, @@ -293,8 +293,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.436103857011485, - 46.408484143285996 + 7.9259490966796955, + 44.46411982498005 ] } }, @@ -304,8 +304,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 44.09350315285844 + 7.9259490966796955, + 44.644977714857205 ] } }, @@ -315,8 +315,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 44.38287577666188 + 7.9259490966796955, + 44.82583560473436 ] } }, @@ -326,8 +326,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 44.67224840046533 + 7.9259490966796955, + 45.00669349461151 ] } }, @@ -337,8 +337,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 44.96162102426877 + 7.9259490966796955, + 45.187551384488664 ] } }, @@ -348,8 +348,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 45.25099364807222 + 7.9259490966796955, + 45.36840927436582 ] } }, @@ -359,8 +359,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 45.54036627187566 + 7.9259490966796955, + 45.54926716424297 ] } }, @@ -370,8 +370,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 45.82973889567911 + 7.9259490966796955, + 45.73012505412012 ] } }, @@ -381,8 +381,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 46.11911151948255 + 7.9259490966796955, + 45.910982943997276 ] } }, @@ -392,8 +392,8 @@ "geometry": { "type": "Point", "coordinates": [ - 7.8390312737984775, - 46.408484143285996 + 8.177778732171566, + 44.46411982498005 ] } }, @@ -403,8 +403,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 44.09350315285844 + 8.177778732171566, + 44.644977714857205 ] } }, @@ -414,8 +414,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 44.38287577666188 + 8.177778732171566, + 44.82583560473436 ] } }, @@ -425,8 +425,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 44.67224840046533 + 8.177778732171566, + 45.00669349461151 ] } }, @@ -436,8 +436,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 44.96162102426877 + 8.177778732171566, + 45.187551384488664 ] } }, @@ -447,8 +447,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 45.25099364807222 + 8.177778732171566, + 45.36840927436582 ] } }, @@ -458,8 +458,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 45.54036627187566 + 8.177778732171566, + 45.54926716424297 ] } }, @@ -469,8 +469,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 45.82973889567911 + 8.177778732171566, + 45.73012505412012 ] } }, @@ -480,8 +480,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 46.11911151948255 + 8.177778732171566, + 45.910982943997276 ] } }, @@ -491,8 +491,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.24195869058547, - 46.408484143285996 + 8.177778732171566, + 46.09184083387443 ] } }, @@ -502,8 +502,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 44.09350315285844 + 8.177778732171566, + 46.27269872375158 ] } }, @@ -513,8 +513,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 44.38287577666188 + 8.429608367663436, + 44.644977714857205 ] } }, @@ -524,8 +524,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 44.67224840046533 + 8.429608367663436, + 44.82583560473436 ] } }, @@ -535,8 +535,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 44.96162102426877 + 8.429608367663436, + 45.00669349461151 ] } }, @@ -546,8 +546,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 45.25099364807222 + 8.429608367663436, + 45.187551384488664 ] } }, @@ -557,8 +557,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 45.54036627187566 + 8.429608367663436, + 45.36840927436582 ] } }, @@ -568,8 +568,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 45.82973889567911 + 8.429608367663436, + 45.54926716424297 ] } }, @@ -579,8 +579,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 46.11911151948255 + 8.429608367663436, + 45.73012505412012 ] } }, @@ -590,8 +590,8 @@ "geometry": { "type": "Point", "coordinates": [ - 8.644886107372463, - 46.408484143285996 + 8.429608367663436, + 45.910982943997276 ] } }, @@ -601,8 +601,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 44.09350315285844 + 8.429608367663436, + 46.09184083387443 ] } }, @@ -612,8 +612,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 44.38287577666188 + 8.429608367663436, + 46.27269872375158 ] } }, @@ -623,8 +623,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 44.67224840046533 + 8.429608367663436, + 46.453556613628734 ] } }, @@ -634,8 +634,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 44.96162102426877 + 8.681438003155305, + 44.644977714857205 ] } }, @@ -645,8 +645,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 45.25099364807222 + 8.681438003155305, + 44.82583560473436 ] } }, @@ -656,8 +656,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 45.54036627187566 + 8.681438003155305, + 45.00669349461151 ] } }, @@ -667,8 +667,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 45.82973889567911 + 8.681438003155305, + 45.36840927436582 ] } }, @@ -678,8 +678,8 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 46.11911151948255 + 8.681438003155305, + 45.54926716424297 ] } }, @@ -689,8 +689,41 @@ "geometry": { "type": "Point", "coordinates": [ - 9.047813524159455, - 46.408484143285996 + 8.681438003155305, + 46.09184083387443 + ] + } + }, + { + "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": [ + 9.185097274139045, + 44.644977714857205 ] } }, diff --git a/packages/turf-point-grid/test/out/piedemont/5-miles.geojson b/packages/turf-point-grid/test/out/piedemont/5-miles.geojson deleted file mode 100644 index 11f45e1894..0000000000 --- a/packages/turf-point-grid/test/out/piedemont/5-miles.geojson +++ /dev/null @@ -1,9778 +0,0 @@ -{ - "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 deleted file mode 100644 index a7c016c63a..0000000000 --- a/packages/turf-point-grid/test/out/piedemont/centered.geojson +++ /dev/null @@ -1,2034 +0,0 @@ -{ - "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 deleted file mode 100644 index 519417d0b3..0000000000 --- a/packages/turf-point-grid/test/out/piedemont/masked.geojson +++ /dev/null @@ -1,846 +0,0 @@ -{ - "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/centered.geojson b/packages/turf-point-grid/test/out/resolute.geojson similarity index 99% rename from packages/turf-point-grid/test/out/resolute/centered.geojson rename to packages/turf-point-grid/test/out/resolute.geojson index cabb07d408..02e1c81630 100644 --- a/packages/turf-point-grid/test/out/resolute/centered.geojson +++ b/packages/turf-point-grid/test/out/resolute.geojson @@ -136,4 +136,4 @@ } } ] -} +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/resolute/20-miles.geojson b/packages/turf-point-grid/test/out/resolute/20-miles.geojson deleted file mode 100644 index 94f161e6de..0000000000 --- a/packages/turf-point-grid/test/out/resolute/20-miles.geojson +++ /dev/null @@ -1,84 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246521, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246521, - 74.75786324573721 - ] - } - }, - { - "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 - ] - ] - ] - } - } - ] -} diff --git a/packages/turf-point-grid/test/out/resolute/5-miles.geojson b/packages/turf-point-grid/test/out/resolute/5-miles.geojson deleted file mode 100644 index 779688dfac..0000000000 --- a/packages/turf-point-grid/test/out/resolute/5-miles.geojson +++ /dev/null @@ -1,502 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.54083377788463 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.61317693383549 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.68552008978635 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.877685546875, - 74.83020640168807 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.60750395327256, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.60750395327256, - 74.54083377788463 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.60750395327256, - 74.61317693383549 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.60750395327256, - 74.68552008978635 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.60750395327256, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.60750395327256, - 74.83020640168807 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.33732235967011, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.33732235967011, - 74.54083377788463 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.33732235967011, - 74.61317693383549 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.33732235967011, - 74.68552008978635 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.33732235967011, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.33732235967011, - 74.83020640168807 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.06714076606767, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.06714076606767, - 74.54083377788463 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.06714076606767, - 74.61317693383549 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.06714076606767, - 74.68552008978635 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.06714076606767, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -95.06714076606767, - 74.83020640168807 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246522, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246522, - 74.54083377788463 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246522, - 74.61317693383549 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246522, - 74.68552008978635 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246522, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.79695917246522, - 74.83020640168807 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.52677757886278, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.52677757886278, - 74.54083377788463 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.52677757886278, - 74.61317693383549 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.52677757886278, - 74.68552008978635 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.52677757886278, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.52677757886278, - 74.83020640168807 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.25659598526033, - 74.46849062193377 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.25659598526033, - 74.54083377788463 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.25659598526033, - 74.61317693383549 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.25659598526033, - 74.68552008978635 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.25659598526033, - 74.75786324573721 - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Point", - "coordinates": [ - -94.25659598526033, - 74.83020640168807 - ] - } - }, - { - "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 - ] - ] - ] - } - } - ] -} diff --git a/packages/turf-point-grid/test/out/resolute/masked.geojson b/packages/turf-point-grid/test/out/resolute/masked.geojson deleted file mode 100644 index 7462d81d82..0000000000 --- a/packages/turf-point-grid/test/out/resolute/masked.geojson +++ /dev/null @@ -1,106 +0,0 @@ -{ - "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/yarn.lock b/packages/turf-point-grid/yarn.lock index d337de0004..ff5c1bd5b6 100644 --- a/packages/turf-point-grid/yarn.lock +++ b/packages/turf-point-grid/yarn.lock @@ -2,36 +2,36 @@ # 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" +"@turf/bbox@^4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-4.5.2.tgz#1a6c6e7d0ea03b26cbc14d46e6df408ae3ddf87a" dependencies: - "@turf/meta" "^4.4.0" + "@turf/meta" "^4.5.2" -"@turf/distance@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@turf/distance/-/distance-4.4.0.tgz#6101f5951caf4e7ee5c006540900574af2f106bd" +"@turf/distance@^4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@turf/distance/-/distance-4.5.2.tgz#afc352c44a86e6e1ee69899321992ab941901a8a" dependencies: - "@turf/helpers" "^4.4.0" - "@turf/invariant" "^4.4.0" + "@turf/helpers" "^4.5.2" + "@turf/invariant" "^4.5.2" -"@turf/helpers@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-4.4.0.tgz#c83112f7fbe6ed183c7c0c2f776481b94d1cbd01" +"@turf/helpers@^4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-4.5.2.tgz#6fc6772a7b301f277b49732925c354c7fb85d1df" -"@turf/inside@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@turf/inside/-/inside-4.4.0.tgz#5a78de2c0ed9a68b494508f53ae2f4b73dd770ef" +"@turf/inside@^4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@turf/inside/-/inside-4.5.2.tgz#9823c1b4c2efe5369e23cbf2c0fa2661bbb06e25" dependencies: - "@turf/invariant" "^4.4.0" + "@turf/invariant" "^4.5.2" -"@turf/invariant@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@turf/invariant/-/invariant-4.4.0.tgz#aac0afb840ae40908f9c80393f416222dcf79c32" +"@turf/invariant@^4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@turf/invariant/-/invariant-4.5.2.tgz#0642ee1e6bca531be3f6f9292d590155f2fb9604" -"@turf/meta@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-4.4.0.tgz#4fa25d4cc0525bd4cdbaf4ff68a6f8ae81f1975f" +"@turf/meta@^4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-4.5.2.tgz#8450fc442d2a59494251a5a52ae520017e2dcf0d" balanced-match@^0.4.1: version "0.4.2" From cb8dc639a167d1c2be9bdcb88b9a2eb2fcac2fea Mon Sep 17 00:00:00 2001 From: Denis Date: Wed, 12 Jul 2017 11:58:30 -0400 Subject: [PATCH 2/2] Update Typescript definition --- packages/turf-point-grid/index.d.ts | 20 +++++++++++++++++--- packages/turf-point-grid/types.ts | 14 ++++++++++---- 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/packages/turf-point-grid/index.d.ts b/packages/turf-point-grid/index.d.ts index d2ddc9e3e4..43aba4a280 100644 --- a/packages/turf-point-grid/index.d.ts +++ b/packages/turf-point-grid/index.d.ts @@ -1,8 +1,22 @@ -import {BBox, Points, Units, Feature, Features} from '@turf/helpers'; +/// + +import * as helpers from '@turf/helpers'; /** * http://turfjs.org/docs/#pointgrid */ -declare function pointGrid(bbox: BBox | Feature | Array, cellSide: number, units?: Units, centered?: boolean, bboxIsMask?: boolean): Points; -declare namespace pointGrid { } +declare function pointGrid( + bbox: pointGrid.BBox | pointGrid.Feature | pointGrid.FeatureCollection, + cellSide: number, + units?: pointGrid.Units, + centered?: boolean, + bboxIsMask?: boolean): pointGrid.Points; + +declare namespace pointGrid { + type Feature = GeoJSON.Feature; + type FeatureCollection = GeoJSON.FeatureCollection; + type Units = helpers.Units; + type Points = GeoJSON.FeatureCollection; + type BBox = helpers.BBox; +} export = pointGrid; diff --git a/packages/turf-point-grid/types.ts b/packages/turf-point-grid/types.ts index 599d93ed38..3c23c6acec 100644 --- a/packages/turf-point-grid/types.ts +++ b/packages/turf-point-grid/types.ts @@ -1,5 +1,11 @@ -import {BBox, Points} from '@turf/helpers' -import * as pointGrid from './' +import * as pointGrid from './'; +import {BBox} from './'; -const bbox: BBox = [-95, 30, -85, 40] -const grid: Points = pointGrid(bbox, 50, 'miles', true, true) +const units = 'miles'; +const cellSide = 50; +const bbox: BBox = [-95, 30, -85, 40]; + +pointGrid(bbox, cellSide); +pointGrid(bbox, cellSide, units); +pointGrid(bbox, cellSide, units, true); +pointGrid(bbox, cellSide, units, true, true);